| 141 | } |
| 142 | |
| 143 | LinFloatRel |
| 144 | operator <(const FloatVal& l, const FloatVar& r) { |
| 145 | return LinFloatRel(l,FRT_LE,(const LinFloatExpr&)r); |
| 146 | } |
| 147 | LinFloatRel |
| 148 | operator <(const FloatVal& l, const LinFloatExpr& r) { |
| 149 | return LinFloatRel(l,FRT_LE,r); |
nothing calls this directly
no test coverage detected