| 353 | #ifdef GECODE_HAS_CBS |
| 354 | |
| 355 | void |
| 356 | cbsbranch(Home home, const IntVarArgs& x) { |
| 357 | using namespace Int; |
| 358 | if (home.failed()) return; |
| 359 | ViewArray<IntView> y(home,x); |
| 360 | Branch::CBSBrancher<IntView>::post(home,y); |
| 361 | } |
| 362 | |
| 363 | void |
| 364 | cbsbranch(Home home, const BoolVarArgs& x) { |
no test coverage detected