| 422 | } |
| 423 | |
| 424 | LinFloatExpr |
| 425 | operator *(const FloatVar& e0, const FloatVar& e1) { |
| 426 | using namespace MiniModel; |
| 427 | ArithNonLinFloatExpr* ae = |
| 428 | new ArithNonLinFloatExpr(ArithNonLinFloatExpr::ANLFE_MULT,2); |
| 429 | ae->a[0] = e0; |
| 430 | ae->a[1] = e1; |
| 431 | return LinFloatExpr(ae); |
| 432 | } |
| 433 | |
| 434 | LinFloatExpr |
| 435 | operator *(const LinFloatExpr& e0, const FloatVar& e1) { |
nothing calls this directly
no test coverage detected