Skip to content

Commit db9486d

Browse files
Merge pull request #79 from isaacsas/add-ssprob-to-readme
update README to include SteadyStateProblems
2 parents a71d993 + 2cd4d67 commit db9486d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,12 @@ rn = @reaction_network rType begin
8989
end
9090
will both have reaction rate equal to 2[X][Y].
9191

92-
Once a reaction network has been created it can be passed as input to either one of the `ODEProblem`, `SDEProblem` or `JumpProblem` constructors.
92+
Once a reaction network has been created it can be passed as input to either one of the `ODEProblem`, `SteadyStateProblem`, `SDEProblem` or `JumpProblem` constructors.
9393
```julia
9494
probODE = ODEProblem(rn, args...; kwargs...)
95+
probSS = SteadyStateProblem(rn, args...; kwargs...)
9596
probSDE = SDEProblem(rn, args...; kwargs...)
96-
probJump = JumpProblem(prob,aggregator::Direct,rn)
97+
probJump = JumpProblem(prob, Direct(), rn)
9798
```
9899
the output problems may then be used as normal input to the solvers of the `DifferentialEquations` package.
99100

0 commit comments

Comments
 (0)