| 174 | } |
| 175 | |
| 176 | LinFloatRel |
| 177 | operator >=(const FloatVal& l, const FloatVar& r) { |
| 178 | return LinFloatRel(l,FRT_GQ,(const LinFloatExpr&)r); |
| 179 | } |
| 180 | LinFloatRel |
| 181 | operator >=(const FloatVal& l, const LinFloatExpr& r) { |
| 182 | return LinFloatRel(l,FRT_GQ,r); |
nothing calls this directly
no test coverage detected