Created
October 21, 2018 19:49
-
-
Save KKostya/f6a5ce105f56fce1b0da5e27e3d3aac0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment