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

Function p_float_times

gecode/flatzinc/registry.cpp:2249–2254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2247 }
2248
2249 void p_float_times(FlatZincSpace& s, const ConExpr& ce, AST::Node*) {
2250 FloatVar x = s.arg2FloatVar(ce[0]);
2251 FloatVar y = s.arg2FloatVar(ce[1]);
2252 FloatVar z = s.arg2FloatVar(ce[2]);
2253 mult(s,x,y,z);
2254 }
2255
2256 void p_float_div(FlatZincSpace& s, const ConExpr& ce, AST::Node*) {
2257 FloatVar x = s.arg2FloatVar(ce[0]);

Callers

nothing calls this directly

Calls 2

arg2FloatVarMethod · 0.80
multFunction · 0.50

Tested by

no test coverage detected