Metadata-Version: 2.1
Name: rnglfg
Version: 0.2
Summary: Random Number Generator with Lagged Fiboniacci Generator
Home-page: https://github.com/ilkermanap/lfg
Author: Ilker Manap
Author-email: ilkermanap@gmail.com
License: UNKNOWN
Description: lfg
        ===
        
        Python implementation of Lagged Fibonacci Generator (LFG)
        
        There are two methods:
        
          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
        
        To install:
            
            sudo python3 setup.py install
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
