is_SOS_varReturns if the variable is SOS (Special Ordered Set) or not. int is_SOS_var(lprec *lp, int column); Return Value is_SOS_var returns TRUE (1) if the variable is a SOS var, FALSE (0) if
not. Parameters lp Pointer to previously created lp model. See return value of make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS column The column number of the variable that must be checked. It must be between 1 and the number of columns in the lp. Remarks The is_SOS_var function returns if a variable is a SOS variable or not. Default a variable is not SOS. A variable becomes a SOS variable via add_SOS Example
See Also make_lp, copy_lp, read_lp, read_lp_file, read_LP, read_mps, read_MPS, add_SOS |