Packages

final class oJSolver extends MPSolver

oj solver.

Linear Supertypes
MPSolver, StrictLogging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. oJSolver
  2. MPSolver
  3. StrictLogging
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new oJSolver()

Type Members

  1. type Solver = ExpressionsBasedModel
    Definition Classes
    oJSolver → MPSolver

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. var _objectiveConstant: Double
    Attributes
    protected
  5. val _objectiveValue: Option[Double]
    Attributes
    protected
    Definition Classes
    MPSolver
  6. val _solution: Array[Double]
    Attributes
    protected
    Definition Classes
    MPSolver
  7. val _solutionStatus: SolutionStatus
    Attributes
    protected
    Definition Classes
    MPSolver
  8. def addAllConstraints(constraints: ArrayBuffer[MPConstraint]): Unit
    Definition Classes
    MPSolver
  9. def addConstraint(mpConstraint: MPConstraint): Unit

    Add a mathematical programming constraint to the solver.

    Add a mathematical programming constraint to the solver.

    mpConstraint

    the mathematical programming constraint

    Definition Classes
    oJSolver → MPSolver
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def buildModel(numberOfVars: Int): Unit

    Problem builder, should configure the solver and append mathematical model variables and constraints.

    Problem builder, should configure the solver and append mathematical model variables and constraints.

    numberOfVars

    number of variables in the model

    Definition Classes
    oJSolver → MPSolver
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def getVarValue(colId: Int): Double

    Get value of the variable in the specified position.

    Get value of the variable in the specified position. Solution should exist in order for a value to exist.

    colId

    position of the variable

    returns

    the value of the variable in the solution

    Definition Classes
    oJSolver → MPSolver
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. val logger: Logger
    Attributes
    protected
    Definition Classes
    StrictLogging
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. val numberOfCons: Int
    Attributes
    protected
    Definition Classes
    MPSolver
  24. def numberOfConstraints: Int
    Definition Classes
    MPSolver
  25. def numberOfVariables: Int
    Definition Classes
    MPSolver
  26. val numberOfVars: Int
    Attributes
    protected
    Definition Classes
    MPSolver
  27. def objectiveValue: Option[Double]
    Definition Classes
    MPSolver
  28. def release(): Unit

    Release the memory of this solver

    Release the memory of this solver

    Definition Classes
    oJSolver → MPSolver
  29. def setBinary(colId: Int): Unit

    Set the column / variable as an binary integer variable

    Set the column / variable as an binary integer variable

    colId

    position of the variable

    Definition Classes
    oJSolver → MPSolver
  30. def setBounds(colId: Int, lower: Double, upper: Double): Unit

    Set bounds of variable in the specified position.

    Set bounds of variable in the specified position.

    colId

    position of the variable

    lower

    domain lower bound

    upper

    domain upper bound

    Definition Classes
    oJSolver → MPSolver
  31. def setDoubleUnbounded(colId: Int): Unit
    Definition Classes
    MPSolver
  32. def setFloat(colId: Int): Unit

    Set the column/variable as a float variable

    Set the column/variable as a float variable

    colId

    position of the variable

    Definition Classes
    oJSolver → MPSolver
  33. def setInteger(colId: Int): Unit

    Set the column/variable as an integer variable

    Set the column/variable as an integer variable

    colId

    position of the variable

    Definition Classes
    oJSolver → MPSolver
  34. def setObjective(objective: Expression, minimize: Boolean): Unit

    Add objective expression to be optimized by the solver.

    Add objective expression to be optimized by the solver.

    objective

    the expression to be optimized

    minimize

    flag for minimization instead of maximization

    Definition Classes
    oJSolver → MPSolver
  35. def setTimeout(limit: Int): Unit

    Set a time limit for solver optimization.

    Set a time limit for solver optimization. After the limit is reached the solver stops running.

    limit

    the time limit

    Definition Classes
    oJSolver → MPSolver
  36. def setUnboundLowerBound(colId: Int): Unit

    Set upper bound to unbounded (infinite)

    Set upper bound to unbounded (infinite)

    colId

    position of the variable

    Definition Classes
    oJSolver → MPSolver
  37. def setUnboundUpperBound(colId: Int): Unit

    Set lower bound to unbounded (infinite)

    Set lower bound to unbounded (infinite)

    colId

    position of the variable

    Definition Classes
    oJSolver → MPSolver
  38. def solution: Array[Double]
    Definition Classes
    MPSolver
  39. def solutionStatus: SolutionStatus
    Definition Classes
    MPSolver
  40. def solve(preSolve: PreSolve = PreSolve.DISABLED): SolutionStatus

    Solve the problem.

    Solve the problem.

    returns

    status code indicating the nature of the solution

    Definition Classes
    oJSolver → MPSolver
  41. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  42. def toString(): String
    Definition Classes
    AnyRef → Any
  43. var underlyingSolver: Solver
    Attributes
    protected
    Definition Classes
    oJSolver → MPSolver
  44. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  46. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from MPSolver

Inherited from StrictLogging

Inherited from AnyRef

Inherited from Any

Ungrouped