[ library(eplex) | Reference Manual | Alphabetic Index ]

eplex_var_get_bounds(+Var, -Lo, -Hi)

EplexInstance:eplex_var_get_bounds(+Var, -Lo, -Hi)

Returns the bounds stored in the solver state for Var in eplex instance EplexInstance.
Var
A problem variable for EplexInstance
Lo
Lower bound for Var
Hi
Upper bound for Var

Description

Returns the numeric bounds for Var stored in the solver state associated with the eplex instance EplexInstance. The bounds are returned as floats. Var must be an existing problem variable for EplexInstance.

Resatisfiable

no

Exceptions

(5) type error
EplexInstance does not a solver setup for it.
(6) out of range
Var is not a problem variable for EplexInstance.
(40) stale object handle
Solver state had been previously destroyed.

See Also

lp_var_get_bounds / 4, eplex_solver_setup / 1, eplex_solver_setup / 4