Skip to content

Commit 242790f

Browse files
committed
for version 0.5.8
1 parent 3eefaa0 commit 242790f

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "BifurcationKit"
22
uuid = "0f109fa4-8a5d-4b75-95aa-f515264e7665"
3-
version = "0.5.7"
3+
version = "0.5.8"
44
authors = ["Romain Veltz <rveltz@salk.edu>"]
55

66
[deps]

src/bifdiagram/BifurcationDiagram.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Compute the bifurcation diagram associated with the problem `F(x, p) = 0` recurs
9292
- `prob::AbstractBifurcationProblem` bifurcation problem
9393
- `alg` continuation algorithm
9494
- `level` maximum branching (or recursion) level for computing the bifurcation diagram
95-
- `options = (x, p, level) -> contparams` this function allows to change the [`continuation`](@ref) options depending on the branching `level`. The argument `x, p` denotes the current solution to `F(x, p)=0`.
95+
- `options = (x, p, level) -> contparams` this function allows to change the [`continuation`](@ref) options depending on the branching `level`. The argument `x, p` denotes the current solution to `F(x, p) = 0`.
9696
- `kwargs` optional arguments. Look at [`bifurcationdiagram!`](@ref) for more details.
9797
9898
# Simplified call:
@@ -155,13 +155,13 @@ Similar to [`bifurcationdiagram`](@ref) but you pass a previously computed `node
155155
- `kwargs` optional arguments as for [`continuation`](@ref) but also for the different versions listed in [Continuation](https://bifurcationkit.github.io/BifurcationKitDocs.jl/dev/library/#Continuation-1).
156156
"""
157157
function bifurcationdiagram!(prob::AbstractBifurcationProblem,
158-
node::BifDiagNode,
159-
maxlevel::Int,
160-
options;
161-
code = "0",
162-
halfbranch = false,
163-
verbosediagram = false,
164-
kwargs...)
158+
node::BifDiagNode,
159+
maxlevel::Int,
160+
options;
161+
code = "0",
162+
halfbranch = false,
163+
verbosediagram = false,
164+
kwargs...)
165165
if node.level >= maxlevel || isnothing(node.γ)
166166
return node
167167
end

0 commit comments

Comments
 (0)