From a03f117efbe7adaf0e14d8f54ad7d9b0925dcf28 Mon Sep 17 00:00:00 2001 From: Bananasmoothii <45853225+bananasmoothii@users.noreply.github.com> Date: Tue, 10 Oct 2023 19:21:11 +0200 Subject: [PATCH] changed defaults --- README.md | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 87c831f..e3ed860 100644 --- a/README.md +++ b/README.md @@ -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`. \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index bb973bd..a9b0f4e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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();