Metadata-Version: 2.1
Name: prisoners_problem
Version: 0.0.8
Summary: Simulate the 100 prisoners problem.
Home-page: https://github.com/tekknolagi/100prisoners
Author: Maxwell Bernstein
Author-email: python@bernsteinbear.com
License: UNKNOWN
Description: Install using `pip3 install prisoners_problem`.
        
        Run a couple samples with a given strategy:
        
        ```
        >>> from prisoners_problem import simulate
        >>> simulate.nsamples(1000, strategy=simulate.try_find_self)
        0.3
        >>>
        ```
        
        `help(simulate.nsamples)` should give information for how to put in your own
        strategy.
        
        You can run `python3 -m prisoners_problem.viz` to show the results of the
        visualization.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
