| 36 | namespace Gecode { |
| 37 | |
| 38 | void |
| 39 | branch(Home home, const FloatVarArgs& x, |
| 40 | FloatVarBranch vars, FloatValBranch vals, |
| 41 | FloatBranchFilter bf, |
| 42 | FloatVarValPrint vvp) { |
| 43 | using namespace Float; |
| 44 | if (home.failed()) return; |
| 45 | vars.expand(home,x); |
| 46 | ViewArray<FloatView> xv(home,x); |
| 47 | ViewSel<FloatView>* vs[1] = { |
| 48 | Branch::viewsel(home,vars) |
| 49 | }; |
| 50 | postviewvalbrancher<FloatView,1,FloatNumBranch,2> |
| 51 | (home,xv,vs,Branch::valselcommit(home,vals),bf,vvp); |
| 52 | } |
| 53 | |
| 54 | void |
| 55 | branch(Home home, const FloatVarArgs& x, |
nothing calls this directly
no test coverage detected