Constructor for cloning \a p
| 71 | |
| 72 | /// Constructor for cloning \a p |
| 73 | LastVal(Space& home, LastVal& p) : Propagator(home,p) { |
| 74 | x.update(home, p.x); |
| 75 | }; |
| 76 | /// Constructor for posting |
| 77 | LastVal(FlatZincSpace& home, IdxViewArray<View> x0) : Propagator(home), x(x0) { |
| 78 | x.subscribe(home, *this, PC_GEN_ASSIGNED); |