| 116 | p_int_CMP(s, IRT_EQ, ce, ann); |
| 117 | } |
| 118 | void p_int_ne(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 119 | p_int_CMP(s, IRT_NQ, ce, ann); |
| 120 | } |
| 121 | void p_int_ge(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 122 | p_int_CMP(s, IRT_GQ, ce, ann); |
| 123 | } |
nothing calls this directly
no test coverage detected