NAME set_delete - remove given element from a set SYNOPSIS subroutine set_delete (element, set) integer element pointer set DESCRIPTION 'Set_delete' is used to remove a given element from a set. The first argument is the element (an integer between one and the maximum set size, inclusive), and the second is the set from which it is to be removed. All set manipulation routines make use of dynamic storage, which must be initialized before use. See 'dsinit' for further information. Note that all set manipulation routines have long names. To avoid unique name conflicts with other routines, any Ratfor program using the set routines should include the following statement: include "=src=/lcl/lib/swtmlb.u/swtmlb_link.r.i" IMPLEMENTATION The element selected is compared to the size field of the set; if invalid, 'set_delete' prints an error message and terminates the program. Otherwise, the position of the element in the bit vector is calculated, and the bit is reset by straightforward logical operations. CALLS error SEE ALSO other set operations ('set_?*') (4)