Skip to content

Commit

Permalink
changed defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
bananasmoothii committed Oct 10, 2023
1 parent f20f21a commit a03f117
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ This game currently plays in the terminal. To play, run the following command (a
cargo run --release
```

By default, the bot computes 8 moves ahead. You can change this in the first line of the `main` function
By default, the bot computes 9 moves ahead. You can change this in the first line of the `main` function
in `src/main.rs`.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ mod scalar;

fn main() {
let max_depth = 9;
let bot_vs_bot = true;
let bot_vs_bot = false;

let p1 = NonZeroU8::new(1).unwrap();
let p2 = NonZeroU8::new(2).unwrap();
Expand Down

0 comments on commit a03f117

Please sign in to comment.