@@ -26,12 +26,14 @@ function Base.summary(io::IO, prob::AbstractDEProblem)
2626 prob. tspan isa Function ?
2727 " Unknown" : (prob. tspan === nothing ?
2828 " Nothing" : typeof (prob. tspan[1 ])),
29- no_color,
30- " . In-place: " , type_color, isinplace (prob), no_color)
29+ no_color,
30+ " . In-place: " , type_color, isinplace (prob), no_color)
3131 init = initialization_status (prob)
32- ! isnothing (init) && print (io, " Initialization status: " , type_color, initialization_status (prob), no_color)
32+ ! isnothing (init) && print (io, " Initialization status: " , type_color,
33+ initialization_status (prob), no_color)
3334 println (io)
34- print (io, " Non-trivial mass matrix: " , type_color, ! (prob. f. mass_matrix isa LinearAlgebra. UniformScaling{Bool}), no_color)
35+ print (io, " Non-trivial mass matrix: " , type_color,
36+ ! (prob. f. mass_matrix isa LinearAlgebra. UniformScaling{Bool}), no_color)
3537end
3638
3739function Base. summary (io:: IO , prob:: AbstractLinearProblem )
@@ -114,7 +116,6 @@ function Base.show(io::IO, mime::MIME"text/plain", A::AbstractDEProblem)
114116 println (io)
115117 print (io, " u0: " )
116118 show (io, mime, A. u0)
117-
118119end
119120function Base. show (io:: IO , mime:: MIME"text/plain" , A:: AbstractNoiseProblem )
120121 summary (io, A)
0 commit comments