Home
last modified time | relevance | path

Searched refs:rndpoints (Results 1 – 2 of 2) sorted by relevance

/dports/math/SCIP/scip-7.0.3/tests/src/heur/
H A Dmultistart.c100 SCIP_SOL** rndpoints; variable
103 SCIP_CALL( SCIPallocBufferArray(scip, &rndpoints, 1) );
106 rndpoints[0] = NULL;
107 …SCIP_CALL( sampleRandomPoints(scip, rndpoints, 1, 1.0, randumgen, SCIPinfinity(scip), &nrndpoints)…
110 cr_assert( rndpoints[0] != NULL );
111 cr_assert( SCIPgetSolVal(scip, rndpoints[0], x) <= SCIPvarGetUbLocal(x) );
112 cr_assert( SCIPgetSolVal(scip, rndpoints[0], x) >= SCIPvarGetLbLocal(x) );
113 cr_assert( SCIPgetSolVal(scip, rndpoints[0], y) <= SCIPvarGetUbLocal(y) );
114 cr_assert( SCIPgetSolVal(scip, rndpoints[0], y) >= SCIPvarGetLbLocal(y) );
116 SCIP_CALL( SCIPfreeSol(scip, &rndpoints[0]) );
[all …]
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dheur_multistart.c133 SCIP_SOL** rndpoints, /**< array to store all random points */ in sampleRandomPoints() argument
151 assert(rndpoints != NULL); in sampleRandomPoints()
195 SCIP_CALL( SCIPcreateSolCopy(scip, &rndpoints[*nstored], sol) ); in sampleRandomPoints()