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: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ PDMats = "90014a1f-27ba-587c-ab20-58faa44d9150"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"

[compat]
Expand All @@ -25,5 +26,6 @@ PDMats = "0.11"
PrecompileTools = "1"
RecursiveArrayTools = "2.34, 4"
SciMLBase = "2, 3"
SymbolicIndexingInterface = "0.3"
UnPack = "1"
julia = "1.8"
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
[compat]
ChainRulesCore = "1"
DataFrames = "1"
DiffEqBase = "6"
DiffEqBase = "6.145, 7"
DifferenceEquations = "1.1"
Distributions = "0.25"
Documenter = "1"
Expand Down
1 change: 1 addition & 0 deletions src/DifferenceEquations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ using LinearAlgebra: LinearAlgebra, Cholesky, Diagonal, NoPivot, Symmetric, chol
using PDMats: PDMats, PDMat
using SciMLBase: SciMLBase, @add_kwonly, NullParameters, promote_tspan, AbstractRODESolution,
ODEFunction, remake, ConstantInterpolation, build_solution
using SymbolicIndexingInterface: SymbolCache
using UnPack: UnPack, @unpack

include("utilities.jl")
Expand Down
4 changes: 2 additions & 2 deletions src/problems/state_space_problems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ struct LinearStateSpaceProblem{
syms = nothing,
f = ODEFunction{false}(
(u, p, t) -> error("not implemented");
syms = syms
sys = syms === nothing ? nothing : SymbolCache(collect(syms))
),
kwargs...
) where {iip}
Expand Down Expand Up @@ -131,7 +131,7 @@ struct QuadraticStateSpaceProblem{
syms = nothing,
f = ODEFunction{false}(
(u, p, t) -> error("not implemented");
syms = syms
sys = syms === nothing ? nothing : SymbolCache(collect(syms))
),
kwargs...
) where {iip}
Expand Down
Loading