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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
use std::cmp::Ordering;
use std::collections::{hash_set, BinaryHeap, HashMap, HashSet};
use std::hash::{Hash, Hasher};
use std::ops::{Generator, GeneratorState};
use std::pin::Pin;

use either::Either;
use frozenset::{Freeze, FrozenSet};
use itertools::Itertools;

use crate::internal_util::{choose, graph_traverse, map_reduce, peek, peek_set, pop};

#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct InconsistencyError(pub &'static str);

/// Represents the board geometry for traditional minesweeper, where the board
/// has fixed dimensions and a fixed total number of mines.
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MineCount {
    /// Total number of cells on the board; all cells contained in rules + all
    /// 'uncharted' (unknown) cells.
    pub total_cells: usize,
    /// Total number of mines contained within all cells
    pub total_mines: usize,
}

/// A type that can be used to uniquely identify a cell on the board.
///
/// Automatically implemented for any eligible type.
pub trait Cell: Clone + Hash + Eq {}
impl<T: Clone + Hash + Eq> Cell for T {
}

/// Either information about the board, or the probability of any unknown cell
/// being a mine (if the total number of mines is not known).
///
/// You shouldn't need to construct this type directly - use the [`Into`]
/// implementation of [`MineCount`] or [`f64`]
#[derive(Debug, Clone, Copy, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MinePrevalence(
    #[cfg_attr(feature = "serde", serde(with = "either::serde_untagged"))]
    pub  Either<MineCount, f64>,
);
impl From<MineCount> for MinePrevalence {
    fn from(count: MineCount) -> Self {
        Self(Either::Left(count))
    }
}
impl From<f64> for MinePrevalence {
    fn from(prob: f64) -> Self {
        Self(Either::Right(prob))
    }
}

/// A basic representation of an axiom from a minesweeper game; N mines
/// contained within a set of M cells.
///
/// Only used during the very early stages of the algorithm; quickly converted
/// into an [`InternalRule`]
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Rule<T: Cell> {
    /// How many mines
    pub(crate) num_mines: usize,
    /// Which cells; each 'cell' is a unique identifying tag that represents
    /// that cell (any type implementing [`Cell`])
    pub(crate) cells: FrozenSet<T>,
}
impl<T: Cell> Rule<T> {
    pub fn new(num_mines: usize, cells: impl IntoIterator<Item = T>) -> Self {
        Self {
            num_mines,
            cells: cells.into_iter().collect(),
        }
    }

    pub(crate) fn condensed(
        &self,
        rule_supercells_map: &HashMap<Self, FrozenSet<FrozenSet<T>>>,
    ) -> Result<InternalRule<T>, InconsistencyError> {
        InternalRule::new(
            self.num_mines,
            rule_supercells_map.get(self).cloned().unwrap_or_default(),
            self.cells.len(),
        )
    }
}

/// Analogue of [`Rule`], but containing 'super-cells' (sets of 'ordinary' cells
/// which only ever appear together).
///
/// This is the main representation of a rule used by the algorithm.
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub struct InternalRule<T: Cell> {
    #[cfg(test)]
    pub num_mines: usize,
    #[cfg(not(test))]
    /// The total number of mines
    num_mines: usize,
    #[cfg(test)]
    pub num_cells: usize,
    #[cfg(not(test))]
    /// The total number of base cells
    num_cells: usize,
    #[cfg(test)]
    pub super_cells: FrozenSet<FrozenSet<T>>,
    #[cfg(not(test))]
    /// The set of super-cells; each supercell is a set of base cells
    super_cells: FrozenSet<FrozenSet<T>>,
}
impl<T: Cell> InternalRule<T> {
    pub fn new(
        num_mines: usize,
        super_cells: FrozenSet<FrozenSet<T>>,
        num_cells: usize,
    ) -> Result<Self, InconsistencyError> {
        if num_mines > num_cells {
            return Err(InconsistencyError("Rule with more mines than cells"));
        }
        Ok(Self {
            num_mines,
            num_cells,
            super_cells,
        })
    }

    /// If this rule is completely full or clear of mines, split into sub-rules
    /// for each super-cell
    pub fn decompose(self) -> Vec<Self> {
        if self.num_mines == 0 || self.num_mines == self.num_cells {
            // Degenerate rules (those containing no cells) disappear here
            self.super_cells
                .into_iter()
                .map(|cells| {
                    Self {
                        num_mines: if self.num_mines == 0 { 0 } else { cells.len() },
                        num_cells: cells.len(),
                        super_cells: [cells].into(),
                    }
                })
                .collect()
        } else {
            vec![self]
        }
    }

    /// Generate all possible mine permutations for this rule
    #[allow(clippy::needless_pass_by_value)]
    pub fn permute(&self) -> HashSet<Permutation<T>> {
        pub fn permute<T: Cell>(
            result: &mut HashSet<Permutation<T>>,
            count: usize,
            cells: &[FrozenSet<T>],
            in_progress: HashSet<(FrozenSet<T>, usize)>,
        ) {
            if count == 0 {
                result.insert(Permutation::new(
                    in_progress
                        .union(&cells.iter().map(|cell| (cell.clone(), 0)).collect())
                        .cloned()
                        .collect(),
                ));
            } else {
                let remaining_size = cells.iter().map(|cell| cell.len()).sum::<usize>();
                match remaining_size.cmp(&count) {
                    Ordering::Less => (),
                    Ordering::Equal => {
                        result.insert(Permutation::new(
                            in_progress
                                .union(
                                    &cells
                                        .iter()
                                        .map(|cell| (cell.clone(), cell.len()))
                                        .collect(),
                                )
                                .cloned()
                                .collect(),
                        ));
                    },
                    Ordering::Greater => {
                        let (cell, rest) = cells.split_first().expect(
                            "Must always have at least one element to reach this point",
                        );
                        for multiplicity in (0..=count.min(cell.len())).rev() {
                            permute(
                                result,
                                count - multiplicity,
                                rest,
                                in_progress
                                    .union(&[(cell.clone(), multiplicity)].into())
                                    .cloned()
                                    .collect(),
                            );
                        }
                    },
                }
            }
        }
        let mut result = HashSet::new();
        let cells = self.super_cells.iter().cloned().collect_vec();
        permute(&mut result, self.num_mines, &cells, HashSet::new());
        result
    }

