Skip to content

Commit 3773792

Browse files
committed
fix printing of DEStats
1 parent a9a8b72 commit 3773792

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/solutions/ode_solutions.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ function Base.show(io::IO, ::MIME"text/plain", s::DEStats)
5151
@printf io "%-50s %-d\n" "Number of Jacobians created:" s.njacs
5252
@printf io "%-50s %-d\n" "Number of nonlinear solver iterations:" s.nnonliniter
5353
@printf io "%-50s %-d\n" "Number of nonlinear solver convergence failures:" s.nnonlinconvfail
54-
@printf io "%-60s %-d\n" "Number of fixed-point solver iterations:" s.nfpiter
55-
@printf io "%-60s %-d\n" "Number of fixed-point solver convergence failures:" s.nfpconvfail
54+
@printf io "%-50s %-d\n" "Number of fixed-point solver iterations:" s.nfpiter
55+
@printf io "%-50s %-d\n" "Number of fixed-point solver convergence failures:" s.nfpconvfail
5656
@printf io "%-50s %-d\n" "Number of rootfind condition calls:" s.ncondition
5757
@printf io "%-50s %-d\n" "Number of accepted steps:" s.naccept
5858
@printf io "%-50s %-d" "Number of rejected steps:" s.nreject

0 commit comments

Comments
 (0)