You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Base.summary(prob::AbstractNonlinearProblem{uType,iip}) where {uType,iip}=string(
39
39
TYPE_COLOR, nameof(typeof(prob)),
40
+
NO_COLOR, " with uType ",
41
+
TYPE_COLOR, uType,
40
42
NO_COLOR, ". In-place: ",
41
43
TYPE_COLOR, isinplace(prob),
42
44
NO_COLOR)
@@ -66,7 +68,6 @@ function Base.show(io::IO, A::AbstractQuadratureProblem)
66
68
println(io,summary(A))
67
69
end
68
70
69
-
Base.summary(prob::AbstractSteadyStateProblem{uType,iip}) where {uType,iip} =string(nameof(typeof(prob))," with uType ",uType)
70
71
Base.summary(prob::AbstractNoiseProblem) =string(nameof(typeof(prob))," with WType ",typeof(prob.noise.W[1])," and tType ",typeof(prob.tspan[1]),". In-place: ",isinplace(prob))
71
72
function Base.show(io::IO, A::DEProblem)
72
73
println(io,summary(A))
@@ -93,11 +94,6 @@ function Base.show(io::IO, A::AbstractDAEProblem)
93
94
print(io,"du0: ")
94
95
show(io, A.du0)
95
96
end
96
-
function Base.show(io::IO, A::AbstractSteadyStateProblem)
0 commit comments