-
Notifications
You must be signed in to change notification settings - Fork 2
Home
ilkermanap edited this page Nov 24, 2014
·
2 revisions
There are two methods:
- lfgToFile(size, lag_parameter, size_of_the_seed, filename)
- lfgToList(size, lag_parameter, size_of_the_seed)
lfgToFile(size, param1, param2, filename):
This method will create a file using random numbers generated with LFG algorithm.
Method will not return anything.
- size : File size
- param1 : Lag parameter
- param2 : Size of the seed
- filename: Name of the output file, overwritten if exists.
lfgToList(size, param1, param2):
This method will return a list of random numbers generated with LFG algorithm.
- size : File size
- param1 : Lag parameter
- param2 : Size of the seed