pub unsafe extern "C" fn SCIPsolveCumulative(
scip: *mut SCIP,
njobs: c_int,
ests: *mut f64,
lsts: *mut f64,
objvals: *mut f64,
durations: *mut c_int,
demands: *mut c_int,
capacity: c_int,
hmin: c_int,
hmax: c_int,
timelimit: f64,
memorylimit: f64,
maxnodes: c_longlong,
solved: *mut c_uint,
infeasible: *mut c_uint,
unbounded: *mut c_uint,
error: *mut c_uint,
) -> SCIP_RETCODEExpand description
solves given cumulative condition as independent sub problem
@note If the problem was solved to the earliest start times (ests) and latest start times (lsts) array contain the solution values; If the problem was not solved these two arrays contain the global bounds at the time the sub solver was interrupted.