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

Function pathset_h

gecode/int/gcc/bnd-sup.hpp:530–537  ·  view source on GitHub ↗

Path compression for hall pointer structure

Source from the content-addressed store, hash-verified

528 }
529 /// Path compression for hall pointer structure
530 forceinline void
531 pathset_h(HallInfo hall[], int start, int end, int to) {
532 int k, l;
533 for (l=start; (k=l) != end; hall[k].h=to) {
534 l = hall[k].h;
535 assert(l != k);
536 }
537 }
538 //@}
539
540 /**

Callers 2

lbcMethod · 0.70
ubcMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected