| 42 | using namespace Gecode::Set::RelOp; |
| 43 | |
| 44 | void |
| 45 | rel(Home home, SetVar x, SetOpType op, SetVar y, SetRelType r, SetVar z) { |
| 46 | GECODE_POST; |
| 47 | if (r == SRT_CMPL) { |
| 48 | post_compl(home, x, op, y, z); |
| 49 | } else { |
| 50 | post_nocompl(home, x, op, y, r, z); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | } |
| 55 |
nothing calls this directly
no test coverage detected