    /// Check if this rule is a sub-rule of `other`
    ///
    /// Being a sub-rule means that this rule's cells are a subset of the other
    /// rule's cells. Equivalent rules are sub-rules of each other.
    pub fn is_subrule_of(&self, other: &Self) -> bool {
        self.super_cells.is_subset(&other.super_cells)
            && self.num_mines <= other.num_mines
    }

    /// If the other rule is a sub-rule of this one, return a new rule
    /// representing the difference between the two rules.
    pub fn subtract(&self, other: &Self) -> Result<Self, InconsistencyError> {
        if !other.is_subrule_of(self) {
            return Err(InconsistencyError("Subtraction of non-subrule"));
        }
        let super_cells = self
            .super_cells
            .difference(&other.super_cells)
            .cloned()
            .collect();
        Self::new(
            self.num_mines - other.num_mines,
            super_cells,
            self.num_cells - other.num_cells,
        )
    }

    /// Is this rule trivial (i.e. is there only one permutation)?
    pub fn is_trivial(&self) -> bool {
        self.super_cells.len() == 1
    }

    /// Build a `FrontTally` from this (trivial) rule
    pub fn tally(&self) -> FrontTally<T> {
        assert!(self.is_trivial());
        FrontTally::from_rule(self)
    }

    pub fn new_count_cells(
        num_mines: usize,
        super_cells: FrozenSet<FrozenSet<T>>,
    ) -> Result<Self, InconsistencyError> {
        let num_cells = super_cells.iter().map(|s| s.len()).sum();
        Self::new(num_mines, super_cells, num_cells)
    }

    #[cfg(test)]
    /// Helper method for testing
    pub fn from_data(
        num_mines: usize,
        super_cells: impl Iterator<Item = impl Iterator<Item = T>>,
    ) -> Result<Self, InconsistencyError> {
        Self::new_count_cells(
            num_mines,
            super_cells.map(Iterator::collect).collect::<FrozenSet<_>>(),
        )
    }
}

/// Tabulation of per-cell mine frequencies
#[derive(Debug, Clone)]
pub struct FrontTally<T: Cell> {
    /// Number of mines in configuration -> subtally of configurations with that
    /// many mines
    pub(crate) subtallies: HashMap<usize, FrontSubtally<T>>,
}
impl<T: Cell> FrontTally<T> {
    pub fn new() -> Self {
        Self {
            subtallies: HashMap::new(),
        }
    }

    pub fn new_with_data(subtallies: HashMap<usize, FrontSubtally<T>>) -> Self {
        Self {
            subtallies,
        }
    }

    /// Tally all possible configurations for a front (ruleset)
    ///
    /// Note that the tallies for different total numbers of mines must be
    /// maintained separately, as these will be given different statistical
    /// weights later on.
    pub fn tally(
        &mut self,
        front: &PermutedRuleset<T>,
    ) -> Result<(), InconsistencyError> {
        for config in front.enumerate() {
            self.subtallies
                .entry(config.k())
                .or_insert_with(FrontSubtally::new)
                .add(&config);
        }

        if self.subtallies.is_empty() {
            return Err(InconsistencyError(
                "Mine front has no possible configurations",
            ));
        }

        self.finalise();
        Ok(())
    }

    /// Finalise all sub-tallies (convert running totals to
    /// probabilities/expected values)
    pub fn finalise(&mut self) {
        for subtally in self.subtallies.values_mut() {
            subtally.finalise();
        }
    }

    /// Minimum number of mines found among all configurations
    pub fn min_mines(&self) -> usize {
        self.subtallies
            .keys()
            .copied()
            .min()
            .expect("Should always have at least one sub-tally")
    }

    /// Maximum number of mines found among all configurations
    pub fn max_mines(&self) -> usize {
        self.subtallies
            .keys()
            .copied()
            .max()
            .expect("Should always have at least one sub-tally")
    }

    /// Whether all configurations have the same number of mines (simplifies
    /// statistical weighting later)
    pub fn is_static(&self) -> bool {
        self.subtallies.len() == 1
    }

    /// Normalise sub-tally totals into relative weights such that sub-totals
    /// remain proportional to each other, and the grand total across all
    /// sub-tallies is 1
    pub fn normalise(&mut self) {
        let total = self
            .subtallies
            .values()
            .map(|subtally| subtally.total)
            .sum::<f64>();
        for subtally in self.subtallies.values_mut() {
            assert!(!subtally.normalised, "Sub-tally already normalised");
            subtally.total /= total;
            subtally.normalised = true;
        }
    }

    /// Calculate the per-cell expected mine values, summed and weighted across
    /// all sub-tallies
    pub fn collapse(mut self) -> HashMap<Either<FrozenSet<T>, UnchartedCell>, f64> {
        self.normalise();
        map_reduce(self.subtallies.values(), FrontSubtally::collapse, |data| {
            data.into_iter().sum::<f64>()
        })
    }

    /// Scale each sub-tally's weight/total according to `scale_fn`
    pub fn scale_weights(
        &mut self,
        scale_fn: impl Fn(usize) -> Result<f64, InconsistencyError>,
    ) -> Result<(), InconsistencyError> {
        for (&num_mines, subtally) in &mut self.subtallies {
            subtally.total *= scale_fn(num_mines)?;
        }
        Ok(())
    }

    /// Update each sub-tally's weight/total according to `weights`
    ///
    /// `weights`: `num_mines` -> new weight of the sub-tally for `num_mines`
    pub fn update_weights(&mut self, weights: &HashMap<usize, f64>) {
        for (num_mines, subtally) in &mut self.subtallies {
            subtally.total = weights.get(num_mines).copied().unwrap_or(0.0);
        }
    }

