| 52 | return SetRel(e0, SRT_NQ, e1); |
| 53 | } |
| 54 | SetCmpRel |
| 55 | operator <=(const SetExpr& e0, const SetExpr& e1) { |
| 56 | return SetCmpRel(e0, SRT_SUB, e1); |
| 57 | } |
| 58 | BoolExpr |
| 59 | operator <=(const SetCmpRel& r, const SetExpr& l) { |
| 60 | return BoolExpr(r) && BoolExpr(r.r <= l); |