## Proposed fixes - `RelativeEpsilonSelector` constructor should raise an error if `max_rounds == 0` and the doc string should indicate the required value. - [relative_epsilon_selector.py line 55](https://github.com/StochSS/sciope/blob/54cefe14826b141008cc1f29a83a4a44501285c3/sciope/utilities/epsilonselectors/relative_epsilon_selector.py#L55): should return `self.max_rounds == 1` for the `has_more` return value. - [smc_abc.py line 182](https://github.com/StochSS/sciope/blob/54cefe14826b141008cc1f29a83a4a44501285c3/sciope/inference/smc_abc.py#L182): `round` should have an initial value of `2`. - [relative_epsilon_selector.py line 81](https://github.com/StochSS/sciope/blob/54cefe14826b141008cc1f29a83a4a44501285c3/sciope/utilities/epsilonselectors/relative_epsilon_selector.py#L81): should return `self.max_rounds and round >= self.max_rounds` for the `terminate` return value.