Skip to content

Commit

Permalink
Update docs/src/tutorials/simple_poisson_process.md
Browse files Browse the repository at this point in the history
Co-authored-by: Sam Isaacson <isaacsas@users.noreply.github.com>
  • Loading branch information
gzagatti and isaacsas authored Nov 28, 2023
1 parent cbc67a3 commit 69846fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/tutorials/simple_poisson_process.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ deathcrj = ConstantRateJump(deathrate, deathaffect!)

As the death rate is constant *between* jumps, we can encode this process as a
second `ConstantRateJump`. Overall, we keep track of four different processes,
the population size ``N``, total deaths ``D``, births ``Y_b`` and deaths
``Y_d``. ``N`` and ``D`` are represented by ``u`` in our code, ``Y_b`` by `crj`
and ``Y_d`` by `death_crj`. We then construct the corresponding problems,
the population size ``N(t)``, total deaths ``D(t)``, births ``Y_b(t)`` and deaths
``Y_d(t)``. The vector ``(N(t), D(t))`` is represented by ``u`` in our code, with ``Y_b(t)`` encoded by `crj`
and ``Y_d(t)`` by `death_crj`. We then construct the corresponding problems,
passing both jumps to `JumpProblem`, and can solve as before

```@example tut1
Expand Down

0 comments on commit 69846fa

Please sign in to comment.