From 928cff64009f89041e55667fa7122cd52c36992e Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Wed, 20 Dec 2023 22:48:16 +0100 Subject: [PATCH] Adjust dome command line parameters --- src/game.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game.py b/src/game.py index 8c156ed..bf30d3d 100755 --- a/src/game.py +++ b/src/game.py @@ -55,7 +55,7 @@ def parse_aguments(): parser.add_argument('--weight', help='Weight table for weight based heuristic engines', type=int, - nargs=3, + nargs=4, default=[-5, 2, 10,25] ) parser.add_argument('-bR', '--black-randomize-moves', @@ -101,7 +101,7 @@ if __name__ == '__main__': "weight": WeightHeuristicEngine, "full": FullHeuristicEngine, } - print("Stating PyReverso...") + print("Starting PyReverso...") args = parse_aguments() logger = log.getLogger() # Create handler for streaming to tty (stderr / stdout)