1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
use crate::{complement::Complement, ops::*};

macro_rules! impl_for_primitive {
    ($ty:ty : $size:literal) => {

        impl BitEmpty for $ty {
            fn empty() -> $ty {
                <$ty>::MIN
            }
        }

        impl BitTest for $ty {
            #[inline]
            fn test(&self, idx: usize) -> bool {
                if idx < $size {
                    0 != *self & ((1 as $ty) << idx)
                } else {
                    false
                }
            }
        }

        impl BitTestAll for $ty {
            #[inline]
            fn test_all(&self) -> bool {
                $size == usize::MAX && *self == <$ty>::MAX
            }
        }

        impl BitTestNone for $ty {
            #[inline]
            fn test_none(&self) -> bool {
                *self == 0
            }
        }

        impl BitSetLimit for $ty {
            const MAX_SET_INDEX: usize = $size - 1;
        }

        impl BitSet for $ty {
            #[inline]
            unsafe fn set_unchecked(&mut self, idx: usize) {
                debug_assert!(idx < $size);
                *self |= (1 as $ty << idx);
            }
        }

        impl BitUnsetLimit for $ty {
            const MAX_UNSET_INDEX: usize = usize::MAX;
        }

        impl BitUnset for $ty {
            #[inline]
            unsafe fn unset_unchecked(&mut self, idx: usize) {
                if idx < $size {
                    *self &= !(1 as $ty << idx);
                }
            }
        }

        impl BitSearch for $ty {
            fn find_first_set(&self, lower_bound: usize) -> Option<usize> {
                if lower_bound > Self::MAX_SET_INDEX {
                    return None;
                }

                let masked = *self & (<$ty>::MAX).wrapping_shl((lower_bound as u32));
                match masked.trailing_zeros() {
                    $size => None,
                    idx => Some(idx as usize),
                }
            }
        }

        impl BitComplement for $ty {
            type Output = Complement<$ty>;

            fn complement(self) -> Complement<Self> {
                Complement(self)
            }
        }

        impl BitUnion for $ty {
            type Output = Self;

            fn union(self, rhs: Self) -> Self {
                self | rhs
            }
        }

        impl BitUnion<Complement<$ty>> for $ty {
            type Output = Complement<Self>;

            fn union(self, rhs: Complement<Self>) -> Complement<Self> {
                Complement(rhs.0 & (!self))
            }
        }

        impl BitIntersection for $ty {
            type Output = Self;

            fn intersection(self, rhs: Self) -> Self {
                self & rhs
            }
        }

        impl BitIntersection<Complement<$ty>> for $ty {
            type Output = Self;

            fn intersection(self, rhs: Complement<Self>) -> Self {
                self & (!rhs.0)
            }
        }

        impl BitDifference for $ty {
            type Output = Self;

            fn difference(self, rhs: Self) -> Self {
                self & (!rhs)
            }
        }

        impl BitDifference<Complement<$ty>> for $ty {
            type Output = Self;

            fn difference(self, rhs: Complement<Self>) -> Self {
                self & rhs.0
            }
        }

        impl BitSubset for $ty {
            fn is_subset_of(&self, rhs: &Self) -> bool {
                *self & !*rhs == 0
            }
        }

        impl BitSubset<Complement<$ty>> for $ty {
            fn is_subset_of(&self, rhs: &Complement<Self>) -> bool {
                *self & rhs.0 == 0
            }
        }

        impl BitDisjoint for $ty {
            fn is_disjoint(&self, rhs: &Self) -> bool {
                *self & *rhs == 0
            }
        }

        impl BitDisjoint<Complement<$ty>> for $ty {
            fn is_disjoint(&self, rhs: &Complement<Self>) -> bool {
                *self & !rhs.0 == 0
            }
        }


        impl<const N: usize> BitEmpty for [$ty; N] {
            fn empty() -> [$ty; N] {
                [<$ty>::MIN; N]
            }
        }

        impl<const N: usize> BitTest for [$ty; N] {
            #[inline]
            fn test(&self, idx: usize) -> bool {
                if idx < $size * N {
                    let i = idx / $size;
                    let j = idx % $size;
                    0 != self[i] & ((1 as $ty) << j)
                } else {
                    false
                }
            }
        }

        impl<const N: usize> BitTestAll for [$ty; N] {
            #[inline]
            fn test_all(&self) -> bool {
                false
            }
        }

        impl<const N: usize> BitTestNone for [$ty; N] {
            #[inline]
            fn test_none(&self) -> bool {
                self.iter().all(|e| *e == 0)
            }
        }

        impl<const N: usize> BitSetLimit for [$ty; N] {
            const MAX_SET_INDEX: usize = ($size * N) - 1;
        }

        impl<const N: usize> BitSet for [$ty; N] {
            #[inline]
            unsafe fn set_unchecked(&mut self, idx: usize) {
                debug_assert!(idx < $size * N);
                let i = idx / $size;
                let j = idx % $size;
                self[i] |= (1 as $ty << j);
            }
        }

        impl<const N: usize> BitUnsetLimit for [$ty; N] {
            const MAX_UNSET_INDEX: usize = usize::MAX;
        }

        impl<const N: usize> BitUnset for [$ty; N] {
            #[inline]
            unsafe fn unset_unchecked(&mut self, idx: usize) {
                if idx < $size * N {
                    let i = idx / $size;
                    let j = idx % $size;

                    self[i] &= !(1 as $ty << j);
                }
            }
        }

        impl<const N: usize> BitSearch for [$ty; N] {
            fn find_first_set(&self, lower_bound: usize) -> Option<usize> {
                if lower_bound > Self::MAX_SET_INDEX {
                    return None;
                }

                let mut i = lower_bound / $size;
                let j = lower_bound % $size;

                let mut masked = self[i] & (<$ty>::MAX).wrapping_shl((j as u32));

                loop {
                    match masked.trailing_zeros() {
                        $size => {
                            i += 1;
                            if i >= N {
                                return None;
                            }
                            masked = self[i];
                        },
                        idx => return Some(i * $size + idx as usize)
                    }
                }
            }
        }

        impl<const N: usize> BitComplement for [$ty; N] {
            type Output = Complement<Self>;

            fn complement(self) -> Complement<Self> {
                Complement(self)
            }
        }

        impl<const N: usize> BitUnion for [$ty; N] {
            type Output = Self;

            fn union(self, rhs: Self) -> Self {
                crate::map2_arrays(self, rhs, |l, r| l | r)
            }
        }

        impl<const N: usize> BitUnion<Complement<[$ty; N]>> for [$ty; N] {
            type Output = Complement<Self>;

            fn union(self, rhs: Complement<Self>) -> Complement<Self> {
                Complement(crate::map2_arrays(self, rhs.0, |l, r| r & !l))
            }
        }

        impl<const N: usize> BitIntersection for [$ty; N] {
            type Output = Self;

            fn intersection(self, rhs: Self) -> Self {
                crate::map2_arrays(self, rhs, |l, r| l & r)
            }
        }

        impl<const N: usize> BitIntersection<Complement<[$ty; N]>> for [$ty; N] {
            type Output = Self;

            fn intersection(self, rhs: Complement<Self>) -> Self {
                crate::map2_arrays(self, rhs.0, |l, r| l & !r)
            }
        }

        impl<const N: usize> BitDifference for [$ty; N] {
            type Output = Self;

            fn difference(self, rhs: Self) -> Self {
                crate::map2_arrays(self, rhs, |l, r| l & !r)
            }
        }

        impl<const N: usize> BitDifference<Complement<[$ty; N]>> for [$ty; N] {
            type Output = Self;

            fn difference(self, rhs: Complement<Self>) -> Self {
                crate::map2_arrays(self, rhs.0, |l, r| l & r)
            }
        }

        impl<const N: usize> BitSubset for [$ty; N] {
            fn is_subset_of(&self, rhs: &Self) -> bool {
                self.iter().zip(rhs).all(|(lhs, rhs)| *lhs & !*rhs == 0)
            }
        }

        impl<const N: usize> BitSubset<Complement<[$ty; N]>> for [$ty; N] {
            fn is_subset_of(&self, rhs: &Complement<Self>) -> bool {
                self.iter().zip(&rhs.0).all(|(lhs, rhs)| *lhs & *rhs == 0)
            }
        }

        impl<const N: usize> BitDisjoint for [$ty; N] {
            fn is_disjoint(&self, rhs: &Self) -> bool {
                self.iter().zip(rhs).all(|(lhs, rhs)| *lhs & *rhs == 0)
            }
        }

        impl<const N: usize> BitDisjoint<Complement<[$ty; N]>> for [$ty; N] {
            fn is_disjoint(&self, rhs: &Complement<Self>) -> bool {
                self.iter().zip(&rhs.0).all(|(lhs, rhs)| *lhs & !*rhs == 0)
            }
        }
    };

    ($ty:ty : $size:literal, $($tail:tt)+) => {
        impl_for_primitive!($ty : $size);
        impl_for_primitive!($($tail)+);
    }
}

