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

Function rel

gecode/set/rel-op-const-cvv.cpp:46–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44 using namespace Gecode::Set::RelOp;
45
46 void
47 rel(Home home, const IntSet& x, SetOpType op, SetVar y, SetRelType r,
48 SetVar z) {
49 Set::Limits::check(x, "Set::rel");
50 ConstSetView xv(home, x);
51 GECODE_POST;
52 if (r == SRT_CMPL) {
53 post_compl(home, xv, op, y, z);
54 } else {
55 post_nocompl(home, xv, op, y, r, z);
56 }
57 }
58
59}
60

Callers

nothing calls this directly

Calls 3

checkFunction · 0.50
post_complFunction · 0.50
post_nocomplFunction · 0.50

Tested by

no test coverage detected