Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottneilclark committed Dec 28, 2024
1 parent 546bd7c commit 0d91025
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/arena/cfr/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ mod tests {
);

// let cfr_states: Vec<_> = (0..num_agents)
// .map(|_| Rc::new(RefCell::new(PlayerCFRState::new(game_state.clone()))))
// .map(|_|
// Rc::new(RefCell::new(PlayerCFRState::new(game_state.clone()))))
// .collect();
}
}
2 changes: 1 addition & 1 deletion src/arena/cfr/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ impl Node {
}
}

pub fn new(idx : usize, parent: usize, data: NodeData) -> Self {
pub fn new(idx: usize, parent: usize, data: NodeData) -> Self {
Node {
idx: idx,
data: data,
Expand Down

0 comments on commit 0d91025

Please sign in to comment.