From 2401bf5f5d318796b1e685fe6c276f2cb780fb9d Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Fri, 22 Dec 2023 23:44:03 +0100 Subject: [PATCH] Revert default for --weights parameter --- src/game.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game.py b/src/game.py index 62fc3d3..d8095b4 100755 --- a/src/game.py +++ b/src/game.py @@ -93,8 +93,8 @@ def parse_aguments(): help='Weight table for weight based heuristic engines', type=int, nargs=4, - default=[-100, 2, 16, 32] - # default=[-5, 2, 10, 25] + #default=[-100, 2, 16, 32] + default=[-5, 2, 10, 25] ) parser.add_argument('-r',