-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRandomHelper.elm
32 lines (24 loc) · 883 Bytes
/
RandomHelper.elm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module RandomHelper exposing (makeSeeds, makeSeedTuples)
import Random
makeSeeds : Random.Seed -> Int -> List Random.Seed
makeSeeds seed numSeeds =
let
seedTuples =
makeSeedsHelper seed numSeeds 0 []
( _, seeds ) =
List.unzip seedTuples
in
seeds
makeSeedTuples : Random.Seed -> Int -> List ( Int, Random.Seed )
makeSeedTuples seed numSeeds =
makeSeedsHelper seed numSeeds 0 []
makeSeedsHelper : Random.Seed -> Int -> Int -> List ( Int, Random.Seed ) -> List ( Int, Random.Seed )
makeSeedsHelper seed maxIndex index seedTuples =
let
( num, newSeed ) =
Random.step (Random.int Random.minInt Random.maxInt) seed
in
if index == maxIndex then
seedTuples
else
makeSeedsHelper newSeed maxIndex (index + 1) (List.append seedTuples [ ( index, newSeed ) ])