All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
stat.c
Go to the documentation of this file.
26 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
315 SCIP_Bool partialreset /**< should time and integral value be kept? (in combination with no statistical
335 /** update the primal-dual integral statistic. method accepts + and - SCIPsetInfinity() as values for
399 else if( !SCIPsetIsInfinity(set, REALABS(primalbound)) && !SCIPsetIsInfinity(set, REALABS(dualbound)) )
404 /* The gap in the definition of the primal-dual integral differs from the default SCIP gap function.
405 * Here, the MAX(primalbound, dualbound) is taken for gap quotient in order to ensure a gap <= 100.
414 assert(currentgap == 0.0 || currentgap == 100.0 || SCIPsetIsGE(set, primalbound * dualbound, 0.0));
415 assert(SCIPsetIsGE(set, stat->previousgap, currentgap) || (set->stage == SCIP_STAGE_EXITPRESOLVE
467 /** resets display statistics, such that a new header line is displayed before the next display line */
488 /** depending on the current memory usage, switches mode flag to standard or memory saving mode */
513 else if( stat->memsavemode && memused < 0.5 * set->mem_savefac * set->limit_memory * 1024.0 * 1024.0 )
|