Skip to content

Commit

Permalink
Remove iip from AbstractContinuationProblem
Browse files Browse the repository at this point in the history
It's not used in Bifurcations.Continuations.
  • Loading branch information
tkf committed Jun 20, 2018
1 parent 77d9a7b commit 2132589
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/continuations/base.jl
Expand Up @@ -19,7 +19,7 @@ solve by providing how to compute:
* an initial guess ``u_0``: [`get_u0`](@ref)
* and computation cache: [`get_prob_cache`](@ref).
"""
abstract type AbstractContinuationProblem{iip} end
abstract type AbstractContinuationProblem end

"""
Cache for computing ``H`` and its Jacobian.
Expand Down
2 changes: 1 addition & 1 deletion src/fixedpoint.jl
Expand Up @@ -29,7 +29,7 @@ See also: [`AbstractContinuationProblem`](@ref)
struct FixedPointBifurcationProblem{iip,
tkind <: TimeKind,
HJ, H, U, T, P,
} <: AbstractContinuationProblem{iip}
} <: AbstractContinuationProblem
homotopy_jacobian::HJ
homotopy::H
u0::U
Expand Down

0 comments on commit 2132589

Please sign in to comment.