Post constraint on \a x
| 233 | } |
| 234 | /// Post constraint on \a x |
| 235 | virtual void post(Gecode::Space& home, Gecode::IntVarArray& x) { |
| 236 | using namespace Gecode; |
| 237 | IntVarArgs l(d*m); |
| 238 | for (int j=m*d; j--; ) |
| 239 | l[j]=IntVar(home, 0, Gecode::Int::Limits::max); |
| 240 | binpacking(home, d, l, x, s, c); |
| 241 | } |
| 242 | }; |
| 243 | |
| 244 | /// Test for testing the max-clique finding for multi bin-packing |
nothing calls this directly
no test coverage detected