    /// Tally a trivial rule
    pub fn from_rule(rule: &InternalRule<T>) -> Self {
        assert!(rule.is_trivial());
        #[allow(clippy::cast_precision_loss)]
        Self::new_with_data(
            [(
                rule.num_mines,
                FrontSubtally::from_data(
                    choose(rule.num_cells, rule.num_mines) as f64,
                    [(
                        Either::Left(
                            peek_set(&rule.super_cells).expect(
                                "Should always contain at least one super-cell",
                            ),
                        ),
                        rule.num_mines as f64,
                    )]
                    .into(),
                ),
            )]
            .into(),
        )
    }

    /// Create a meta-tally representing the mine distribution of all 'other'
    /// cells.
    ///
    /// - `num_uncharted_cells`: The number of 'other' cells
    /// - `mine_totals`: A mapping suitable for `update_weights`; `num_mines` ->
    ///   new weight of the sub-tally for `num_mines`
    #[allow(clippy::cast_precision_loss)]
    pub fn for_other(
        num_uncharted_cells: usize,
        mine_totals: &HashMap<usize, f64>,
    ) -> Self {
        let meta_cell = UnchartedCell::new(num_uncharted_cells);
        Self::new_with_data(
            mine_totals
                .iter()
                .map(|(&num_mines, &total)| {
                    (
                        num_mines,
                        FrontSubtally::from_data(
                            total,
                            [(Either::Right(meta_cell), num_mines as f64)].into(),
                        ),
                    )
                })
                .collect(),
        )
    }
}

impl<T: Cell> Default for FrontTally<T> {
    fn default() -> Self {
        Self::new()
    }
}

/// Sub-tabulation of per-cell mine frequencies
#[derive(Debug, Clone)]
pub struct FrontSubtally<T: Cell> {
    /// 'weight' of this sub-tally among the others in the [`FrontTally`].
    /// Initially will be a raw count of the configurations in this sub-tally,
    /// but later will be skewed due to weighting and normalising factors.
    pub(crate) total: f64,
    /// # Pre-finalising
    ///
    /// Per-cell mine counts
    ///
    /// Super-cell -> total number of mines in the super-cell, summed across all
    /// configurations
    ///
    /// # Post-finalising
    ///
    /// Mine prevalence
    ///
    /// Super-cell -> Expected number of mines in the super-cell
    tally: HashMap<Either<FrozenSet<T>, UnchartedCell>, f64>,
    finalised: bool,
    normalised: bool,
}
impl<T: Cell> FrontSubtally<T> {
    pub fn new() -> Self {
        Self {
            total: 0.0,
            tally: HashMap::new(),
            finalised: false,
            normalised: false,
        }
    }

    /// Add a configuration to the tally
    #[allow(clippy::cast_precision_loss)]
    pub fn add(&mut self, config: &Permutation<T>) {
        let mult = config.multiplicity() as f64; // Weight by multiplicity
        self.total += mult;
        for (super_cell, &n) in &config.mapping {
            let n = n as f64;
            self.tally
                .entry(Either::Left(super_cell.clone()))
                .and_modify(|tally| *tally += n * mult)
                .or_insert(n * mult);
        }
    }

    /// After all configurations have been summed, compute relative prevalence
    /// from totals.
    pub fn finalise(&mut self) {
        for value in self.tally.values_mut() {
            *value /= self.total;
        }
        self.finalised = true;
    }

    /// Helper function for [`FrontTally::collapse()`]; emit all cell expected
    /// mine values weighted by this sub-tally's weight
    pub fn collapse(
        &self,
    ) -> impl Iterator<Item = (Either<FrozenSet<T>, UnchartedCell>, f64)> + '_ {
        self.tally.iter().map(|(super_cell, &expected_mines)| {
            (super_cell.clone(), self.total * expected_mines)
        })
    }

    /// Build a sub-tally manually. Tally data must already be finalised.
    pub fn from_data(
        total: f64,
        tally: HashMap<Either<FrozenSet<T>, UnchartedCell>, f64>,
    ) -> Self {
        Self {
            total,
            tally,
            finalised: true,
            normalised: false,
        }
    }
}

impl<T: Cell> Default for FrontSubtally<T> {
    fn default() -> Self {
        Self::new()
    }
}

/// A meta-cell object that represents all the 'other' cells on the board, that
/// aren't explicitly mentioned in a rule. See [`expand_cells()`].
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct UnchartedCell {
    size: usize,
}
impl UnchartedCell {
    pub fn new(size: usize) -> Self {
        Self {
            size,
        }
    }

    /// Only appear once in the solution, regardless of size. However, don't
    /// appear at all if there are in fact no 'other' cells
    pub fn iter(self) -> impl Iterator<Item = ()> {
        if self.size == 0 {
            None.into_iter()
        } else {
            Some(()).into_iter()
        }
    }

    pub fn len(self) -> usize {
        self.size
    }
}

/// A meta-tally to represent when all 'other' cells are uncounted and assumed
/// to have a fixed mine probability
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct FixedProbTally(pub(crate) f64);
impl FixedProbTally {
    pub fn collapse<T: Cell>(
        self,
    ) -> HashMap<Either<FrozenSet<T>, UnchartedCell>, f64> {
        [(Either::Right(UnchartedCell::new(1)), self.0)].into()
    }
}
impl Eq for FixedProbTally {
}
impl Hash for FixedProbTally {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.0.to_bits().hash(state);
    }
}

/// Manager object that performs the 'logical deduction' phase of the solver;
/// maintains a set of active rules, tracks which rules overlap with other
/// rules, and iteratively reduces them until no further reductions are possible
#[derive(Debug, Clone)]
pub struct RuleReducer<T: Cell> {
    active_rules: HashSet<InternalRule<T>>,
    cell_rules_map: CellRulesMap<T>,
    candidate_reductions: BinaryHeap<Reduceable<T>>,
}
impl<T: Cell> RuleReducer<T> {
    pub fn new() -> Self {
        Self {
            active_rules: HashSet::new(),
            cell_rules_map: CellRulesMap::new(),
            candidate_reductions: BinaryHeap::new(),
        }
    }

