Home
last modified time | relevance | path

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

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dheur_multistart.c359 SCIP_Real* updatevec; in improvePoint() local
396 SCIP_CALL( SCIPallocBufferArray(scip, &updatevec, nvars) ); in improvePoint()
407 BMSclearMemoryArray(updatevec, nvars); in improvePoint()
448 updatevec[j] += scale * grad[j]; in improvePoint()
454 assert(updatevec[i] == 0.0); in improvePoint()
461 updatevec[i] = SCIPgetSolVal(scip, point, vars[i]) + updatevec[i] / nviolnlrows; in improvePoint()
462 updatevec[i] = MIN(updatevec[i], SCIPvarGetUbLocal(vars[i])); /*lint !e666*/ in improvePoint()
463 updatevec[i] = MAX(updatevec[i], SCIPvarGetLbLocal(vars[i])); /*lint !e666*/ in improvePoint()
465 SCIP_CALL( SCIPsetSolVal(scip, point, vars[i], updatevec[i]) ); in improvePoint()
486 SCIPfreeBufferArray(scip, &updatevec); in improvePoint()