mirror of
https://github.com/c-cube/sidekick.git
synced 2026-01-28 04:14:50 -05:00
fix test on 2.8.1
This commit is contained in:
parent
8eb32fa9ab
commit
9ef84f1df3
1 changed files with 3 additions and 2 deletions
|
|
@ -206,7 +206,7 @@ end = struct
|
||||||
all_diff "squares" Grid.squares;
|
all_diff "squares" Grid.squares;
|
||||||
()
|
()
|
||||||
|
|
||||||
let trail_ (acts:_ Msat.acts) =
|
let trail_ (acts:_ Msat.acts) =
|
||||||
acts.acts_iter_assumptions
|
acts.acts_iter_assumptions
|
||||||
|> Iter.map
|
|> Iter.map
|
||||||
(function
|
(function
|
||||||
|
|
@ -234,7 +234,8 @@ end = struct
|
||||||
|
|
||||||
let partial_check (self:t) acts : unit =
|
let partial_check (self:t) acts : unit =
|
||||||
Log.debugf 4
|
Log.debugf 4
|
||||||
(fun k->k "(@[sudoku.partial-check@ :trail [@[%a@]]@])" (Fmt.iter F.pp) (trail_ acts));
|
(fun k->k "(@[sudoku.partial-check@ :trail [@[%a@]]@])"
|
||||||
|
(Fmt.list F.pp) (trail_ acts |> Iter.to_list));
|
||||||
add_slice self acts;
|
add_slice self acts;
|
||||||
check_ self acts
|
check_ self acts
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue