| 44 | using namespace Gecode::Set::RelOp; |
| 45 | |
| 46 | void |
| 47 | rel(Home home, SetVar x, SetOpType op, SetVar y, SetRelType r, |
| 48 | const IntSet& z) { |
| 49 | Set::Limits::check(z, "Set::rel"); |
| 50 | ConstSetView zv(home, z); |
| 51 | if (r == SRT_CMPL) { |
| 52 | post_compl(home, x, op, y, zv); |
| 53 | } else { |
| 54 | post_nocompl(home, x, op, y, r, zv); |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | // STATISTICS: set-post |
nothing calls this directly
no test coverage detected