Skip to content

Commit

Permalink
test(tests/test_simulate.py): add more cases for some Michaelis-Mente…
Browse files Browse the repository at this point in the history
…n model tests (#618)

This adds more "extreme" edge cases for both the simple and the "consuming" Michaelis-Menten model tests
  • Loading branch information
schneiderfelipe authored May 29, 2024
1 parent 2af978f commit 4135334
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/test_simulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ def test_get_y_conservation_in_equilibria() -> None:
(cat0, sub0, keq, kcat, method)
for cat0 in [0.3, 0.4]
for sub0 in [0.01, 0.02]
for keq in [10.0, 100.0]
for kcat in [1e10, 1e11]
for method in ("RK23", "LSODA")
for keq in [1.0, 10.0, 100.0]
for kcat in [1e-1, 1e1, 1e10, 1e11, 1e13]
for method in ("RK23", "LSODA", "Radau", "BDF")
],
)
def test_simple_michaelis_menten(
Expand Down Expand Up @@ -164,9 +164,9 @@ def test_simple_michaelis_menten(
(cat0, sub0, keq, kcat, method)
for cat0 in [0.3, 0.4]
for sub0 in [0.01, 0.02]
for keq in [10.0, 100.0]
for kcat in [1e10, 1e11]
for method in ("RK23", "LSODA")
for keq in [1.0, 10.0, 100.0]
for kcat in [1e-1, 1e1, 1e10, 1e11, 1e13]
for method in ("RK23", "LSODA", "Radau", "BDF")
],
)
def test_consuming_michaelis_menten(
Expand Down

0 comments on commit 4135334

Please sign in to comment.