| 147 | |
| 148 | template<typename... Args> |
| 149 | void |
| 150 | DomExpr<Args...>::post(Home home, BoolVar b, bool neg, |
| 151 | const IntPropLevels& ipls) |
| 152 | { |
| 153 | DomArgs<Args...>::apply(home, neg ? (!b).expr (home, ipls) : b, ipls, |
| 154 | cxx14::index_sequence_for<Args...>{}); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 |