Initializing help system before first use

fixGlobals Method (Boolean)

Fix all the global entities. Fixes the global entities to the values of the last found MIP solution. This is useful for finding the reduced costs for the continuous variables after the global variables have been fixed to their optimal values.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public void fixGlobals(
	bool ifRound
)

Parameters

ifRound
Type:  SystemBoolean
if all global entities should be rounded to the nearest discrete value in the solution before being fixed.
Examples
XPRBprob expl2; expl2 = new XPRBprob("example2"); expl2.mipOptimize(); expl2.fixGlobals(); expl2.lpOptimize();
See Also