Skip to main content

A package for computing dice probabilities

Project description

Icepool

A Python package for computing dice probabilities.

GitHub repository.

Features

  • Pure Python implementation.
  • Exact fractional probabilities using Python ints.
  • Dice support all standard operators (+, -, <, >, etc.) as well as an extensive library of functions (rerolling, exploding, etc.)
  • Can outperform sequence/multiset-based algorithms on many dice pool problems. In some cases it may be thousands or millions of times faster.

Installing

pip install icepool

The source is pure Python, so making a direct copy can work as well.

Contact

Feel free to open a discussion or issue on GitHub. You can also find me on Twitter or Reddit.

API documentation

pdoc on GitHub.

JupyterLite notebooks

See this JupyterLite distribution for a collection of interactive, editable examples. These include mechanics from published games, StackExchange, Reddit, and academic papers.

Web applications

Inline examples

Advanced Dungeons & Dragons 1st edition ability score methods

Source for these methods.

Method I:

All scores are recorded and arranged in the order the player desires. 4d6 are rolled, and the lowest die (or one of the lower) is discarded.

Method II:

All scores are recorded and arranged as in Method I. 3d6 are rolled 12 times and the highest 6 scores are retained.

Method III:

Scores rolled are according to each ability category, in order, STRENGTH, INTELLIGENCE, WISDOM, DEXTERITY, CONSTITUTION, CHARISMA. 3d6 are rolled 6 times for each ability, and the highest score in each category is retained for that category.

Method IV:

3d6 are rolled sufficient times to generate the 6 ability scores, in order, for 12 characters. The player then selects the single set of scores which he or she finds most desirable and these scores are noted on the character record sheet.

import icepool

"""
The @ operator means "roll the left die, then roll that many of the right die and sum".
Integers are treated as a die that always rolls that number.
Therefore:
* 3 @ icepool.d6 means 3d6.
* icepool.d6 @ 3 means roll a d6 and multiply the result by 3.
"""

method1 = 6 @ icepool.d6.keep_highest(num_dice=4, num_keep=3)
method2 = (3 @ icepool.d6).keep_highest(12, 6)
# num_keep defaults to 1.
method3 = 6 @ (3 @ icepool.d6).keep_highest(6)
method4 = (6 @ (3 @ icepool.d6)).keep_highest(12)

import matplotlib.pyplot as plt

fig, ax = plt.subplots()
ax.plot(method1.outcomes(), method1.pmf(percent=True))
ax.plot(method2.outcomes(), method2.pmf(percent=True))
ax.plot(method3.outcomes(), method3.pmf(percent=True))
ax.plot(method4.outcomes(), method4.pmf(percent=True))
ax.set_title('AD&D 1e ability score methods')
ax.legend(['Method I', 'Method II', 'Method III', 'Method IV'])
ax.set_xlabel('Total of ability scores')
ax.set_xlim(50, 100)
ax.set_ylim(0)
ax.grid(True)
plt.show()

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

icepool-0.10.3a0.tar.gz (31.6 kB view details)

Uploaded Source

Built Distribution

icepool-0.10.3a0-py3-none-any.whl (34.2 kB view details)

Uploaded Python 3

File details

Details for the file icepool-0.10.3a0.tar.gz.

File metadata

  • Download URL: icepool-0.10.3a0.tar.gz
  • Upload date:
  • Size: 31.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for icepool-0.10.3a0.tar.gz
Algorithm Hash digest
SHA256 9aaaf1ff656bf0e52c00e726e5b8566958d1692f857020ed5eb667291f50344f
MD5 36ec509856c7d1ea647d95a1ae36a6a2
BLAKE2b-256 7098e6533022eb0d205dc51adc217eba3a9f4c260edc7073545af4c88b9e6d09

See more details on using hashes here.

File details

Details for the file icepool-0.10.3a0-py3-none-any.whl.

File metadata

  • Download URL: icepool-0.10.3a0-py3-none-any.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for icepool-0.10.3a0-py3-none-any.whl
Algorithm Hash digest
SHA256 42212564fd30cbf600c27a64d9b9b68546817dcc0a2ff2fc34ccd5e2eb0e85d3
MD5 3c6627814a3e1c843316e37ffdc07f0d
BLAKE2b-256 4780e27c1661c695c94ecf2d6f90ed36aeebe6dd8f6009593d638f2f865adb3d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page