pub unsafe extern "C" fn SCIPsetProbingLPState(
scip: *mut SCIP,
lpistate: *mut *mut SCIP_LPISTATE,
lpinorms: *mut *mut SCIP_LPINORMS,
primalfeas: c_uint,
dualfeas: c_uint,
) -> SCIP_RETCODEExpand description
sets the LP state for the current probing node
@note state and norms are stored at the node and later released by SCIP; therefore, the pointers are set to NULL by the method
@note the pointers to state and norms must not be NULL; however, they may point to a NULL pointer if the respective information should not be set
@return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref SCIP_Retcode “SCIP_RETCODE” for a complete list of error codes.
@pre This method can be called if @p scip is in one of the following stages: - \ref SCIP_STAGE_PRESOLVING - \ref SCIP_STAGE_SOLVING