Skip to content

Commit 2bd7150

Browse files
Set minimum version of SciMLOperators.jl to 1.4
1 parent de6e60e commit 2bd7150

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ OrdinaryDiffEqTsit5 = "1"
6161
Pkg = "1"
6262
Random = "1"
6363
SciMLBase = "2"
64-
SciMLOperators = "1"
64+
SciMLOperators = "1.4"
6565
SparseArrays = "1"
6666
SpecialFunctions = "2"
6767
StaticArraysCore = "1"

src/time_evolution/time_evolution.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,16 +411,14 @@ end
411411
S = (size(w, 1), size(w, 2)) # This supports also `w` as a `Vector`
412412
(S[1] == M && S[2] == $N) || throw(DimensionMismatch("The size of the output vector is incorrect."))
413413
Base.@nexprs $N i -> begin
414-
# update_coefficients!(L.ops[i], v, p, t)
415-
# mul!(@view(w[:, i]), L.ops[i], v)
416414
op = L.ops[i]
417415
op(@view(w[:, i]), v, v, p, t)
418416
end
419417
return w
420418
end
421419
end
422420

423-
#TODO: Remove when https://github.com/SciML/StochasticDiffEq.jl/issues/615 is fixed.
421+
#TODO: Remove when a new release of SciMLBase.jl >2.104.0 is available
424422
function (f::SDEFunction)(du, u, p, t)
425423
if f.f isa AbstractSciMLOperator
426424
f.f(du, u, u, p, t)

0 commit comments

Comments
 (0)