File size: 323 Bytes
f7e2ae6
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# --- Matching Pennies payoffs ---
MP_MATCH_PAYOFF = 1       # Matcher wins when both choose same
MP_MISMATCH_PAYOFF = -1   # Matcher loses when choices differ

# --- Rock-Paper-Scissors payoffs ---
RPS_WIN_PAYOFF = 1
RPS_LOSE_PAYOFF = -1
RPS_DRAW_PAYOFF = 0

# --- Rock-Paper-Scissors action count ---
RPS_NUM_ACTIONS = 3