SCIPcollectTimingStatistics

Function SCIPcollectTimingStatistics 

Source
pub unsafe extern "C" fn SCIPcollectTimingStatistics(
    scip: *mut SCIP,
    datatree: *mut SCIP_DATATREE,
) -> SCIP_RETCODE
Expand description

collects timing statistics in SCIP_DATATREE

The following keys are set:

  • “total_time”: Total time spent in SCIP.
  • “solving_time”: Time spent solving the problem.
  • “presolving_time”: Time spent in presolving.
  • “reading_time”: Time spent reading the problem.
  • “copy_time”: Time spent copying the problem (if applicable).

@pre This method can be called if SCIP is in one of the following stages: - \ref SCIP_STAGE_PROBLEM - \ref SCIP_STAGE_TRANSFORMED - \ref SCIP_STAGE_INITPRESOLVE - \ref SCIP_STAGE_PRESOLVING - \ref SCIP_STAGE_EXITPRESOLVE - \ref SCIP_STAGE_PRESOLVED - \ref SCIP_STAGE_SOLVING - \ref SCIP_STAGE_SOLVED