| 74 | |
| 75 | template<class V0, class V1, class V2, PropCond pc> |
| 76 | forceinline size_t |
| 77 | IteBase<V0,V1,V2,pc>::dispose(Space& home) { |
| 78 | b.cancel(home,*this,PC_BOOL_VAL); |
| 79 | x0.cancel(home,*this,pc); |
| 80 | x1.cancel(home,*this,pc); |
| 81 | x2.cancel(home,*this,pc); |
| 82 | (void) Propagator::dispose(home); |
| 83 | return sizeof(*this); |
| 84 | } |
| 85 | |
| 86 | |
| 87 |