Skip to content

Commit

Permalink
Removed unnecessary borrow
Browse files Browse the repository at this point in the history
  • Loading branch information
bkushigian committed Oct 7, 2024
1 parent d9dc996 commit af91af2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ impl PostFlopGame {
normalized_strategy(node.strategy(), num_actions)
};

let locking = self.locking_strategy(&node);
let locking = self.locking_strategy(node);
apply_locking_strategy(&mut ret, locking);

ret.chunks_exact_mut(num_hands).for_each(|chunk| {
Expand Down

0 comments on commit af91af2

Please sign in to comment.