org.ojalgo.optimisation
Class OptimisationSolver.Options

java.lang.Object
  extended by org.ojalgo.optimisation.OptimisationSolver.Options
Enclosing interface:
OptimisationSolver

public static final class OptimisationSolver.Options
extends Object


Field Summary
static int DEFAULT_ITERATIONS_LIMIT
           
static NumberContext DEFAULT_PRINT_CONTEXT
           
static NumberContext DEFAULT_PROBLEM_CONTEXT
           
static NumberContext DEFAULT_SOLUTION_CONTEXT
           
static long DEFAULT_TIME_LIMIT
           
 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 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

DEFAULT_ITERATIONS_LIMIT

public static final int DEFAULT_ITERATIONS_LIMIT
See Also:
Constant Field Values

DEFAULT_PRINT_CONTEXT

public static final NumberContext DEFAULT_PRINT_CONTEXT

DEFAULT_PROBLEM_CONTEXT

public static final NumberContext DEFAULT_PROBLEM_CONTEXT

DEFAULT_SOLUTION_CONTEXT

public static final NumberContext DEFAULT_SOLUTION_CONTEXT

DEFAULT_TIME_LIMIT

public static final long DEFAULT_TIME_LIMIT

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


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.