pub unsafe extern "C" fn SCIPconshdlrGetConss(
conshdlr: *mut SCIP_CONSHDLR,
) -> *mut *mut SCIP_CONSExpand description
gets array with constraints of constraint handler; the first SCIPconshdlrGetNActiveConss() entries are the active constraints, the last SCIPconshdlrGetNConss() - SCIPconshdlrGetNActiveConss() constraints are deactivated
@note A constraint is active if it is global and was not removed or it was added locally (in that case the local flag is TRUE) and the current node belongs to the corresponding sub tree.