@@ -184,7 +184,8 @@ def contains_subset(self,
184
184
Args:
185
185
targets: Either a collection of outcomes, counting once per appearance.
186
186
Or a mapping from outcomes to target counts.
187
- wilds: A collection of outcomes that will be treated as wilds.
187
+ wilds: EXPERIMENTAL: A collection of outcomes to treat as wilds.
188
+ This API is likely to change in the future.
188
189
"""
189
190
return icepool .ContainsSubsetEvaluator (targets ,
190
191
wilds = wilds ).evaluate (self )
@@ -203,7 +204,8 @@ def intersection_size(self,
203
204
Args:
204
205
targets: Either a collection of outcomes, counting once per appearance.
205
206
Or a mapping from outcomes to target counts.
206
- wilds: A collection of outcomes that will be treated as wilds.
207
+ wilds: EXPERIMENTAL: A collection of outcomes to treat as wilds.
208
+ This API is likely to change in the future.
207
209
"""
208
210
return icepool .IntersectionSizeEvaluator (targets ,
209
211
wilds = wilds ).evaluate (self )
@@ -217,9 +219,8 @@ def best_matching_set(self,
217
219
Args:
218
220
include_outcome: If `True`, the result outcomes will be tuples
219
221
`(set_size, outcome)`. Greater outcomes will be prioritized.
220
- wilds: These will be combined with the best matching set of
221
- non-wilds. If all draws are wild, the max outcome in the
222
- generator will be taken (even if it has 0 quantity).
222
+ wilds: EXPERIMENTAL: A collection of outcomes to treat as wilds.
223
+ This API is likely to change in the future.
223
224
224
225
Returns:
225
226
A `Die` with outcomes (set_size, outcome).
0 commit comments