    /// Add a set of rules to the ruleset
    pub fn add_rules(
        &mut self,
        rules: impl Iterator<Item = InternalRule<T>>,
    ) -> Result<(), InconsistencyError> {
        for rule in rules {
            self.add_rule(rule)?;
        }
        Ok(())
    }

    /// Add a new rule to the active ruleset
    pub fn add_rule(
        &mut self,
        rule: InternalRule<T>,
    ) -> Result<(), InconsistencyError> {
        for base_rule in rule.decompose() {
            self.add_base_rule(base_rule)?;
        }
        Ok(())
    }

    /// Helper for adding a rule
    pub fn add_base_rule(
        &mut self,
        rule: InternalRule<T>,
    ) -> Result<(), InconsistencyError> {
        self.active_rules.insert(rule.clone());
        self.update_reduceables(&rule)?;
        self.cell_rules_map.add_rule(rule);
        Ok(())
    }

    pub fn add_reduceable(&mut self, reduceable: Reduceable<T>) {
        self.candidate_reductions.push(reduceable);
    }

    /// Update the index of which rules are reduceable from others
    pub fn update_reduceables(
        &mut self,
        rule: &InternalRule<T>,
    ) -> Result<(), InconsistencyError> {
        let overlapping = self.cell_rules_map.overlapping_rules(rule);
        for overlapping_rule in overlapping {
            if overlapping_rule.is_subrule_of(rule) {
                // This path is taken if the rules are equivalent
                self.add_reduceable(Reduceable::new(rule.clone(), overlapping_rule)?);
            } else if rule.is_subrule_of(&overlapping_rule) {
                // This path is taken if the overlapping rule is a subrule of
                // the new rule
                self.add_reduceable(Reduceable::new(overlapping_rule, rule.clone())?);
            }
        }
        Ok(())
    }

    /// Remove a rule from the active ruleset/index, presumably because it has
    /// been reduced away
    pub fn remove_rule(&mut self, rule: &InternalRule<T>) {
        self.active_rules.remove(rule);
        self.cell_rules_map.remove_rule(rule);
        // We can't remove the inner contents of candidate_reductions; instead,
        // items are checked for validity when they are popped off the heap
    }

    /// Perform a reduction
    pub fn reduce(
        &mut self,
        reduction: &Reduceable<T>,
    ) -> Result<(), InconsistencyError> {
        let reduced_rule = reduction.reduce()?;
        self.remove_rule(&reduction.super_rule);
        self.add_rule(reduced_rule)
    }

    /// Perform reductions until no further reductions are possible
    pub fn reduce_all(
        mut self,
    ) -> Result<HashSet<InternalRule<T>>, InconsistencyError> {
        while let Some(reduction) = self.candidate_reductions.pop() {
            if !reduction.contained_within(&self.active_rules) {
                continue;
            }
            self.reduce(&reduction)?;
        }
        Ok(self.active_rules)
    }
}

#[derive(Debug, Clone)]
/// A utility struct mapping cells to the rules they appear in
pub struct CellRulesMap<T: Cell> {
    /// Super-cell -> Set of rules containing that super-cell
    map: HashMap<FrozenSet<T>, HashSet<InternalRule<T>>>,
    rules: HashSet<InternalRule<T>>,
}
impl<T: Cell> CellRulesMap<T> {
    pub fn new() -> Self {
        Self {
            map: HashMap::new(),
            rules: HashSet::new(),
        }
    }

    pub fn add_rules(&mut self, rules: impl Iterator<Item = InternalRule<T>>) {
        for rule in rules {
            self.add_rule(rule);
        }
    }

    pub fn add_rule(&mut self, rule: InternalRule<T>) {
        for super_cell in rule.super_cells.iter() {
            self.map
                .entry(super_cell.clone())
                .or_default()
                .insert(rule.clone());
        }
        self.rules.insert(rule);
    }

    pub fn remove_rule(&mut self, rule: &InternalRule<T>) {
        self.rules.remove(rule);
        for super_cell in rule.super_cells.iter() {
            if let Some(set) = self.map.get_mut(super_cell) {
                set.remove(rule);
            }
        }
    }

    /// Return the set of rules that overlap `rule`, i.e. that have at least one
    /// cell in common
    pub fn overlapping_rules(
        &self,
        rule: &InternalRule<T>,
    ) -> HashSet<InternalRule<T>> {
        let mut res: HashSet<_> = rule
            .super_cells
            .iter()
            .flat_map(|cell| self.map.get(cell).cloned().unwrap_or_default())
            .collect();
        res.remove(rule);
        res
    }

    /// Return pairs of all rules that overlap each other; each pair is
    /// represented twice (`(a, b)` and `(b, a)`) to support processing of
    /// asymmetric relationships
    pub fn interference_edges(&self) -> HashSet<(InternalRule<T>, InternalRule<T>)> {
        self.rules
            .iter()
            .flat_map(|rule| {
                self.overlapping_rules(rule)
                    .into_iter()
                    .map(|other| (rule.clone(), other))
            })
            .collect()
    }

    /// Partition the ruleset into disjoin sub-rulesets of related rules.
    ///
    /// That is, all rules in a sub-ruleset are related to each other in some
    /// way through some number of overlaps, and no rules from separate
    /// sub-rulesets overlap each other. Returns a set of partitions, each a set
    /// of rules.
    pub fn partition(&self) -> HashSet<FrozenSet<InternalRule<T>>> {
        let mut related_rules = self
            .rules
            .iter()
            .map(|rule| (rule.clone(), self.overlapping_rules(rule)))
            .collect::<HashMap<_, _>>();
        let mut partitions = HashSet::new();
        while let Some(start) = peek(&related_rules) {
            let partition = graph_traverse(&related_rules, &start);
            for rule in &partition {
                related_rules.remove(rule);
            }
            partitions.insert(partition.freeze());
        }
        partitions
    }
}

