generated from PlexSheep/rs-base
Compare commits
2 commits
6cc6694747
...
cd48322e89
Author | SHA1 | Date | |
---|---|---|---|
cd48322e89 | |||
5c43363cf8 |
1 changed files with 7 additions and 1 deletions
|
@ -61,7 +61,13 @@ impl<'wl, WL: WordList> Solver<'wl, WL> for NaiveSolver<'wl, WL> {
|
|||
cinfo.tried_but_failed(idx);
|
||||
*abs_freq.entry(p.0).or_default() += 1;
|
||||
}
|
||||
Status::None => (),
|
||||
Status::None => {
|
||||
let cinfo = state
|
||||
.char_map_mut()
|
||||
.entry(p.0)
|
||||
.or_insert(CharInfo::new(game.length()));
|
||||
cinfo.tried_but_failed(idx);
|
||||
}
|
||||
}
|
||||
trace!("absolute frequencies: {abs_freq:?}");
|
||||
state.finish_step(&abs_freq);
|
||||
|
|
Loading…
Add table
Reference in a new issue