Last active
October 21, 2018 20:05
-
-
Save KKostya/fcb4478af9de13ac5ebb303158b98422 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 pDoorsBiased = (door : door) => Real.( | |
switch (door){ | |
| DoorA => 3.0 / 5.0 | |
| DoorB | DoorC => 1.0 / 5.0 | |
} | |
); | |
valid_door_pmf(pDoorsBiased) |
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
val pDoorsBiased : door -> real = <fun> | |
- : bool = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment