Purpose
Get the name of an
index set.
Synopsis
const char *XPRBgetidxsetname(XPRBidxset idx);
Argument
Return value
Name of the index set if function executed successfully, NULL otherwise.
Example
The following defines an index set, iset, with space for 100 entries and then retrieves its name.
XPRBprob prob;
XPRBidxset iset;
const char *name;
...
iset = XPRBnewidxset(prob, "Set", 100);
name = XPRBgetidxsetname(iset);
Further information
This function returns the name of an index set.
Related topics
If you have any comments or suggestions about these pages,
please send mail to docs@dashoptimization.com.