| 44 | } |
| 45 | |
| 46 | type LogNormalGenerator struct { |
| 47 | Min int |
| 48 | Max int |
| 49 | dist *distuv.LogNormal |
| 50 | } |
| 51 | |
| 52 | func NewLogNormalGenerator(min int, max int, mean int, median int) *LogNormalGenerator { |
| 53 | mu := math.Log(float64(median)) |
nothing calls this directly
no outgoing calls
no test coverage detected