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
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "DifferenceEquations"
uuid = "e0ca9c66-1f9e-11ec-127a-1304ce62169c"
version = "1.0.0"
version = "1.1.0"
authors = ["various contributors"]

[deps]
Expand All @@ -24,6 +24,6 @@ LinearAlgebra = "1"
PDMats = "0.11"
PrecompileTools = "1"
RecursiveArrayTools = "2.34"
SciMLBase = "1.90, 2"
SciMLBase = "2, 3"
UnPack = "1"
julia = "1.8"
2 changes: 1 addition & 1 deletion src/DifferenceEquations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module DifferenceEquations

using ChainRulesCore: ChainRulesCore, NoTangent, Tangent, ZeroTangent
using CommonSolve: CommonSolve, solve
using DiffEqBase: DiffEqBase, DEProblem, get_concrete_u0, get_concrete_p, isconcreteu0,
using DiffEqBase: DiffEqBase, AbstractDEProblem, get_concrete_u0, get_concrete_p, isconcreteu0,
promote_u0
using Distributions: Distributions, Distribution, MvNormal, UnivariateDistribution,
ZeroMeanDiagNormal, logpdf
Expand Down
2 changes: 1 addition & 1 deletion src/problems/state_space_problems.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
abstract type AbstractStateSpaceProblem <: DEProblem end
abstract type AbstractStateSpaceProblem <: AbstractDEProblem end
abstract type AbstractPerturbationProblem <: AbstractStateSpaceProblem end

# TODO: Can add in more checks on the algorithm choice
Expand Down
4 changes: 2 additions & 2 deletions src/solve.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using DiffEqBase: DEAlgorithm, KeywordArgSilent
using DiffEqBase: AbstractDEAlgorithm, KeywordArgSilent

abstract type AbstractDifferenceEquationAlgorithm <: DEAlgorithm end
abstract type AbstractDifferenceEquationAlgorithm <: AbstractDEAlgorithm end
struct DirectIteration <: AbstractDifferenceEquationAlgorithm end
struct KalmanFilter <: AbstractDifferenceEquationAlgorithm end

Expand Down
Loading