#[derive(Debug, Clone, Hash, PartialEq, Eq)]
/// During the logical deduction phase; if all rules are nodes in a graph, this
/// represents a directed edge in that graph indicating that `super_rule` can be
/// reduced by `sub_rule`
pub struct Reduceable<T: Cell> {
    super_rule: InternalRule<T>,
    sub_rule: InternalRule<T>,
}
impl<T: Cell> Reduceable<T> {
    pub fn new(
        super_rule: InternalRule<T>,
        sub_rule: InternalRule<T>,
    ) -> Result<Self, InconsistencyError> {
        if false {
            return Err(InconsistencyError("shut up clippy"));
        }
        // if !sub_rule.is_subrule_of(&super_rule) {
        //     return Err(InconsistencyError(
        //         "`sub_rule` is not a sub-rule of `super_rule`",
        //     ));
        // }
        Ok(Self {
            super_rule,
            sub_rule,
        })
    }

    /// Calculate the attractiveness of this reduction.
    ///
    /// Favour reductions that involve bigger rules, and amongst same-sized
    /// rules, those that yield a number of mines towards the extremes; such
    /// rules have fewer permutations
    pub fn metric(&self) -> (usize, usize, f64) {
        let num_reduced_cells = self.super_rule.num_cells - self.sub_rule.num_cells;
        let num_reduced_mines = self.super_rule.num_mines - self.sub_rule.num_mines;
        #[allow(clippy::cast_precision_loss)]
        (
            self.super_rule.num_cells,
            self.sub_rule.num_cells,
            (num_reduced_mines as f64 - 0.5 * num_reduced_cells as f64).abs(),
        )
    }

    /// Perform the reduction
    pub fn reduce(&self) -> Result<InternalRule<T>, InconsistencyError> {
        self.super_rule.subtract(&self.sub_rule)
    }

    pub fn contained_within(&self, rules: &HashSet<InternalRule<T>>) -> bool {
        rules.contains(&self.super_rule) && rules.contains(&self.sub_rule)
    }
}
impl<T: Cell> PartialOrd for Reduceable<T> {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        self.metric().partial_cmp(&other.metric())
    }
}
impl<T: Cell> Ord for Reduceable<T> {
    fn cmp(&self, other: &Self) -> Ordering {
        self.partial_cmp(other).unwrap()
    }
}

/// A set of rules and the available permutations for each, eliminating
/// permutations which are mutually-inconsistent across the ruleset
#[derive(Debug, Clone)]
pub struct PermutedRuleset<T: Cell> {
    rules: HashSet<InternalRule<T>>,
    cell_rules_map: CellRulesMap<T>,
    #[cfg(test)]
    pub permu_map: HashMap<InternalRule<T>, PermutationSet<T>>,
    #[cfg(not(test))]
    permu_map: HashMap<InternalRule<T>, PermutationSet<T>>,
}
impl<T: Cell> PermutedRuleset<T> {
    pub fn new_with_permu_map(
        rules: HashSet<InternalRule<T>>,
        permu_map: HashMap<InternalRule<T>, PermutationSet<T>>,
    ) -> Self {
        let mut cell_rules_map = CellRulesMap::new();
        cell_rules_map.add_rules(rules.iter().cloned());
        Self {
            rules,
            cell_rules_map,
            permu_map,
        }
    }

    pub fn new(rules: HashSet<InternalRule<T>>) -> Self {
        let permu_map = rules
            .iter()
            .map(|rule| (rule.clone(), PermutationSet::from_rule(rule)))
            .collect();
        Self::new_with_permu_map(rules, permu_map)
    }

    pub fn new_as_subset(
        rules: HashSet<InternalRule<T>>,
        permu_map: &HashMap<InternalRule<T>, PermutationSet<T>>,
    ) -> Self {
        let permu_map = rules
            .iter()
            .map(|rule| (rule.clone(), permu_map[rule].clone()))
            .collect();
        Self::new_with_permu_map(rules, permu_map)
    }

    /// Determine what permutations are possible for each rule, taking into
    /// account the constraints of all overlapping rules. Eliminate impossible
    /// permutations
    pub fn cross_eliminate(&mut self) -> Result<(), InconsistencyError> {
        let mut interferences = self.cell_rules_map.interference_edges();

        // We can't simply iterate through `interferences`, as eliminating a permutation
        // in a rule may in turn invalidate permutations in other overlapping rules that
        // have already been processed, thus causing a cascade effect.
        while let Some((rule, overlapping)) = pop(&mut interferences) {
            let mut changed = false;
            // Copy the iterable so we can modify the original
            for permutation in self.permu_map[&rule].permutations.clone() {
                if self.permu_map[&overlapping]
                    .get_compatible(&permutation)
                    .is_empty()
                {
                    // This permutation has no compatible permutation in the overlapping
                    // rule. Thus, it can never occur.
                    self.permu_map
                        .get_mut(&rule)
                        .expect("Definitely exists, as we have already used it")
                        .remove(&permutation);
                    changed = true;
                }
            }

            if self.permu_map[&rule].is_empty() {
                // We have eliminated all possible configurations for this rule.
                return Err(InconsistencyError(
                    "Rule is constrained such that it has no valid mine permutations",
                ));
            } else if changed {
                for other_rule in self.cell_rules_map.overlapping_rules(&rule) {
                    interferences.insert((other_rule, rule.clone()));
                }
            }
        }
        Ok(())
    }

    /// After computing the possible permutations of the rules, analyse and
    /// decompose rules into sub-rules, if possible. This can eliminate
    /// dependencies among the initial set of rules, and thus potentially split
    /// what would have been one rule-front into several.
    ///
    /// This is analogous to the previous `reduce_rules` step, but with more
    /// advanced logical analysis -- exploiting information gleaned from the
    /// permutation phase
    pub fn rereduce(&mut self) -> Result<(), InconsistencyError> {
        // Convincing conjectures:
        // - Among all cartesian decompositions from all rules, none will be reduceable
        //   with another (decomposed rules may have duplicates, though)
        // - Cartesian decomposition will have effectively re-reduced all rules in the
        //   set, even non-decomposed rules; there will be no possible reductions
        //   between a decomposed rule and an original rule
        // - Re-permuting amongs the decomposed ruleset will produce the same
        //   permutation sets

        let mut superseded_rules = HashSet::new();
        let mut decompositions = HashMap::new();
        for (rule, permu_set) in &self.permu_map {
            let decomp = permu_set.clone().decompose();
            if decomp.len() > 1 {
                superseded_rules.insert(rule.clone());
                decompositions.extend(
                    decomp.iter().map(|dc| (dc.super_cells.clone(), dc.clone())),
                );
            }
        }

        for rule in &superseded_rules {
            self.remove_rule(rule);
        }
        for permu_set in decompositions.into_values() {
            self.add_permu_set(permu_set)?;
        }
        Ok(())
    }

