\brief Post PushToEnd propagator. */
| 186 | /** \brief Post PushToEnd propagator. |
| 187 | */ |
| 188 | void pushtoend(Space& home, IntVarArgs x, IntVar y, int val) { |
| 189 | ViewArray<Int::IntView> vx(home, x); |
| 190 | Int::IntView vy(y); |
| 191 | GECODE_ES_FAIL(PushToEnd<Int::IntView>::post(home, vx, vy, val)); |
| 192 | } |
| 193 | |
| 194 | } |
| 195 |