| 3268 | # want a lognormal distribution to compare equal |
| 3269 | # to a normal distribution with the same parameters |
| 3270 | class LognormalDist: |
| 3271 | def __init__(self, mu, sigma): |
| 3272 | self.mu = mu |
| 3273 | self.sigma = sigma |
| 3274 | lnd = LognormalDist(100, 15) |
| 3275 | nd = NormalDist(100, 15) |
| 3276 | self.assertNotEqual(nd, lnd) |
no outgoing calls
searching dependent graphs…