Home
last modified time | relevance | path

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

/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dcons_orbitope.c160 … SCIP_HASHMAP* rowindexmap; /**< map of variables to row index in orbitope matrix */ member
197 if ( usedynamicprop && (*consdata)->rowindexmap != NULL ) in consdataFree()
199 SCIPhashmapFree(&((*consdata)->rowindexmap)); in consdataFree()
260 SCIP_CALL( SCIPhashmapCreate(&(*consdata)->rowindexmap, SCIPblkmem(scip), nspcons) ); in consdataCreate()
305 …SCIP_CALL( SCIPhashmapInsert((*consdata)->rowindexmap, (*consdata)->vars[i][j], (void*) (size_t) i… in consdataCreate()
1405 …SCIP_HASHMAP* rowindexmap, /**< map of variables to indices in orbitope vars matrix… in computeDynamicRowOrder() argument
1419 assert( rowindexmap != NULL ); in computeDynamicRowOrder()
1463 if ( ! SCIPhashmapExists(rowindexmap, (void*) branchvar) ) in computeDynamicRowOrder()
1466 rowidx = (int) (size_t) SCIPhashmapGetImage(rowindexmap, (void*) branchvar); in computeDynamicRowOrder()
1740 SCIP_CALL( computeDynamicRowOrder(scip, consdata->rowindexmap, consdata->rowused, in propagateFullOrbitopeCons()