Convenience method for getting the value of named probabilities
(self, *keys)
| 273 | return self._get_config_value(self._bounds, *keys) |
| 274 | |
| 275 | def probability(self, *keys): |
| 276 | '''Convenience method for getting the value of named probabilities''' |
| 277 | return self._get_config_value(self._probabilities, *keys) |
| 278 | |
| 279 | def _choose_from_bounds(self, *bounds): |
| 280 | '''Returns a value that is within the given bounds. Each value has an equal chance |
no test coverage detected