X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=src%2Fconf.py;h=3e3db8bdcc2955e383e0c00c5ff03abcfc40f393;hb=refs%2Ftags%2Fv02.1;hp=45942e24610c8a32cc2761b3bf301a322124df01;hpb=bd43c1b5dd58d6f1b76515a70893bfdc0bafe48c;p=progcomp10.git diff --git a/src/conf.py b/src/conf.py index 45942e2..3e3db8b 100644 --- a/src/conf.py +++ b/src/conf.py @@ -2,19 +2,20 @@ from rpsconst import * -# Enable for verbose output. -VERBOSE = True +# Enable for verbose output. (or use -v) +VERBOSE = False # Enable for even more verbose output. DEBUG = False # How many iterations to run before quitting. -MAX_ITERATIONS = 15 +# This is 100 for the short version and 1000 for the long version +MAX_ITERATIONS = 100 -# How many of each agent to create initially. +# How many of each agent to create initially. (or use -n) STARTING_POPULATION = 10 -# ??? +# Number of times the simulation is run. (or use -t) TRIALS = 1 # How much health to give each agent on birth. @@ -27,9 +28,14 @@ REPRODUCE_HEALTH = 100 DIE_HEALTH = 0 # The age at which to kill any agent. +# This is 100 for the short version and 1000 for the long version MAX_AGE = 100 -# Game dynamics - these are not final: +# Cap the number of agents (set to 0 to disable) +# you may also need to run ulimit -n +MAX_TOTAL_AGENTS = 255 + +# Game dynamics: # WINNER TRUTH ATTPoints, DEFPoints pointsTable [Attacker] [False] = (3, -3) pointsTable [Attacker] [True] = (2, -2)