Spaces:
Running
Running
File size: 347 Bytes
f7e2ae6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Random Zero-Sum game -- constrained to zero-sum payoffs
RZS_SEED = 42
RZS_MAX_PAYOFF = 5
RZS_DEFAULT_ACTIONS = 3
# Random Coordination game -- diagonal bonus for matching
RC_SEED = 99
RC_MATCH_BONUS = 5
RC_MISMATCH_MAX = 2
RC_DEFAULT_ACTIONS = 3
# Parameterized Chicken (Hawk-Dove with custom parameters)
PCHK_RESOURCE = 6
PCHK_FIGHT_COST = 8
|