MCPcopy Create free account
hub / github.com/Gecode/gecode / initCache

Method initCache

gecode/set/view/cached.hpp:277–286  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

275 */
276 template<class View>
277 void
278 CachedView<View>::initCache(Space& home,
279 const IntSet& glb, const IntSet& lub) {
280 glbCache.init(home);
281 IntSetRanges gr(glb);
282 glbCache.includeI(home,gr);
283 lubCache.init(home);
284 IntSetRanges lr(lub);
285 lubCache.intersectI(home,lr);
286 }
287
288 template<class View>
289 forceinline void

Callers 2

int.hppFile · 0.45
set.hppFile · 0.45

Calls 3

initMethod · 0.45
includeIMethod · 0.45
intersectIMethod · 0.45

Tested by

no test coverage detected