| 60 | return BoolExpr(r) && BoolExpr(r.r <= l); |
| 61 | } |
| 62 | SetCmpRel |
| 63 | operator >=(const SetExpr& e0, const SetExpr& e1) { |
| 64 | return SetCmpRel(e0, SRT_SUP, e1); |
| 65 | } |
| 66 | BoolExpr |
| 67 | operator >=(const SetCmpRel& r, const SetExpr& l) { |
| 68 | return BoolExpr(r) && BoolExpr(r.r >= l); |