is_use_namesReturns if variable or constraint names are used. unsigned char is_use_names(lprec *lp, unsigned char isrow); Return Value is_use_names returns a boolean value indicating if variable or constraint names
are used. Parameters lp Pointer to previously created lp model. See return value of make_lp, copy_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI isrow Set to FALSE (0) if column information is needed and TRUE (1) if row information is needed. Remarks When a model is read from file or created via the API, variables and constraints can be named.
These names are used to report information or to save the model in a given format.
However, sometimes it is required to ignore these names and to use the internal names of lp_solve.
This is for example the case when the names do not comply to the syntax rules of the format that
will be used to write the model to. Example
See Also make_lp, copy_lp, read_lp, read_LP, read_mps, read_freemps, read_MPS, read_freeMPS, read_XLI, set_use_names, set_col_name, get_col_name, set_row_name, get_row_name |