| 3 | |
| 4 | |
| 5 | class AbstractDistribution: |
| 6 | def sample(self): |
| 7 | raise NotImplementedError() |
| 8 | |
| 9 | def mode(self): |
| 10 | raise NotImplementedError() |
| 11 | |
| 12 | |
| 13 | class DiracDistribution(AbstractDistribution): |
nothing calls this directly
no outgoing calls
no test coverage detected