pub unsafe extern "C" fn SCIPgetCountedSparseSols(
    scip: *mut SCIP,
    vars: *mut *mut *mut SCIP_VAR,
    nvars: *mut c_int,
    sols: *mut *mut *mut SCIP_SPARSESOL,
    nsols: *mut c_int
)
Expand description

Method to get the sparse solution.

@note You get the pointer to the sparse solutions stored in the constraint handler (not a copy).

@note The sparse solutions are stored w.r.t. the active variables. This are the variables which got not removed during presolving. For none active variables the value has to be computed depending on their aggregation type. See for more details about that \ref COLLECTALLFEASEBLES.