| 125 | p_int_CMP(s, IRT_GR, ce, ann); |
| 126 | } |
| 127 | void p_int_le(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 128 | p_int_CMP(s, IRT_LQ, ce, ann); |
| 129 | } |
| 130 | void p_int_lt(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 131 | p_int_CMP(s, IRT_LE, ce, ann); |
| 132 | } |
nothing calls this directly
no test coverage detected