Skip to content

Commit

Permalink
dsl: fixup bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Leitevmd committed May 5, 2021
1 parent 8dafce5 commit 3af970a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devito/operator/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ def _prepare_arguments(self, **kwargs):
p._arg_check(args, self._dspace[p])
for d in self.dimensions:
if d.is_Derived:
d._arg_check(args, self._dspace[p])
d._arg_check(args, self._dspace[d]) # BUG?

# Turn arguments into a format suitable for the generated code
# E.g., instead of NumPy arrays for Functions, the generated code expects
Expand Down

0 comments on commit 3af970a

Please sign in to comment.