Skip to content

Commit

Permalink
Add left & right params for Bracketing methods
Browse files Browse the repository at this point in the history
  • Loading branch information
utkarsh530 committed Feb 1, 2021
1 parent 772f7ee commit c9c3346
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/solutions/nonlinear_solutions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ struct NonlinearSolution{T,N,uType,R,P,A,O} <: AbstractNonlinearSolution{T,N}
alg::A
retcode::Symbol
original::O
left::uType
right::uType
end

const SteadyStateSolution = NonlinearSolution
Expand All @@ -16,6 +18,8 @@ function build_solution(prob::AbstractNonlinearProblem,
alg,u,resid;calculate_error = true,
retcode = :Default,
original = nothing,
left = nothing,
right = nothing,
kwargs...)

T = eltype(eltype(u))
Expand Down

0 comments on commit c9c3346

Please sign in to comment.