Created
October 21, 2018 19:56
-
-
Save KKostya/e4a87c87a95f53be7d75916b35b33433 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 random_then_stay_strategy : (door => choice => real) = | |
(door) => (choice) => Real.( | |
switch(door,choice){ | |
| ( _ ,Stay) => 1.0 / 3.0 | |
| ( _ ,Swap) => 0.0 | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment