set_equal (4) --- return TRUE if two sets contain the same members 07/20/84 | _C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n logical function set_equal (set1, set2) pointer set1, set2 | Library: vswtmath (Subsystem mathematical library) _F_u_n_c_t_i_o_n 'Set_equal' determines if two sets contain the same members. The sets need not be of equal length. 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=/lib/math/swtmlb_link.r.i" _I_m_p_l_e_m_e_n_t_a_t_i_o_n 'Set_equal' makes two calls on 'set_subset'. The function return is true if 'set1' is a subset of 'set2' and 'set2' is a subset of 'set1', false otherwise. _C_a_l_l_s set_subset _S_e_e _A_l_s_o other set routines ('set_?*') (4) set_equal (4) - 1 - set_equal (4)