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