| 207 | } |
| 208 | |
| 209 | LinFloatRel |
| 210 | operator >(const FloatVal& l, const FloatVar& r) { |
| 211 | return LinFloatRel(l,FRT_GR,(const LinFloatExpr&)r); |
| 212 | } |
| 213 | LinFloatRel |
| 214 | operator >(const FloatVal& l, const LinFloatExpr& r) { |
| 215 | return LinFloatRel(l,FRT_GR,r); |
nothing calls this directly
no test coverage detected