impl_for_primitive!(u8 : 8, u16 : 16, u32 : 32, u64 : 64, u128 : 128);

impl BitEmpty for bool {
    fn empty() -> bool {
        false
    }
}

impl BitTest for bool {
    #[inline]
    fn test(&self, idx: usize) -> bool {
        if idx == 0 {
            *self
        } else {
            false
        }
    }
}

impl BitTestAll for bool {
    #[inline]
    fn test_all(&self) -> bool {
        usize::MAX == 0 && *self
    }
}

impl BitTestNone for bool {
    #[inline]
    fn test_none(&self) -> bool {
        !*self
    }
}

impl BitSetLimit for bool {
    const MAX_SET_INDEX: usize = 0;
}

impl BitSet for bool {
    #[inline]
    unsafe fn set_unchecked(&mut self, idx: usize) {
        debug_assert_eq!(idx, 0);
        *self = true;
    }
}

impl BitUnsetLimit for bool {
    const MAX_UNSET_INDEX: usize = usize::MAX;
}

impl BitUnset for bool {
    #[inline]
    unsafe fn unset_unchecked(&mut self, idx: usize) {
        if idx == 0 {
            *self = false;
        }
    }
}

impl BitSearch for bool {
    fn find_first_set(&self, lower_bound: usize) -> Option<usize> {
        if lower_bound > 0 {
            return None;
        }

        if *self {
            Some(0)
        } else {
            None
        }
    }
}

