| 82 | |
| 83 | template<class View0, class View1> |
| 84 | ExecStatus |
| 85 | EqVal<View0,View1>::propagate(Space& home, const ModEventDelta&) { |
| 86 | if (x0.assigned()) { |
| 87 | GECODE_ME_CHECK(x1.eq(home,x0.val())); |
| 88 | } else { |
| 89 | assert(x1.assigned()); |
| 90 | GECODE_ME_CHECK(x0.eq(home,x1.val())); |
| 91 | } |
| 92 | return home.ES_SUBSUMED(*this); |
| 93 | } |
| 94 | |
| 95 | |
| 96 | /* |
nothing calls this directly
no test coverage detected