org.ojalgo.optimisation
Class OptimisationSolver.Options

java.lang.Object
  extended by org.ojalgo.optimisation.OptimisationSolver.Options
All Implemented Interfaces:
Cloneable
Enclosing interface:
OptimisationSolver<M extends OptimisationModel,R extends OptimisationResult>

public static final class OptimisationSolver.Options
extends Object
implements Cloneable


Field Summary
 int iterationsLimit
          The maximmum number of iterations allowed for the solve() command.
 NumberContext printContext
          For display only!
 NumberContext problemContext
          Problem parameters; constraints and objective function
 NumberContext slackContext
          Used when determining if a constraint is violated or not
 NumberContext solutionContext
          Solution variables; primary and dual (langrange multipliers)
 long timeLimit
          The maximmum number of millis allowed for the solve() command.
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

iterationsLimit

public int iterationsLimit
The maximmum number of iterations allowed for the solve() command.


printContext

public NumberContext printContext
For display only!


problemContext

public NumberContext problemContext
Problem parameters; constraints and objective function


slackContext

public NumberContext slackContext
Used when determining if a constraint is violated or not


solutionContext

public NumberContext solutionContext
Solution variables; primary and dual (langrange multipliers)


timeLimit

public long timeLimit
The maximmum number of millis allowed for the solve() command.