    pub fn remove_rule(&mut self, rule: &InternalRule<T>) {
        self.rules.remove(rule);
        self.cell_rules_map.remove_rule(rule);
        self.permu_map.remove(rule);
    }

    /// Add a 'decomposed' rule to the ruleset
    pub fn add_permu_set(
        &mut self,
        permu_set: PermutationSet<T>,
    ) -> Result<(), InconsistencyError> {
        let rule = permu_set.to_rule()?;
        self.rules.insert(rule.clone());
        self.cell_rules_map.add_rule(rule.clone());
        self.permu_map.insert(rule, permu_set);
        Ok(())
    }

    /// Return a [`PermutedRuleset`] built from this one containing only a
    /// subset of rules
    pub fn filter(&self, rule_subset: HashSet<InternalRule<T>>) -> Self {
        Self::new_as_subset(rule_subset, &self.permu_map)
    }

    /// Split the ruleset into combinatorially-independent 'fronts'
    pub fn split_fronts(&self) -> Vec<Self> {
        self.cell_rules_map
            .partition()
            .into_iter()
            .map(|rule_subset| self.filter(rule_subset.thaw()))
            .collect()
    }

    /// Is this ruleset trivial? I.E. does it contain only one rule?
    pub fn is_trivial(&self) -> bool {
        self.rules.len() == 1
    }

    /// Return the singleton rule of this ruleset, if it is trivial
    pub fn trivial_rule(&self) -> InternalRule<T> {
        assert!(self.is_trivial());
        let singleton = self.rules.iter().next().unwrap().clone();
        assert!(singleton.is_trivial());
        singleton
    }

    /// Enumerate all possible mine configurations for this ruleset
    pub fn enumerate(&self) -> impl Iterator<Item = Permutation<T>> + '_ {
        EnumerationState::new(self).enumerate()
    }
}

#[derive(Debug, Clone)]
pub struct EnumerationState<'a, T: Cell> {
    fixed: HashSet<Permutation<T>>,
    ruleset: &'a PermutedRuleset<T>,
    free: HashMap<InternalRule<T>, HashSet<Permutation<T>>>,
    compatible_rule_index:
        HashMap<(Permutation<T>, InternalRule<T>), PermutationSet<T>>,
}
impl<'a, T: Cell> EnumerationState<'a, T> {
    pub fn new(ruleset: &'a PermutedRuleset<T>) -> Self {
        let mut rv = Self {
            fixed: HashSet::new(),
            ruleset,
            free: ruleset
                .permu_map
                .iter()
                .map(|(rule, permu_set)| (rule.clone(), permu_set.permutations.clone()))
                .collect(),
            compatible_rule_index: HashMap::new(),
        };
        rv.build_compatibility_index();
        rv
    }

    /// Passes through to `self.ruleset.overlapping_rules`
    pub fn overlapping_rules(
        &self,
        rule: &InternalRule<T>,
    ) -> HashSet<InternalRule<T>> {
        self.ruleset.cell_rules_map.overlapping_rules(rule)
    }

    /// Compute the `compatible_rule_index` for this ruleset
    pub fn build_compatibility_index(&mut self) {
        let map = &self.ruleset.permu_map;
        self.compatible_rule_index = map
            .iter()
            .flat_map(|(rule, permu_set)| {
                permu_set.permutations.iter().flat_map(|permu| {
                    self.overlapping_rules(rule).into_iter().map(|overlapping| {
                        let compatible = map[&overlapping].get_compatible(permu);
                        ((permu.clone(), overlapping), compatible)
                    })
                })
            })
            .collect();
    }

    /// Have all rules been fixed? I.E. is the configuration complete?
    pub fn is_complete(&self) -> bool {
        self.free.is_empty()
    }

    /// 'Fix' a permutation for a given rule
    pub fn propagate(
        &self,
        rule: &InternalRule<T>,
        permu: &Permutation<T>,
    ) -> Option<Self> {
        let mut state = self.clone();
        state.force_propagate(rule, permu)?;
        Some(state)
    }

    /// 'Fix' a rule permutation and constrain the available permutations of all
    /// overlapping rules
    pub fn force_propagate(
        &mut self,
        rule: &InternalRule<T>,
        permu: &Permutation<T>,
    ) -> Option<()> {
        self.fixed.insert(permu.clone());
        self.free.remove(rule);

        // Constrain overlapping rules
        let mut cascades = Vec::new();
        for related_rule in self
            .overlapping_rules(rule)
            .into_iter()
            .filter(|rule| self.free.contains_key(rule))
            .collect_vec()
        // clone the iterator to avoid borrowing issues
        {
            // PermutationSet of the related rule, constrained *only* by the
            // rule/permutation just fixed
            let allowed_permus = self.compatible_rule_index
                [&(permu.clone(), related_rule.clone())]
                .clone();
            // Further constrain the related rule with this new set -- is now properly
            // constrained by all fixed rules
            self.free
                .get_mut(&related_rule)
                .unwrap()
                .retain(|permu| allowed_permus.permutations.contains(permu));

            let linked_permus = &self.free[&related_rule];
            if linked_permus.is_empty() {
                // conflict!
                return None;
            } else if linked_permus.len() == 1 {
                // only one possibility; constrain further
                cascades.push((
                    related_rule.clone(),
                    linked_permus.iter().next().unwrap().clone(),
                ));
            }
        }

        // Cascade if any other rules are not fully constrained
        for (related_rule, constrained_permu) in cascades {
            // May have already been constrained by prior recursive call
            if self.free.contains_key(&related_rule) {
                self.force_propagate(&related_rule, &constrained_permu)?;
            }
        }
        Some(())
    }

