Home
last modified time | relevance | path

Searched refs:nprobboundchgs (Results 1 – 12 of 12) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dstat.h241 case offsetof(SCIP_STAT, nprobboundchgs): \
262 case offsetof(SCIP_STAT, nprobboundchgs): \
282 case offsetof(SCIP_STAT, nprobboundchgs): \
H A Dsepa.c427 oldnprobdomchgs = stat->nprobboundchgs + stat->nprobholechgs; in SCIPsepaExecLP()
467 sepa->ndomredsfound -= (stat->nprobboundchgs + stat->nprobholechgs - oldnprobdomchgs); in SCIPsepaExecLP()
538 oldnprobdomchgs = stat->nprobboundchgs + stat->nprobholechgs; in SCIPsepaExecSol()
575 sepa->ndomredsfound -= (stat->nprobboundchgs + stat->nprobholechgs - oldnprobdomchgs); in SCIPsepaExecSol()
H A Dstruct_stat.h108 …SCIP_Longint nprobboundchgs; /**< total number of bound changes generated in the tree… member
H A Dbranch.c1582 oldnprobdomchgs = stat->nprobboundchgs + stat->nprobholechgs; in SCIPbranchruleExecLPSol()
1627 … branchrule->ndomredsfound -= (stat->nprobboundchgs + stat->nprobholechgs - oldnprobdomchgs); in SCIPbranchruleExecLPSol()
1690 oldnprobdomchgs = stat->nprobboundchgs + stat->nprobholechgs; in SCIPbranchruleExecExternSol()
1735 … branchrule->ndomredsfound -= (stat->nprobboundchgs + stat->nprobholechgs - oldnprobdomchgs); in SCIPbranchruleExecExternSol()
1793 oldnprobdomchgs = stat->nprobboundchgs + stat->nprobholechgs; in SCIPbranchruleExecPseudoSol()
1836 … branchrule->ndomredsfound -= (stat->nprobboundchgs + stat->nprobholechgs - oldnprobdomchgs); in SCIPbranchruleExecPseudoSol()
H A Dprop.c666 oldnprobdomchgs = stat->nprobboundchgs + stat->nprobholechgs; in SCIPpropExec()
692 prop->ndomredsfound -= (stat->nprobboundchgs + stat->nprobholechgs - oldnprobdomchgs); in SCIPpropExec()
H A Dcons.c2933 oldnprobdomchgs = stat->nprobboundchgs + stat->nprobholechgs; in SCIPconshdlrSeparateLP()
2978 … conshdlr->ndomredsfound -= (stat->nprobboundchgs + stat->nprobholechgs - oldnprobdomchgs); in SCIPconshdlrSeparateLP()
3064 oldnprobdomchgs = stat->nprobboundchgs + stat->nprobholechgs; in SCIPconshdlrSeparateSol()
3105 … conshdlr->ndomredsfound -= (stat->nprobboundchgs + stat->nprobholechgs - oldnprobdomchgs); in SCIPconshdlrSeparateSol()
3250 oldnprobdomchgs = stat->nprobboundchgs + stat->nprobholechgs; in SCIPconshdlrEnforceRelaxSol()
3290 conshdlr->ndomredsfound -= (stat->nprobboundchgs + stat->nprobholechgs - oldnprobdomchgs); in SCIPconshdlrEnforceRelaxSol()
3430 oldnprobdomchgs = stat->nprobboundchgs + stat->nprobholechgs; in SCIPconshdlrEnforceLPSol()
3472 … conshdlr->ndomredsfound -= (stat->nprobboundchgs + stat->nprobholechgs - oldnprobdomchgs); in SCIPconshdlrEnforceLPSol()
3639 oldnprobdomchgs = stat->nprobboundchgs + stat->nprobholechgs; in SCIPconshdlrEnforcePseudoSol()
3692 … conshdlr->ndomredsfound -= (stat->nprobboundchgs + stat->nprobholechgs - oldnprobdomchgs); in SCIPconshdlrEnforcePseudoSol()
[all …]
H A Dscip_probing.c630 *ndomredsfound = -(scip->stat->nprobboundchgs + scip->stat->nprobholechgs); in SCIPpropagateProbing()
637 *ndomredsfound += scip->stat->nprobboundchgs + scip->stat->nprobholechgs; in SCIPpropagateProbing()
H A Dconcurrent.c733 target->stat->nprobboundchgs = source->stat->nprobboundchgs; in SCIPcopyConcurrentSolvingStats()
H A Dstat.c251 stat->nprobboundchgs = 0; in SCIPstatReset()
H A Dscip_solvingstats.c2248 0.000738719124051 * scip->stat->nprobboundchgs + in SCIPgetDeterministicTime()
H A Dtree.c1975 SCIPstatIncrement(stat, set, nprobboundchgs); in SCIPnodeAddBoundinfer()
/dports/math/SCIP/scip-7.0.3/
H A DCHANGELOG5849 - struct `SCIP_Stat` has now two additional variables: `nprobboundchgs`, `nprobholechgs`; these are…