| 77 | |
| 78 | template<class SView, class RView> |
| 79 | forceinline size_t |
| 80 | ElementUnionConst<SView,RView>::dispose(Space& home) { |
| 81 | home.ignore(*this,AP_DISPOSE); |
| 82 | if (!home.failed()) { |
| 83 | x0.cancel(home,*this, PC_SET_ANY); |
| 84 | x1.cancel(home,*this, PC_SET_ANY); |
| 85 | } |
| 86 | for (unsigned int i=n_iv; i--;) |
| 87 | iv[i].~IntSet(); |
| 88 | (void) Propagator::dispose(home); |
| 89 | return sizeof(*this); |
| 90 | } |
| 91 | |
| 92 | template<class SView, class RView> |
| 93 | ExecStatus |