Compare commits

..

1 commit

Author SHA1 Message Date
1b63e4d9cc fix(naive): make the naive solver work with a winrate of seemingly over 98%
Some checks failed
cargo devel CI / cargo CI (push) Failing after 1m58s
2024-08-02 16:58:42 +02:00

View file

@ -88,7 +88,7 @@ impl<'wl, WL: WordList> Solver<'wl, WL> for NaiveSolver<'wl, WL> {
if !game.responses().is_empty()
&& !state.has_all_known_contained(&solution_candidate.0)
{
debug!("known cont:{:#?}", state.get_all_known_contained());
trace!("known cont:{:#?}", state.get_all_known_contained());
return false;
}
for (idx, c) in solution_candidate.0.char_indices() {