Skip to content

Commit

Permalink
Merge pull request #17 from utkarsh530/u/fix
Browse files Browse the repository at this point in the history
fix N param for tuple in bracketing solution
  • Loading branch information
ChrisRackauckas authored Feb 3, 2021
2 parents dbcf70f + c37ff96 commit 9dea627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solutions/nonlinear_solutions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function build_solution(prob::AbstractNonlinearProblem,
kwargs...)

T = eltype(eltype(u))
N = length((size(prob.u0)...,))
N = ndims(u)

NonlinearSolution{T,N,typeof(u),typeof(resid),
typeof(prob),typeof(alg),typeof(original),typeof(left)}(
Expand Down

0 comments on commit 9dea627

Please sign in to comment.