From: Daniel Axtens Date: Fri, 3 Sep 2010 04:27:53 +0000 (+0800) Subject: [Hopefully] final point table X-Git-Tag: v01~11 X-Git-Url: https://git.ucc.asn.au/?p=progcomp10.git;a=commitdiff_plain;h=bd43c1b5dd58d6f1b76515a70893bfdc0bafe48c;hp=096c5a1586137638164557da4d2f18679d7236a4 [Hopefully] final point table --- diff --git a/src/conf.py b/src/conf.py index aabd717..45942e2 100644 --- a/src/conf.py +++ b/src/conf.py @@ -9,7 +9,7 @@ VERBOSE = True DEBUG = False # How many iterations to run before quitting. -MAX_ITERATIONS = 150 +MAX_ITERATIONS = 15 # How many of each agent to create initially. STARTING_POPULATION = 10 @@ -31,9 +31,9 @@ MAX_AGE = 100 # Game dynamics - these are not final: # WINNER TRUTH ATTPoints, DEFPoints -pointsTable [Attacker] [False] = (2, -2) +pointsTable [Attacker] [False] = (3, -3) pointsTable [Attacker] [True] = (2, -2) pointsTable [Defender] [False] = (-2, 2) -pointsTable [Defender] [True] = (-2, 2) +pointsTable [Defender] [True] = (-3, 3) pointsTable [Tie] [False] = (0, 0) pointsTable [Tie] [True] = (1, 1)