Home
last modified time | relevance | path

Searched refs:SCIPhistoryGetAvgCutoffs (Results 1 – 5 of 5) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dhistory.h219 SCIP_Real SCIPhistoryGetAvgCutoffs(
289 #define SCIPhistoryGetAvgCutoffs(history,dir) ((history)->nbranchings[dir] > 0 \ macro
H A Dhistory.c413 #undef SCIPhistoryGetAvgCutoffs
675 SCIP_Real SCIPhistoryGetAvgCutoffs( in SCIPhistoryGetAvgCutoffs() function
H A Dscip_solvingstats.c2158 return SCIPhistoryGetAvgCutoffs(scip->stat->glbhistory, dir); in SCIPgetAvgCutoffs()
2178 return SCIPhistoryGetAvgCutoffs(scip->stat->glbhistorycrun, dir); in SCIPgetAvgCutoffsCurrentRun()
2198 cutoffsdown = SCIPhistoryGetAvgCutoffs(scip->stat->glbhistory, SCIP_BRANCHDIR_DOWNWARDS); in SCIPgetAvgCutoffScore()
2199 cutoffsup = SCIPhistoryGetAvgCutoffs(scip->stat->glbhistory, SCIP_BRANCHDIR_UPWARDS); in SCIPgetAvgCutoffScore()
2221 cutoffsdown = SCIPhistoryGetAvgCutoffs(scip->stat->glbhistorycrun, SCIP_BRANCHDIR_DOWNWARDS); in SCIPgetAvgCutoffScoreCurrentRun()
2222 cutoffsup = SCIPhistoryGetAvgCutoffs(scip->stat->glbhistorycrun, SCIP_BRANCHDIR_UPWARDS); in SCIPgetAvgCutoffScoreCurrentRun()
H A Dvar.c16043 return SCIPhistoryGetAvgCutoffs(stat->glbhistory, dir); in SCIPvarGetAvgCutoffs()
16050 ? SCIPhistoryGetAvgCutoffs(var->history, dir) in SCIPvarGetAvgCutoffs()
16051 : SCIPhistoryGetAvgCutoffs(stat->glbhistory, dir); in SCIPvarGetAvgCutoffs()
16090 return SCIPhistoryGetAvgCutoffs(stat->glbhistorycrun, dir); in SCIPvarGetAvgCutoffsCurrentRun()
16097 ? SCIPhistoryGetAvgCutoffs(var->historycrun, dir) in SCIPvarGetAvgCutoffsCurrentRun()
16098 : SCIPhistoryGetAvgCutoffs(stat->glbhistorycrun, dir); in SCIPvarGetAvgCutoffsCurrentRun()
H A Dreopt.c6654 … avgcutoff[d] = SCIPhistoryGetAvgCutoffs(reopt->varhistory[reopt->run-2][idx], (SCIP_BRANCHDIR)d); in SCIPreoptMergeVarHistory()