Home
last modified time | relevance | path

Searched refs:ntotalvars (Results 1 – 4 of 4) sorted by relevance

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dprop_probing.c866 int ntotalvars; in SCIP_DECL_PROPPRESOL() local
941 ntotalvars = SCIPgetNTotalVars(scip); in SCIP_DECL_PROPPRESOL()
942 if( propdata->noldtotalvars < ntotalvars ) in SCIP_DECL_PROPPRESOL()
944 SCIP_CALL( SCIPreallocMemoryArray(scip, &propdata->nprobed, ntotalvars) ); in SCIP_DECL_PROPPRESOL()
945 …BMSclearMemoryArray(&(propdata->nprobed[propdata->noldtotalvars]), ntotalvars - propdata->noldtota… in SCIP_DECL_PROPPRESOL()
946 propdata->noldtotalvars = ntotalvars; in SCIP_DECL_PROPPRESOL()
1005 int ntotalvars; in SCIP_DECL_PROPEXEC() local
1070 ntotalvars = SCIPgetNTotalVars(scip); in SCIP_DECL_PROPEXEC()
1071 if( propdata->noldtotalvars < ntotalvars ) in SCIP_DECL_PROPEXEC()
1073 SCIP_CALL( SCIPreallocMemoryArray(scip, &propdata->nprobed, ntotalvars) ); in SCIP_DECL_PROPEXEC()
[all …]
H A Dreader_ppm.c266 int ntotalvars, /**< number of variables */ in printRow() argument
306 assert(maxvarindex < ntotalvars); in printRow()
350 for( ; i < ntotalvars; ++i ) in printRow()
H A Dcons_sos1.c3376 int ntotalvars = 0; in presolRoundVarsSOS1() local
3396 totalvars[ntotalvars++] = var; in presolRoundVarsSOS1()
3409 totalvars[ntotalvars++] = var; in presolRoundVarsSOS1()
3425 assert( ntotalvars > 0 ); in presolRoundVarsSOS1()
3463 for (j = 0; j < ntotalvars; ++j) in presolRoundVarsSOS1()
3506 for (j = ntotalvars-1; j >= 0; --j) in presolRoundVarsSOS1()
8680 int ntotalvars; in initConflictgraph() local
8690 ntotalvars = SCIPgetNTotalVars(scip); in initConflictgraph()
8695 for (i = 0; i < ntotalvars; ++i) in initConflictgraph()
8729 assert( ind >= 0 && ind < ntotalvars ); in initConflictgraph()
[all …]
H A Dbranch_lookahead.c1717 int ntotalvars; in domainReductionsCreate() local
1725 ntotalvars = SCIPgetNVars(scip); in domainReductionsCreate()
1729 SCIP_CALL( SCIPallocBufferArray(scip, &(*domreds)->lowerbounds, ntotalvars) ); in domainReductionsCreate()
1730 SCIP_CALL( SCIPallocBufferArray(scip, &(*domreds)->upperbounds, ntotalvars) ); in domainReductionsCreate()
1737 for( v = 0; v < ntotalvars; ++v ) in domainReductionsCreate()
1852 int ntotalvars; in scoreContainerCreate() local
1861 ntotalvars = SCIPgetNVars(scip); in scoreContainerCreate()
1867 SCIP_CALL( SCIPallocBufferArray(scip, &(*scorecontainer)->scores, ntotalvars) ); in scoreContainerCreate()
1868 SCIP_CALL( SCIPallocBufferArray(scip, &(*scorecontainer)->downgains, ntotalvars) ); in scoreContainerCreate()
1869 SCIP_CALL( SCIPallocBufferArray(scip, &(*scorecontainer)->upgains, ntotalvars) ); in scoreContainerCreate()
[all …]