Skip to content

Commit f7068cb

Browse files
Merge pull request #258 from galenseilis/patch-25
Update Probabilistic in routing.py
2 parents bde8342 + 826e16f commit f7068cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ciw/routing/routing.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -199,11 +199,11 @@ def __init__(self, destinations, probs):
199199
"""
200200
for p in probs:
201201
if not isinstance(p, float):
202-
raise ValueError("Routing probabilities must be between 0 and 1, and sum to less than 1.")
202+
raise ValueError("Routing probabilities must be a float.")
203203
if p < 0 or p > 1:
204-
raise ValueError("Routing probabilities must be between 0 and 1, and sum to less than 1.")
204+
raise ValueError("Routing probabilities must be between 0 and 1.")
205205
if sum(probs) > 1.0:
206-
raise ValueError("Routing probabilities must be between 0 and 1, and sum to less than 1.")
206+
raise ValueError("Routing probabilities must sum to 1 or less.")
207207
self.destinations = destinations + [-1]
208208
self.probs = probs + [1 - sum(probs)]
209209

0 commit comments

Comments
 (0)