KKostya
10/21/2018 - 7:49 PM

make_scenario_pmf.re

let make_scenario_pmf : (door => real) => (door => choice => real) => (scenario => real) = 
  (door_pmf) => (strategy) => (s) => Real.({
    door_pmf(s.prize) * strategy(s.first_guess, s.choice)
  })