SCIPgetLPExactObjval

Function SCIPgetLPExactObjval 

Source
pub unsafe extern "C" fn SCIPgetLPExactObjval(
    scip: *mut SCIP,
    result: *mut SCIP_RATIONAL,
)
Expand description

gets objective value of current exact LP (which is the sum of column and loose objective value)

@pre This method can be called if @p scip is in one of the following stages: - \ref SCIP_STAGE_SOLVING

@note This method returns the objective value of the current LP solution, which might be primal or dual infeasible if a limit was hit during solving. It must not be used as a dual bound if the exact LP solution status returned by SCIPgetLPExactSolstat() is SCIP_LPSOLSTAT_ITERLIMIT or SCIP_LPSOLSTAT_TIMELIMIT.

See \ref SCIP_Stage “SCIP_STAGE” for a complete list of all possible solving stages.