File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changes
22
3+ ## 0.1.12
4+ - fixed bug in last version: non-FAMoS methods do not terminate
5+
36## 0.1.11
47- fixed bug in stepwise moves when working with multiple subspaces (#65 )
58- fixed bug in FAMoS switching (#68 )
Original file line number Diff line number Diff line change @@ -193,9 +193,14 @@ def candidates(
193193 newly_calibrated_models = {},
194194 criterion = criterion ,
195195 )
196+ continue
196197 except StopIteration :
197198 break
198199
200+ # No models were found, and the method doesn't switch, so no further
201+ # models can be found.
202+ break
203+
199204 candidate_space .previous_predecessor_model = predecessor_model
200205
201206 return candidate_space
Original file line number Diff line number Diff line change 11"""Version of the model selection extension for PEtab."""
2- __version__ = '0.1.11 '
2+ __version__ = '0.1.12 '
You can’t perform that action at this time.
0 commit comments