Skip to content

Commit

Permalink
change type parameters in AbstractCodim2EigenSolver
Browse files Browse the repository at this point in the history
  • Loading branch information
rveltz committed Nov 30, 2024
1 parent b10c26f commit 464142c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/codim2/MinAugFold.jl
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,8 @@ where the parameters are as above except that you have to pass the branch `br` f
In order to trigger the detection, pass `detect_event = 1 or 2` in `options_cont`.
"""
function continuation_fold(prob, alg::AbstractContinuationAlgorithm,
foldpointguess::BorderedArray{vectype, 𝒯}, par,
foldpointguess::BorderedArray{vectype, 𝒯},
par,
lens1::AllOpticTypes, lens2::AllOpticTypes,
eigenvec, eigenvec_ad,
options_cont::ContinuationPar ;
Expand Down Expand Up @@ -588,7 +589,7 @@ function continuation_fold(prob,
end

# structure to compute eigen-elements along branch of Fold points
struct FoldEig{S, P} <: AbstractCodim2EigenSolver
struct FoldEig{P, S} <: AbstractCodim2EigenSolver
eigsolver::S
prob::P
end
Expand Down
2 changes: 1 addition & 1 deletion src/codim2/MinAugHopf.jl
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ function continuation_hopf(prob,
end

# structure to compute the eigenvalues along the Hopf branch
struct HopfEig{S, P} <: AbstractCodim2EigenSolver
struct HopfEig{P, S} <: AbstractCodim2EigenSolver
eigsolver::S
prob::P
end
Expand Down

0 comments on commit 464142c

Please sign in to comment.