impl BitComplement for bool {
    type Output = Complement<bool>;

    fn complement(self) -> Complement<Self> {
        Complement(self)
    }
}

impl BitUnion for bool {
    type Output = Self;

    fn union(self, rhs: Self) -> Self {
        self || rhs
    }
}

impl BitUnion<Complement<bool>> for bool {
    type Output = Complement<Self>;

    fn union(self, rhs: Complement<Self>) -> Complement<Self> {
        Complement(rhs.0 && (!self))
    }
}

impl BitIntersection for bool {
    type Output = Self;

    fn intersection(self, rhs: Self) -> Self {
        self && rhs
    }
}

impl BitIntersection<Complement<bool>> for bool {
    type Output = Self;

    fn intersection(self, rhs: Complement<Self>) -> Self {
        self && (!rhs.0)
    }
}

impl BitDifference for bool {
    type Output = Self;

    fn difference(self, rhs: Self) -> Self {
        self && (!rhs)
    }
}

impl BitDifference<Complement<bool>> for bool {
    type Output = Self;

    fn difference(self, rhs: Complement<Self>) -> Self {
        self && rhs.0
    }
}

impl BitSubset for bool {
    fn is_subset_of(&self, rhs: &Self) -> bool {
        !*self || *rhs
    }
}

impl BitSubset<Complement<bool>> for bool {
    fn is_subset_of(&self, rhs: &Complement<Self>) -> bool {
        !*self || !rhs.0
    }
}

impl BitDisjoint for bool {
    fn is_disjoint(&self, rhs: &Self) -> bool {
        !*self || !*rhs
    }
}

impl BitDisjoint<Complement<bool>> for bool {
    fn is_disjoint(&self, rhs: &Complement<Self>) -> bool {
        !*self || rhs.0
    }
}