Home
last modified time | relevance | path

Searched refs:SCIPconsGetActiveDepth (Results 1 – 3 of 3) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dpub_cons.h577 int SCIPconsGetActiveDepth(
828 #define SCIPconsGetActiveDepth(cons) (cons)->activedepth macro
831 : (cons)->validdepth == -1 ? SCIPconsGetActiveDepth(cons) \
H A Dcons.c2822 assert(SCIPconsGetActiveDepth(conshdlr->initconss[c]) >= -1); in SCIPconshdlrInitLP()
2823 assert(SCIPconsGetActiveDepth(conshdlr->initconss[c]) <= currentdepth); in SCIPconshdlrInitLP()
2826 if( currentdepth > 0 ? SCIPconsGetActiveDepth(conshdlr->initconss[c]) != currentdepth : in SCIPconshdlrInitLP()
2827 SCIPconsGetActiveDepth(conshdlr->initconss[c]) > 0 ) in SCIPconshdlrInitLP()
8033 #undef SCIPconsGetActiveDepth
8125 int SCIPconsGetActiveDepth( in SCIPconsGetActiveDepth() function
8167 : cons->validdepth == -1 ? SCIPconsGetActiveDepth(cons) in SCIPconsGetValidDepth()
H A Ddebug.c787 assert(SCIPconsGetActiveDepth(conss[c]) <= SCIPgetDepth(scip)); in SCIPdebugCheckConss()