| 527 | p_bool_CMP_reif(s, IRT_NQ, RM_EQV, ce, ann); |
| 528 | } |
| 529 | void p_bool_ne_imp(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 530 | p_bool_CMP_reif(s, IRT_NQ, RM_IMP, ce, ann); |
| 531 | } |
| 532 | void p_bool_ge(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 533 | p_bool_CMP(s, IRT_GQ, ce, ann); |
| 534 | } |
nothing calls this directly
no test coverage detected