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