Add pbotlib.odds.
[poker.git] / README
1 Multiplayer poker game.  Example usage:
2
3   ./pbot.py -v a,bots/p1.py b,bots/p1.py x,bots/p2.py y,bots/p2.py > example.txt
4
5 Run internal tests with
6
7   nosetests --with-doctest --doctest-test pbot pbotlib
8
9 Profile with
10
11   python -m cProfile -o profile ./pbot.py a,bots/p1.py b,bots/p1.py x,bots/p2.py y,bots/p2.py
12   python -c 'import pstats; p = pstats.Stats("profile"); p.sort_stats("cumulative").print_stats(20)'