True if the option has been changed. (Boolean Property - ReadOnly)
The default value for the solver option. (Variant Property - Read Only)
The maximum value for the solver option. (Variant Property - Read Only)
The minimum value for the solver option. (Variant Property - Read Only)
The name of the solver option. (String Property - Read Only)
The type of the option. (Enumerated Property - Read Only)
The current value of the solver option. (Variant Property - Read/Write)
CSharp Example:
OptiMax MPL;
Solver cpxSolver;
MPL = new OptiMax();
cpxSolver = MPL.Solvers.Add("CPLEX");
cpxSolver.Options["IterationLimit"].Value = 1000
foreach(SolverOption solvopt in cpxSolver.Options)
Console.WriteLine("CPXOPT:" + solvopt.Name + ":" +
" val=" + solvopt.Value +
" def=" + solvopt.DefaultValue +
" max=" + solvopt.MaxValue +
" min=" + solvopt.MinValue);
Sets the solver option to its default value, returns True if value changed. (Method)