| 70 | |
| 71 | template<class View> |
| 72 | ExecStatus |
| 73 | Lq<View>::propagate(Space& home, const ModEventDelta&) { |
| 74 | GECODE_ME_CHECK(x0.lq(home,x1.max())); |
| 75 | GECODE_ME_CHECK(x1.gq(home,x0.min())); |
| 76 | return (x0.assigned() || x1.assigned() || (x0.max() <= x1.min())) ? home.ES_SUBSUMED(*this) : ES_FIX; |
| 77 | } |
| 78 | |
| 79 | |
| 80 | /* |
nothing calls this directly
no test coverage detected