##################################################### # Shared constants for all stb_rdm_* apps. # Edit values here; each app's C class imports from this file. ##################################################### VALID_NUM_PLAYERS = [60, 150] NUM_ROUNDS_PER_BLOCK = 5 # rounds per treatment block (nocap or cap) NUM_CAP_NOC = 6 # max islands ranked in no-cap treatment NUM_CAP_CAP = 2 # max islands ranked in cap treatment # Payoff distribution for intro / practice draws MAX_PTS = 300 MID_PTS = 260 MIN_PTS = 100 PTS_STEP = 20 EXPAY_SCALE = 0.2 # Valuation incentive scale (maximum pay will be this * MAX_PTS) BDM_PAY = 50 # Belief incentive payment (points) RAVEN_BONUS = 50 # Raven's matrix bonus per correct question (points) PROJECT_ENDOW = 30 # Endowment for risky project (points) TIMEOUT_SECONDS = 10 * 60 # per-page timeout for main task