| 108 | } |
| 109 | |
| 110 | LinFloatRel |
| 111 | operator <=(const FloatVal& l, const FloatVar& r) { |
| 112 | return LinFloatRel(l,FRT_LQ,(const LinFloatExpr&)r); |
| 113 | } |
| 114 | LinFloatRel |
| 115 | operator <=(const FloatVal& l, const LinFloatExpr& r) { |
| 116 | return LinFloatRel(l,FRT_LQ,r); |
nothing calls this directly
no test coverage detected