Skip to content

Commit e4d9b72

Browse files
committed
Remove operators interface
1 parent b32898e commit e4d9b72

File tree

5 files changed

+4
-108
lines changed

5 files changed

+4
-108
lines changed

src/DiffEqBase.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,6 @@ import SciMLBase: solve, init, step!, solve!, __init, __solve, update_coefficien
9797
update_coefficients, isadaptive, wrapfun_oop, wrapfun_iip,
9898
unwrap_fw, promote_tspan, set_u!, set_t!, set_ut!
9999

100-
import SciMLBase: AbstractDiffEqLinearOperator # deprecation path
101-
102100
import SciMLStructures
103101

104102
using Reexport

src/callbacks.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,8 @@ function find_callback_time(integrator, callback::ContinuousCallback, counter)
432432
end
433433
Θ = bisection(zero_func, (bottom_t, top_t), isone(integrator.tdir),
434434
callback.rootfind, callback.abstol, callback.reltol)
435-
integrator.last_event_error = DiffEqBase.value(ODE_DEFAULT_NORM(zero_func(Θ), Θ))
435+
integrator.last_event_error = DiffEqBase.value(ODE_DEFAULT_NORM(
436+
zero_func(Θ), Θ))
436437
end
437438
#Θ = prevfloat(...)
438439
# prevfloat guerentees that the new time is either 1 floating point
@@ -507,7 +508,8 @@ function find_callback_time(integrator, callback::VectorContinuousCallback, coun
507508
isone(integrator.tdir), callback.rootfind,
508509
callback.abstol, callback.reltol)
509510
if integrator.tdir * Θ < integrator.tdir * min_t
510-
integrator.last_event_error = DiffEqBase.value(ODE_DEFAULT_NORM(zero_func(Θ), Θ))
511+
integrator.last_event_error = DiffEqBase.value(ODE_DEFAULT_NORM(
512+
zero_func(Θ), Θ))
511513
end
512514
end
513515
if integrator.tdir * Θ < integrator.tdir * min_t

test/affine_operators_tests.jl

Lines changed: 0 additions & 38 deletions
This file was deleted.

test/basic_operators_interface.jl

Lines changed: 0 additions & 64 deletions
This file was deleted.

test/runtests.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,11 @@ end
2323
@time @safetestset "Internal Rootfinders" include("internal_rootfinder.jl")
2424
@time @safetestset "Plot Vars" include("plot_vars.jl")
2525
@time @safetestset "Problem Creation Tests" include("problem_creation_tests.jl")
26-
@time @safetestset "Affine differential equation operators" include("affine_operators_tests.jl")
2726
@time @safetestset "Export tests" include("export_tests.jl")
2827
@time @safetestset "Remake tests" include("remake_tests.jl")
2928
@time @safetestset "High Level solve Interface" include("high_level_solve.jl")
3029
@time @safetestset "DiffEqFunction tests" include("diffeqfunction_tests.jl")
3130
@time @safetestset "Internal Euler" include("internal_euler_test.jl")
32-
@time @safetestset "Basic Operators Interface" include("basic_operators_interface.jl")
3331
@time @safetestset "Norm" include("norm.jl")
3432
@time @safetestset "Utils" include("utils.jl")
3533
@time @safetestset "ForwardDiff Dual Detection" include("forwarddiff_dual_detection.jl")

0 commit comments

Comments
 (0)