Make \a x and \a y equal
| 54 | |
| 55 | /// Make \a x and \a y equal |
| 56 | IntVar unify(Home home, IntVar x, IntVar y) { |
| 57 | rel(home, x, IRT_EQ, y); |
| 58 | return x; |
| 59 | } |
| 60 | /// Make \a x and \a y equal |
| 61 | IntSet unify(Home, const IntSet& x, const IntSet& y) { |
| 62 | IntSetRanges xr(x); |
no test coverage detected