Skip to content

Commit 5505a12

Browse files
committed
Clean up
1 parent f9d1e34 commit 5505a12

3 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/pytest-petsc.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ on:
1313
pull_request:
1414
branches:
1515
- master
16-
- FieldFromPointer
1716

1817
jobs:
1918
pytest:

devito/symbolics/inspection.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,7 @@ def sympy_dtype(expr, base=None, default=None, smin=None):
307307
if expr is None:
308308
return default
309309

310+
# TODO: Edit/fix/update according to PR #2513
310311
dtypes = {base} - {None}
311312
for i in expr.args:
312313
dtype = getattr(i, 'dtype', None)

tests/test_symbolics.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ def test_extended_sympy_arithmetic():
318318
# noncommutative
319319
o = Object(name='o', dtype=c_void_p)
320320
bar = FieldFromPointer('bar', o)
321+
# TODO: Edit/fix/update according to PR #2513
321322
assert ccode(-1 + bar) == 'o->bar - 1'
322323

323324

0 commit comments

Comments
 (0)