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

Function operator *

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

LinFloatExprClass · 0.85

Tested by

no test coverage detected