Skip to content

Commit

Permalink
doc: fix parameters in docs index page
Browse files Browse the repository at this point in the history
  • Loading branch information
Armavica committed Jan 23, 2025
1 parent d4ba2a9 commit db6fa45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ mm = rebop.Gillespie()
# A → P at rate V * A / (Km + A)
mm.add_reaction("V * A / (Km + A)", ["A"], ["P"])

params = {"V": 1, "Km": 10}
params = {"V": 1, "Km": 20}

ds = mm.run({"A": 100}, tmax=100, nb_steps=100, params=params)
ds = mm.run({"A": 100}, tmax=250, nb_steps=100, params=params)
```

![Plot of the evolution of P over time.](mm.png)

0 comments on commit db6fa45

Please sign in to comment.