Skip to content
Snippets Groups Projects
Commit 7777156a authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Add fd.Diff.interpolated_access

parent a3f92cb4
1 merge request!129Interpolation refactoring
......@@ -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
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment