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)