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

Function p_float_div

gecode/flatzinc/registry.cpp:2256–2261  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2254 }
2255
2256 void p_float_div(FlatZincSpace& s, const ConExpr& ce, AST::Node*) {
2257 FloatVar x = s.arg2FloatVar(ce[0]);
2258 FloatVar y = s.arg2FloatVar(ce[1]);
2259 FloatVar z = s.arg2FloatVar(ce[2]);
2260 div(s,x,y,z);
2261 }
2262
2263 void p_float_plus(FlatZincSpace& s, const ConExpr& ce, AST::Node*) {
2264 FloatVar x = s.arg2FloatVar(ce[0]);

Callers

nothing calls this directly

Calls 2

arg2FloatVarMethod · 0.80
divFunction · 0.50

Tested by

no test coverage detected