MCPcopy Create free account
hub / github.com/Gecode/gecode / operator /

Function operator /

gecode/minimodel/float-arith.cpp:464–472  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 1

LinFloatExprClass · 0.85

Tested by

no test coverage detected