| 159 | p_int_CMP_reif(s, IRT_EQ, RM_EQV, ce, ann); |
| 160 | } |
| 161 | void p_int_ne_reif(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 162 | p_int_CMP_reif(s, IRT_NQ, RM_EQV, ce, ann); |
| 163 | } |
| 164 | void p_int_ge_reif(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 165 | p_int_CMP_reif(s, IRT_GQ, RM_EQV, ce, ann); |
| 166 | } |
nothing calls this directly
no test coverage detected