@@ -26,12 +26,14 @@ function Base.summary(io::IO, prob::AbstractDEProblem)
26
26
prob. tspan isa Function ?
27
27
" Unknown" : (prob. tspan === nothing ?
28
28
" 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)
31
31
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)
33
34
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)
35
37
end
36
38
37
39
function Base. summary (io:: IO , prob:: AbstractLinearProblem )
@@ -114,7 +116,6 @@ function Base.show(io::IO, mime::MIME"text/plain", A::AbstractDEProblem)
114
116
println (io)
115
117
print (io, " u0: " )
116
118
show (io, mime, A. u0)
117
-
118
119
end
119
120
function Base. show (io:: IO , mime:: MIME"text/plain" , A:: AbstractNoiseProblem )
120
121
summary (io, A)
0 commit comments