Skip to content

Commit b1907d8

Browse files
Update diffusion_implicit_heat_equation.md
1 parent c384c0d commit b1907d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/examples/diffusion_implicit_heat_equation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import Plots
1717
using LinearAlgebra
1818
using DiffEqBase
1919
using OrdinaryDiffEq: SplitODEProblem, solve, IMEXEuler
20-
import SciMLBase
20+
import SciMLBase, SciMLOperators
2121
```
2222

2323
Next, we'll define some global problem parameters:
@@ -178,7 +178,7 @@ params = (; n)
178178
179179
tspan = (FT(0), N_t * FT(Δt))
180180
181-
prob = SplitODEProblem(SciMLBase.DiffEqArrayOperator(D),
181+
prob = SplitODEProblem(SciMLOperators.MatrixOperator(D),
182182
rhs!,
183183
T,
184184
tspan,

0 commit comments

Comments
 (0)