Skip to content

Commit ff0c813

Browse files
fix: fix is_time_dependent
1 parent 11f2b76 commit ff0c813

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/problems/problem_utils.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,4 +194,3 @@ Base.copy(p::SciMLBase.NullParameters) = p
194194

195195
SymbolicIndexingInterface.is_time_dependent(::AbstractDEProblem) = true
196196
SymbolicIndexingInterface.is_time_dependent(::AbstractNonlinearProblem) = false
197-
SymbolicIndexingInterface.is_time_dependent(::AbstractSteadyStateProblem) = true

src/problems/steady_state_problems.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ function SteadyStateProblem(prob::AbstractODEProblem)
133133
SteadyStateProblem{isinplace(prob)}(prob.f, prob.u0, prob.p; prob.kwargs...)
134134
end
135135

136+
SymbolicIndexingInterface.is_time_dependent(::SteadyStateProblem) = true
137+
136138
@doc doc"""
137139
138140
Holds information on what variables to alias

0 commit comments

Comments
 (0)