| 165 | p_int_CMP_reif(s, IRT_GQ, RM_EQV, ce, ann); |
| 166 | } |
| 167 | void p_int_gt_reif(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 168 | p_int_CMP_reif(s, IRT_GR, RM_EQV, ce, ann); |
| 169 | } |
| 170 | void p_int_le_reif(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 171 | p_int_CMP_reif(s, IRT_LQ, RM_EQV, ce, ann); |
| 172 | } |
nothing calls this directly
no test coverage detected