Skip to content

Commit

Permalink
resolve method ambiguity for aBS to codim2
Browse files Browse the repository at this point in the history
  • Loading branch information
rveltz committed Sep 8, 2024
1 parent fbf7196 commit 056d342
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/codim2/codim2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,11 @@ function continuation(br::AbstractBranchResult,
end
####################################################################################################
# branch switching at BT / ZH / HH bifurcation point
function continuation(br::AbstractResult{Tkind, Tprob}, ind_bif::Int,
function continuation(br::AbstractResult{EquilibriumCont, Tprob}, ind_bif::Int,
options_cont::ContinuationPar = br.contparams;
alg = br.alg,
δp = nothing, ampfactor::Real = 1,
δp = nothing,
ampfactor::Real = 1,
nev = options_cont.nev,
detect_codim2_bifurcation::Int = 0,
Teigvec = _getvectortype(br),
Expand All @@ -265,7 +266,7 @@ function continuation(br::AbstractResult{Tkind, Tprob}, ind_bif::Int,
bdlinsolver::AbstractBorderedLinearSolver = getprob(br).prob.linbdsolver,
bdlinsolver_adjoint = bdlinsolver,
bdlinsolver_block = bdlinsolver,
kwargs...) where {Tkind, Tprob <: Union{FoldMAProblem, HopfMAProblem}}
kwargs...) where {Tprob <: Union{FoldMAProblem, HopfMAProblem}}

verbose = get(kwargs, :verbosity, 0) > 0 ? true : false
verbose && println("--> Considering bifurcation point:"); _show(stdout, br.specialpoint[ind_bif], ind_bif)
Expand Down

0 comments on commit 056d342

Please sign in to comment.