
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.

Arguments
   Var                 A problem variable for EplexInstance
   Lo                  Lower bound for Var
   Hi                  Upper bound for Var

Type
   library(eplex)

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 --- EplexInstance does not a solver setup for it.
     6 --- Var is not a problem variable for EplexInstance.
    40 --- Solver state had been previously destroyed.

See Also
   lp_var_get_bounds / 4, eplex_solver_setup / 1, eplex_solver_setup / 4
