Initializing help system before first use

XPRBprintobj

XPRBprintobj


Purpose
Print out the current objective function of a problem.
Synopsis
int XPRBprintobj(XPRBprob prob);
Argument
prob 
Reference to a problem.
Return value
0 if function executed successfully, 1 otherwise.
Example
The following prints out the objective function defined for problem expl2.
XPRBprob expl2;
expl2 = XPRBnewprob("example2");
 ...
XPRBprintobj(expl2);
Further information
This function prints out the objective function currently defined for the given problem. This function is not available in the student version.
Related topics