Skip to content

Commit

Permalink
Increase depth
Browse files Browse the repository at this point in the history
  • Loading branch information
ArcticXWolf committed Jan 28, 2021
1 parent 45198d6 commit 992c2c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/axwchessbot/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import uci

parser = argparse.ArgumentParser()
parser.add_argument("--depth", default=2, help="provide an integer (default: 2)")
parser.add_argument("--depth", default=3, help="provide an integer (default: 3)")
parser.add_argument("--selfplay", default=False, type=bool)
parser.add_argument("--test", default=False, type=bool)
args = parser.parse_args()
Expand All @@ -15,4 +15,4 @@
elif args.test:
test_engine()
else:
uci.Uci(args.depth).communicate()
uci.Uci(args.depth).communicate()

0 comments on commit 992c2c7

Please sign in to comment.