Skip to content

Commit

Permalink
Change to OrdinaryDiffEqCore
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Aug 27, 2024
1 parent e9de366 commit 3f0fe78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FastBroadcast = "7034ab61-46d4-4ed7-9d0f-46aef9175898"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
MuladdMacro = "46d2c3a1-f734-5fdb-9937-b9b9aeba4221"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
OrdinaryDiffEqCore = "bbf590c4-e513-4bbe-9b18-05decba2e5d8"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
SimpleUnPack = "ce78b400-467f-4804-87d8-8f486da07d0a"
Expand All @@ -21,7 +21,7 @@ FastBroadcast = "0.2.5, 0.3"
LinearAlgebra = "1.7"
LinearSolve = "2.21"
MuladdMacro = "0.2.1"
OrdinaryDiffEq = "6.59"
OrdinaryDiffEqCore = "1.3"
Reexport = "1"
SciMLBase = "2"
SimpleUnPack = "1"
Expand Down
6 changes: 3 additions & 3 deletions src/PositiveIntegrators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ using SciMLBase: AbstractODEFunction, NullParameters, FullSpecialize,
isinplace

# TODO: Check imports and using statements below, reduce if possible
using OrdinaryDiffEq: OrdinaryDiffEq, OrdinaryDiffEqAlgorithm, ODESolution
using OrdinaryDiffEqCore: OrdinaryDiffEqAlgorithm, ODESolution

using SymbolicIndexingInterface: SymbolicIndexingInterface

using LinearSolve: LinearSolve, LinearProblem, LUFactorization, solve!

import SciMLBase: interp_summary

using OrdinaryDiffEq: @cache,
using OrdinaryDiffEqCore: @cache,
OrdinaryDiffEqAdaptiveAlgorithm,
OrdinaryDiffEqConstantCache, OrdinaryDiffEqMutableCache,
False,
_vec
import OrdinaryDiffEq: alg_order, isfsal,
import OrdinaryDiffEqCore: alg_order, isfsal,
calculate_residuals, calculate_residuals!,
alg_cache, get_tmp_cache,
initialize!, perform_step!,
Expand Down

0 comments on commit 3f0fe78

Please sign in to comment.