Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Stephan Seitz
pystencils
Commits
7777156a
Commit
7777156a
authored
Jan 15, 2020
by
Stephan Seitz
Browse files
Add fd.Diff.interpolated_access
parent
a3f92cb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
pystencils/fd/derivative.py
View file @
7777156a
...
...
@@ -111,6 +111,11 @@ class Diff(sp.Expr):
def
__str__
(
self
):
return
"D(%s)"
%
self
.
arg
def
interpolated_access
(
self
,
offset
):
from
pystencils.interpolation_astnodes
import
DiffInterpolatorAccess
assert
isinstance
(
self
.
argument
,
Field
),
"Must be field to enable interpolated accesses"
return
DiffInterpolatorAccess
(
self
.
argument
.
interpolated_access
(
offset
),
self
.
target
)
class
DiffOperator
(
sp
.
Expr
):
"""Un-applied differential, i.e. differential operator
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment