Home
last modified time | relevance | path

Searched refs:SCIPhistoryGetAvgInferences (Results 1 – 6 of 6) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dhistory.h213 SCIP_Real SCIPhistoryGetAvgInferences(
287 #define SCIPhistoryGetAvgInferences(history,dir) ((history)->nbranchings[dir] > 0 \ macro
H A Dhistory.c411 #undef SCIPhistoryGetAvgInferences
649 SCIP_Real SCIPhistoryGetAvgInferences( in SCIPhistoryGetAvgInferences() function
H A Dscip_solvingstats.c2072 return SCIPhistoryGetAvgInferences(scip->stat->glbhistory, dir); in SCIPgetAvgInferences()
2092 return SCIPhistoryGetAvgInferences(scip->stat->glbhistorycrun, dir); in SCIPgetAvgInferencesCurrentRun()
2112 inferencesdown = SCIPhistoryGetAvgInferences(scip->stat->glbhistory, SCIP_BRANCHDIR_DOWNWARDS); in SCIPgetAvgInferenceScore()
2113 inferencesup = SCIPhistoryGetAvgInferences(scip->stat->glbhistory, SCIP_BRANCHDIR_UPWARDS); in SCIPgetAvgInferenceScore()
2137 …inferencesdown = SCIPhistoryGetAvgInferences(scip->stat->glbhistorycrun, SCIP_BRANCHDIR_DOWNWARDS); in SCIPgetAvgInferenceScoreCurrentRun()
2138 inferencesup = SCIPhistoryGetAvgInferences(scip->stat->glbhistorycrun, SCIP_BRANCHDIR_UPWARDS); in SCIPgetAvgInferenceScoreCurrentRun()
H A Dscip_var.c9736 avginferdown = SCIPhistoryGetAvgInferences(scip->stat->glbhistory, SCIP_BRANCHDIR_DOWNWARDS); in SCIPgetVarAvgInferenceCutoffScore()
9737 avginferup = SCIPhistoryGetAvgInferences(scip->stat->glbhistory, SCIP_BRANCHDIR_UPWARDS); in SCIPgetVarAvgInferenceCutoffScore()
9780 avginferdown = SCIPhistoryGetAvgInferences(scip->stat->glbhistorycrun, SCIP_BRANCHDIR_DOWNWARDS); in SCIPgetVarAvgInferenceCutoffScoreCurrentRun()
9781 avginferup = SCIPhistoryGetAvgInferences(scip->stat->glbhistorycrun, SCIP_BRANCHDIR_UPWARDS); in SCIPgetVarAvgInferenceCutoffScoreCurrentRun()
H A Dvar.c15845 return SCIPhistoryGetAvgInferences(stat->glbhistory, dir); in SCIPvarGetAvgInferences()
15852 return SCIPhistoryGetAvgInferences(var->history, dir); in SCIPvarGetAvgInferences()
15860 …urn nimpls + ncliques > 0 ? (SCIP_Real)(nimpls + 2*ncliques) : SCIPhistoryGetAvgInferences(stat->g… in SCIPvarGetAvgInferences()
15902 return SCIPhistoryGetAvgInferences(stat->glbhistorycrun, dir); in SCIPvarGetAvgInferencesCurrentRun()
15909 return SCIPhistoryGetAvgInferences(var->historycrun, dir); in SCIPvarGetAvgInferencesCurrentRun()
15917 …urn nimpls + ncliques > 0 ? (SCIP_Real)(nimpls + 2*ncliques) : SCIPhistoryGetAvgInferences(stat->g… in SCIPvarGetAvgInferencesCurrentRun()
H A Dreopt.c6650 …avginference[d] = SCIPhistoryGetAvgInferences(reopt->varhistory[reopt->run-2][idx], (SCIP_BRANCHDI… in SCIPreoptMergeVarHistory()