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.13
4+ - fixed bug when no predecessor model is provided, introduced in 0.1.11 (#83 )
5+
36## 0.1.12
47- fixed bug in last version: non-FAMoS methods do not terminate
58
Original file line number Diff line number Diff line change @@ -94,7 +94,10 @@ def candidates(
9494 predecessor_model = candidate_space .previous_predecessor_model
9595
9696 # If the predecessor model has not yet been calibrated, then calibrate it.
97- if predecessor_model != VIRTUAL_INITIAL_MODEL :
97+ if (
98+ predecessor_model is not None
99+ and predecessor_model != VIRTUAL_INITIAL_MODEL
100+ ):
98101 if (
99102 predecessor_model .get_criterion (
100103 criterion ,
Original file line number Diff line number Diff line change 11"""Version of the model selection extension for PEtab."""
2- __version__ = '0.1.12 '
2+ __version__ = '0.1.13 '
You can’t perform that action at this time.
0 commit comments