Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
[compat]
CommonSolve = "0.2.4"
ConcreteStructs = "0.2.3"
DiffEqBase = "6.210.1"
DiffEqBase = "6.210.1, 7.5"
LinearAlgebra = "1"
PrecompileTools = "1.2.1"
SciMLBase = "2.153, 3.18"
Expand Down
7 changes: 3 additions & 4 deletions src/DifferenceEquations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ module DifferenceEquations

using CommonSolve: CommonSolve, solve, init, solve!
using ConcreteStructs: @concrete
using DiffEqBase: DiffEqBase, DEProblem, get_concrete_u0, get_concrete_p, isconcreteu0,
promote_u0
using DiffEqBase: DiffEqBase, get_concrete_u0, get_concrete_p, isconcreteu0, promote_u0
using LinearAlgebra: LinearAlgebra, Diagonal, NoPivot, Symmetric, cholesky,
cholesky!, dot, ldiv!, mul!, transpose!
using SciMLBase: SciMLBase, @add_kwonly, NullParameters, promote_tspan, AbstractRODESolution,
ODEFunction, remake, ConstantInterpolation, build_solution, ReturnCode
using SciMLBase: SciMLBase, @add_kwonly, NullParameters, promote_tspan, AbstractDEProblem,
AbstractRODESolution, ODEFunction, remake, ConstantInterpolation, build_solution, ReturnCode
using StaticArrays: StaticArrays, SVector, SMatrix, StaticMatrix, ismutable
using SymbolicIndexingInterface: SymbolicIndexingInterface, SymbolCache, variable_index

Expand Down
4 changes: 2 additions & 2 deletions src/problems/state_space_problems.jl
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
"""
AbstractStateSpaceProblem <: DEProblem
AbstractStateSpaceProblem <: AbstractDEProblem

Abstract supertype for all discrete-time state-space problems in DifferenceEquations.jl.

Subtypes include [`LinearStateSpaceProblem`](@ref), [`QuadraticStateSpaceProblem`](@ref),
[`PrunedQuadraticStateSpaceProblem`](@ref), and [`StateSpaceProblem`](@ref).
"""
abstract type AbstractStateSpaceProblem <: DEProblem end
abstract type AbstractStateSpaceProblem <: AbstractDEProblem end

# TODO: Can add in more checks on the algorithm choice
DiffEqBase.check_prob_alg_pairing(prob::AbstractStateSpaceProblem, alg) = nothing
Expand Down
5 changes: 3 additions & 2 deletions src/solve.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using DiffEqBase: DEAlgorithm, KeywordArgSilent
using DiffEqBase: KeywordArgSilent
using SciMLBase: AbstractDEAlgorithm

abstract type AbstractDifferenceEquationAlgorithm <: DEAlgorithm end
abstract type AbstractDifferenceEquationAlgorithm <: AbstractDEAlgorithm end

"""
DirectIteration()
Expand Down
6 changes: 3 additions & 3 deletions test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ DifferenceEquations = {path = ".."}
[compat]
DataFrames = "1.8.2"
DelimitedFiles = "1.9.1"
DiffEqBase = "6.210.1"
DiffEqBase = "6.210.1, 7.5"
DifferenceEquations = "1.0.0"
Distributions = "0.25.126"
Enzyme = "0.13"
EnzymeTestUtils = "0.2"
Enzyme = "0.13.100"
EnzymeTestUtils = "0.2.4"
FiniteDifferences = "0.12.34"
ForwardDiff = "1.4.0"
Plots = "1.41.6"
Expand Down
Loading