Skip to content

Commit 6f22bee

Browse files
Import MatrixOperator from its owner in integrator tests (#4076)
The tests currently receive MatrixOperator through SciMLBase's accidental SciMLOperators reexport. Import it directly so the test files continue to run once that reexport is removed. Co-authored-by: ChrisRackauckas-Claude <accounts@chrisrackauckas.com>
1 parent 47ff45f commit 6f22bee

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

test/Integrators_I/ode_event_tests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ using OrdinaryDiffEq,
33
SparseArrays,
44
LinearAlgebra
55
using OrdinaryDiffEqLinear, OrdinaryDiffEqLowOrderRK, OrdinaryDiffEqRosenbrock
6+
using SciMLOperators: MatrixOperator
67

78
f = function (u, p, t)
89
return -u + sin(-t)

test/Integrators_I/step_limiter_test.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ using OrdinaryDiffEqAdamsBashforthMoulton
1111
using OrdinaryDiffEqExtrapolation
1212
using OrdinaryDiffEqFIRK: AdaptiveRadau, RadauIIA9, RadauIIA5, RadauIIA3
1313
using LinearAlgebra
14+
using SciMLOperators: MatrixOperator
1415

1516
# define the counting variable
1617
const STEP_LIMITER_VAR = Ref(0)

0 commit comments

Comments
 (0)