Skip to content

Commit

Permalink
Probability fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulocracy committed Jan 31, 2024
1 parent 6a15b8d commit ce3ee35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/learning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ pub fn get_next_print_question(
let question = &eligible_questions[counter];
let learn_state = learning
.get(&question.identifier)
.unwrap_or(&LearnState { current_bin: 5 });
.unwrap_or(&LearnState { current_bin: 1 });

let threshold = match learn_state.current_bin {
1 => 5,
Expand Down

0 comments on commit ce3ee35

Please sign in to comment.