Skip to content

Commit

Permalink
v1.6.1a2
Browse files Browse the repository at this point in the history
  • Loading branch information
HighDiceRoller committed Nov 8, 2024
1 parent aa5b8d0 commit 9037c18
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## v1.6.1

* Add `pointwise_max`, `pointwise_min` arguments to take pointwise maximum or minimum of CDFs.
* Add `Die.time_to_sum` method.

## v1.6.0 - 20 September 2024

Expand Down
26 changes: 13 additions & 13 deletions src/icepool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

__docformat__ = 'google'

__version__ = '1.6.1a1'
__version__ = '1.6.1a2'

from typing import Final

Expand Down Expand Up @@ -46,12 +46,11 @@

# Expose certain names at top-level.

from icepool.function import (d, z, __getattr__, coin, stochastic_round,
one_hot, iter_cartesian_product, from_cumulative,
from_rv, pointwise_max, pointwise_min, min_outcome,
max_outcome, consecutive, sorted_union,
commonize_denominator, reduce, accumulate, map,
map_function, map_and_time, map_to_pool)
from icepool.function import (
d, z, __getattr__, coin, stochastic_round, one_hot, iter_cartesian_product,
from_cumulative, from_rv, pointwise_max, pointwise_min, min_outcome,
max_outcome, consecutive, sorted_union, commonize_denominator, reduce,
accumulate, map, map_function, map_and_time, map_to_pool)

from icepool.population.base import Population
from icepool.population.die import implicit_convert_to_die, Die
Expand Down Expand Up @@ -147,10 +146,11 @@
'd', 'z', 'coin', 'stochastic_round', 'one_hot', 'Outcome', 'Die',
'Population', 'tupleize', 'vectorize', 'Vector', 'Symbols', 'Again',
'CountsKeysView', 'CountsValuesView', 'CountsItemsView', 'from_cumulative',
'from_rv', 'pointwise_max', 'pointwise_min', 'lowest', 'highest', 'middle', 'min_outcome', 'max_outcome',
'consecutive', 'sorted_union', 'commonize_denominator', 'reduce',
'accumulate', 'map', 'map_function', 'map_and_time', 'map_to_pool',
'Reroll', 'RerollType', 'Pool', 'standard_pool', 'MultisetGenerator',
'MultisetExpression', 'MultisetEvaluator', 'Order', 'Deck', 'Deal',
'MultiDeal', 'multiset_function', 'function', 'typing', 'evaluator'
'from_rv', 'pointwise_max', 'pointwise_min', 'lowest', 'highest', 'middle',
'min_outcome', 'max_outcome', 'consecutive', 'sorted_union',
'commonize_denominator', 'reduce', 'accumulate', 'map', 'map_function',
'map_and_time', 'map_to_pool', 'Reroll', 'RerollType', 'Pool',
'standard_pool', 'MultisetGenerator', 'MultisetExpression',
'MultisetEvaluator', 'Order', 'Deck', 'Deal', 'MultiDeal',
'multiset_function', 'function', 'typing', 'evaluator'
]

0 comments on commit 9037c18

Please sign in to comment.