    /// Convert the set of fixed permutations into a single Permutation
    /// encompassing the mine configuration for the entire ruleset
    pub fn mine_config(&self) -> Option<Permutation<T>> {
        let mut iter = self.fixed.iter();
        let first = iter.next()?;
        Some(iter.fold(first.clone(), |acc, elem| acc.combine(elem)))
    }

    /// Recursively generate all possible mine configurations for the ruleset
    pub fn enumerate(self) -> impl Iterator<Item = Permutation<T>> + 'a {
        EnumerationStateEnumerate::new(self)
    }

    pub fn iter(&self) -> impl Iterator<Item = EnumerationState<'_, T>> + '_ {
        EnumerationStateIter::new(self)
    }
}

/// Pick an 'open' rule at random and 'fix' each possible permutation for that
/// rule. In this manner, when done recursively, all valid combinations are
/// enumerated.
#[derive(Debug, Clone)]
pub struct EnumerationStateIter<'a, T: Cell> {
    rule: InternalRule<T>,
    free_iter: hash_set::Iter<'a, Permutation<T>>,
    state: &'a EnumerationState<'a, T>,
}
impl<'a, T: Cell> EnumerationStateIter<'a, T> {
    pub fn new(state: &'a EnumerationState<'a, T>) -> Self {
        let rule = peek(&state.free).unwrap();
        Self {
            free_iter: state.free[&rule].iter(),
            rule,
            state,
        }
    }
}
impl<'a, T: Cell> Iterator for EnumerationStateIter<'a, T> {
    type Item = EnumerationState<'a, T>;

    fn next(&mut self) -> Option<Self::Item> {
        let permu = self.free_iter.next()?;
        self.state
            .propagate(&self.rule, permu)
            .or_else(|| self.next())
    }
}

/// Recursively generate all possible mine configurations for the ruleset
pub struct EnumerationStateEnumerate<'a, T: Cell> {
    inner: Pin<Box<dyn Generator<Yield = Permutation<T>, Return = ()> + 'a>>,
}
impl<'a, T: Cell> EnumerationStateEnumerate<'a, T> {
    pub fn new(state: EnumerationState<'a, T>) -> Self {
        Self {
            inner: Box::pin(static move || {
                if state.is_complete() {
                    yield state.mine_config().expect(
                        "Mine configuration should always be valid when \
                         state.is_complete()",
                    );
                } else {
                    let states = state.iter().collect_vec();
                    for next_state in states {
                        for val in next_state.enumerate() {
                            yield val;
                        }
                    }
                }
            }),
        }
    }
}

impl<T: Cell> Iterator for EnumerationStateEnumerate<'_, T> {
    type Item = Permutation<T>;

    fn next(&mut self) -> Option<Self::Item> {
        match self.inner.as_mut().resume(()) {
            GeneratorState::Yielded(val) => Some(val),
            GeneratorState::Complete(()) => None,
        }
    }
}

/// A set of permutations of the same cell set and total number of mines.
///
/// May be the full set of possible permutations, or a subset as particular
/// permutations are removed due to outside conflicts
#[derive(Debug, Clone)]
pub struct PermutationSet<T: Cell> {
    super_cells: FrozenSet<FrozenSet<T>>,
    k: usize,
    #[cfg(test)]
    pub(crate) permutations: HashSet<Permutation<T>>,
    #[cfg(not(test))]
    permutations: HashSet<Permutation<T>>,
    /// `false` if the set is the full set of possible permutations; `true` if
    /// the set has since been reduced. Accurate iff the `PermutationSet` was
    /// created with the full set of possibilities.
    constrained: bool,
}
impl<T: Cell> PermutationSet<T> {
    pub fn new(
        super_cells: FrozenSet<FrozenSet<T>>,
        k: usize,
        permutations: HashSet<Permutation<T>>,
    ) -> Self {
        Self {
            super_cells,
            k,
            permutations,
            constrained: false,
        }
    }

    /// Build from all possible permutations of the given rule
    pub fn from_rule(rule: &InternalRule<T>) -> Self {
        Self::new(rule.super_cells.clone(), rule.num_mines, rule.permute())
    }

    /// Back-construct an [`InternalRule`] from this `PermutationSet`
    ///
    /// Note that the set generated from `Self::from_rule(self.to_rule())` may
    /// not match this set, as it cannot account for permutations removed from
    /// this set due to conflicts
    pub fn to_rule(&self) -> Result<InternalRule<T>, InconsistencyError> {
        InternalRule::new_count_cells(self.k, self.super_cells.clone())
    }

    /// Remove a permutation from the set, for example because that permutation
    /// conflicts with another rule
    pub fn remove(&mut self, permu: &Permutation<T>) {
        self.constrained = true;
        self.permutations.remove(permu);
    }

    /// Is this `PermutationSet` empty?
    pub fn is_empty(&self) -> bool {
        self.permutations.is_empty()
    }

    /// Create a new `PermutationSet` which is constrained to only those
    /// [`Permutation`]s that are compatible with the given one
    pub fn get_compatible(&self, permu: &Permutation<T>) -> Self {
        Self::new(
            self.super_cells.clone(),
            self.k,
            self.permutations
                .iter()
                .filter(|p| p.is_compatible(permu))
                .cloned()
                .collect(),
        )
    }

    /// Create a new `PermutationSet` consisting of only the sub-setted
    /// permutations from this set
    pub fn subset(
        &self,
        sub_cells: FrozenSet<FrozenSet<T>>,
    ) -> Result<Self, InconsistencyError> {
        let permu_subset = self
            .permutations
            .iter()
            .map(|p| p.subset(sub_cells.iter().cloned()))
            .collect::<HashSet<_>>();
        let mut k_sub = permu_subset
            .iter()
            .map(Permutation::k)
            .collect::<HashSet<_>>();
        if !k_sub.len() == 1 {
            // Subset is not valid because permutations differ in the number of mines
            Err(InconsistencyError(
                "The permutations in the subset differ in the number of mines they \
                 contain",
            ))
        } else {
            Ok(Self::new(
                sub_cells,
                pop(&mut k_sub).expect("Checked to exist"),
                permu_subset,
            ))
        }
    }

