| 49 | |
| 50 | template<class View> |
| 51 | ExecStatus |
| 52 | Lq<View>::post(Home home, View x0, View x1) { |
| 53 | GECODE_ME_CHECK(x0.lq(home,x1.max())); |
| 54 | GECODE_ME_CHECK(x1.gq(home,x0.min())); |
| 55 | if ((x0 != x1) && (x0.max() > x1.min())) |
| 56 | (void) new (home) Lq<View>(home,x0,x1); |
| 57 | return ES_OK; |
| 58 | } |
| 59 | |
| 60 | template<class View> |
| 61 | forceinline |
nothing calls this directly
no test coverage detected