Home
last modified time | relevance | path

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

/dports/math/SCIP/scip-7.0.3/tests/src/heur/
H A Dmultistart.c218 SCIP_Real gradcosts; variable
237 …(scip, nlrows, 1, varindex, exprint, sol, 1, 0.0, INT_MAX, &minfeas, nlrowgradcosts, &gradcosts) );
239 cr_expect(gradcosts > 0.0);
254 …, &nlrows[1], 1, varindex, exprint, sol, 10, 0.0, INT_MAX, &minfeas, nlrowgradcosts, &gradcosts) );
256 cr_expect(gradcosts > 0.0);
261 … &nlrows[1], 1, varindex, exprint, sol, 100, 0.0, INT_MAX, &minfeas, nlrowgradcosts, &gradcosts) );
263 cr_expect(gradcosts > 0.0);
268 …cip, nlrows, 2, varindex, exprint, sol, 100, 0.0, INT_MAX, &minfeas, nlrowgradcosts, &gradcosts) );
270 cr_expect(gradcosts > 0.0);
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dheur_multistart.c354 SCIP_Real* gradcosts /**< pointer to store the estimated gradient costs */ in improvePoint() argument
373 assert(gradcosts != NULL); in improvePoint()
375 *gradcosts = 0.0; in improvePoint()
427 *gradcosts += nlrowgradcosts[i]; in improvePoint()
869 SCIP_Real gradcosts; in applyHeur() local
873 &gradcosts) ); in applyHeur()
875 gradlimit -= gradcosts; in applyHeur()