    /// See `force_decompose()`; optimises if set has not been constrained,
    /// because full permu-sets decompose to themselves
    pub fn decompose(self) -> HashSet<Self> {
        if self.constrained {
            self.force_decompose(1)
        } else {
            [self].into()
        }
    }

    /// Determine if this `PermutationSet` is the cartesian product of N smaller
    /// permutation sets; return the decomposition if so
    ///
    /// This set may be constrained, in which case at least one subset of the
    /// decomposition (if one exists) will also be constrained
    pub fn force_decompose(self, k_floor: usize) -> HashSet<Self> {
        for k in k_floor..=(self.super_cells.len() / 2) {
            for cell_subset in self
                .super_cells
                .iter()
                .cloned()
                .combinations(k)
                .map(|comb| comb.into_iter().collect::<FrozenSet<_>>())
            {
                if let Some((permu_subset, permu_remainder)) = self.split(&cell_subset)
                {
                    // We've found a cartesian divisor!
                    let mut divisors: HashSet<_> = [permu_subset].into();
                    divisors.extend(permu_remainder.force_decompose(k));
                    return divisors;
                }
            }
        }
        // No cartesian divisor found; this set is prime
        [self].into()
    }

    /// Helper function for `force_decompose()`. Given a subset of cells, return
    /// the two `PermutationSet`s for the subset and the set of the remaining
    /// cells, provided `cell_subset` is a valid decomposor.
    pub fn split(&self, cell_subset: &FrozenSet<FrozenSet<T>>) -> Option<(Self, Self)> {
        let cell_remainder = self
            .super_cells
            .difference(cell_subset)
            .cloned()
            .collect::<FrozenSet<_>>();
        let permu_subset = self.subset(cell_subset.clone()).ok()?;
        // Early returned if the subset cannot be a cartesian divisor (i.e. the set of
        // permutations could not have originated from a single 'choose' operation)

        // Get the remaining `PermutationSet`s for each sub-permutation
        let mut permu_remainders = map_reduce(
            self.permutations.iter().cloned(),
            |p| [(p.subset(cell_subset.iter().cloned()), p)].into_iter(),
            |pv| {
                pv.into_iter()
                    .map(|p| p.subset(cell_remainder.iter().cloned()))
                    .collect::<FrozenSet<_>>()
            },
        )
        .into_values()
        .collect::<HashSet<_>>();
        if permu_remainders.len() > 1 {
            // Remaining subsets are not identical for each sub-permutation; not a
            // cartesian divisor
            None
        } else {
            let permu_remainders = pop(&mut permu_remainders)?;
            let k = permu_subset.k;
            Some((
                permu_subset,
                PermutationSet::new(
                    cell_remainder,
                    self.k - k,
                    permu_remainders.thaw(),
                ),
            ))
        }
    }
}
impl<T: Cell> PartialEq for PermutationSet<T> {
    fn eq(&self, other: &Self) -> bool {
        self.super_cells == other.super_cells
            && self.k == other.k
            && self.permutations == other.permutations
    }
}
impl<T: Cell> Eq for PermutationSet<T> {
}
impl<T: Cell> Hash for PermutationSet<T> {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.super_cells.hash(state);
        self.k.hash(state);
        self.permutations.clone().freeze().hash(state);
    }
}

/// A single permutation of N mines among a set of (super-)cells
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Permutation<T: Cell> {
    /// Super-cell -> Number of mines therein
    ///
    /// Cell set is determined implicitly from this mapping, so all cells in the
    /// set must have an entry - even if they have no mines
    mapping: HashMap<FrozenSet<T>, usize>,
}
impl<T: Cell> Hash for Permutation<T> {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.mapping.clone().freeze().hash(state);
    }
}
impl<T: Cell> Permutation<T> {
    pub fn new(mapping: HashMap<FrozenSet<T>, usize>) -> Self {
        Self {
            mapping,
        }
    }

    /// Return a sub-permutation containing only the cells in `sub_cells`
    pub fn subset(&self, sub_cells: impl Iterator<Item = FrozenSet<T>>) -> Self {
        Self::new(
            sub_cells
                .map(|cell| {
                    let val = self.mapping[&cell];
                    (cell, val)
                })
                .collect(),
        )
    }

    /// Is this permutation consistent with `other`? That is, do the cells they
    /// have in common have matching numbers of mines assigned.
    pub fn is_compatible(&self, other: &Self) -> bool {
        self.subset(self.cells().intersection(&other.cells()).cloned())
            == other.subset(self.cells().intersection(&other.cells()).cloned())
    }

    /// Return a new permutation by combining this permutation with `other`. The
    /// permutations must be compatible!
    pub fn combine(&self, other: &Self) -> Self {
        assert!(self
            .mapping
            .iter()
            .all(|(k, v)| !other.mapping.contains_key(k) || other.mapping[k] == *v));
        let mut mapping = self.mapping.clone();
        for (cell, num_mines) in &other.mapping {
            mapping.insert(cell.clone(), *num_mines);
        }
        Self::new(mapping)
    }

    /// Return the total number of mines in this permutation
    pub fn k(&self) -> usize {
        self.mapping.values().sum()
    }

    /// Return the set of cells in this permutation
    pub fn cells(&self) -> HashSet<FrozenSet<T>> {
        self.mapping.keys().cloned().collect()
    }

    /// Count the number of permutations this permutation would correspond to if
    /// each super-cell were broken up into singleton cells.
    ///
    /// E.G. N mines in a super-cell of M cells has (MCN) actual configurations.
    pub fn multiplicity(&self) -> usize {
        self.mapping
            .iter()
            .map(|(super_cell, &k)| choose(super_cell.len(), k))
            .product()
    }
}