| 462 | } |
| 463 | |
| 464 | LinFloatExpr |
| 465 | operator /(const LinFloatExpr& e0, const LinFloatExpr& e1) { |
| 466 | using namespace MiniModel; |
| 467 | ArithNonLinFloatExpr* ae = |
| 468 | new ArithNonLinFloatExpr(ArithNonLinFloatExpr::ANLFE_DIV,2); |
| 469 | ae->a[0] = e0; |
| 470 | ae->a[1] = e1; |
| 471 | return LinFloatExpr(ae); |
| 472 | } |
| 473 | |
| 474 | LinFloatExpr |
| 475 | sqr(const LinFloatExpr& e) { |
nothing calls this directly
no test coverage detected