Home
last modified time | relevance | path

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

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dheur_rens.c141 int fixedvarssize, /**< size of the arrays to store fixing variables */ in computeFixingrate() argument
169 assert(fixedvarssize >= nbinvars + nintvars); in computeFixingrate()
631 int fixedvarssize; in SCIPapplyRens() local
655 fixedvarssize = nbinvars + nintvars; in SCIPapplyRens()
656 SCIP_CALL( SCIPallocBufferArray(scip, &fixedvars, fixedvarssize) ); in SCIPapplyRens()
657 SCIP_CALL( SCIPallocBufferArray(scip, &fixedvals, fixedvarssize) ); in SCIPapplyRens()
661 …SCIP_CALL( computeFixingrate(scip, fixedvars, fixedvals, &nfixedvars, fixedvarssize, minfixingrate… in SCIPapplyRens()
H A Dstruct_prob.h67 int fixedvarssize; /**< available slots in fixedvars array */ member
H A Dheur_crossover.c358 int fixedvarssize, /**< size of the arrays to store fixing variables */ in fixVariables() argument
382 assert(fixedvarssize >= nbinvars + nintvars); in fixVariables()
436 int fixedvarssize, /**< size of the arrays to store fixing variables */ in determineVariableFixings() argument
506 …SCIP_CALL( fixVariables(scip, fixedvars, fixedvals, nfixedvars, fixedvarssize, selection, heurdata… in determineVariableFixings()
H A Dcons_components.c111 int fixedvarssize; /**< size of fixedvars and fixedsubvars arrays */ member
251 component->fixedvarssize = 0; in initComponent()
288 SCIPfreeBlockMemoryArray(scip, &component->fixedsubvars, component->fixedvarssize); in freeComponent()
289 SCIPfreeBlockMemoryArray(scip, &component->fixedvars, component->fixedvarssize); in freeComponent()
350 component->fixedvarssize = nnewvars - nvars; in componentSetupWorkingSol()
351 SCIP_CALL( SCIPallocBlockMemoryArray(scip, &component->fixedvars, component->fixedvarssize) ); in componentSetupWorkingSol()
352 … SCIP_CALL( SCIPallocBlockMemoryArray(scip, &component->fixedsubvars, component->fixedvarssize) ); in componentSetupWorkingSol()
390 assert(component->nfixedvars <= component->fixedvarssize); in componentSetupWorkingSol()
H A Dheur_rins.c122 …int fixedvarssize, /**< size of the buffer arrays to store potential fixing… in determineFixings() argument
147 assert(fixedvarssize >= nbinvars + nintvars); in determineFixings()
H A Dprob.c94 if( num > prob->fixedvarssize ) in probEnsureFixedvarsMem()
100 prob->fixedvarssize = newsize; in probEnsureFixedvarsMem()
102 assert(num <= prob->fixedvarssize); in probEnsureFixedvarsMem()
299 (*prob)->fixedvarssize = 0; in SCIPprobCreate()