Equations
- instInhabitedStdGen = { default := { s1 := 0, s2 := 0 } }
Equations
- One or more equations did not get rendered due to their size.
Equations
- instRandomGenStdGen = { range := fun x => stdRange, next := stdNext, split := stdSplit }
Equations
Equations
- IO.rand lo hi = do let gen ← ST.Ref.get IO.stdGenRef match randNat gen lo hi with | (r, gen) => do ST.Ref.set IO.stdGenRef gen pure r