Skip to content

Commit d487acc

Browse files
committed
review pass
1 parent 78dcf0d commit d487acc

11 files changed

Lines changed: 70 additions & 213 deletions

File tree

devito/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
from devito.types.sparse import * # noqa
1616
from devito.types.tensor import * # noqa
1717
from devito.finite_differences import * # noqa
18+
from devito.operations.solve import *
1819
from devito.operator import Operator # noqa
1920

2021
# Other stuff exposed to the user

devito/builtins/arithmetic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def norm(f, order=2):
1919
order : int, optional
2020
The order of the norm. Defaults to 2.
2121
"""
22-
from devito.finite_differences.differentiable import Pow
22+
Pow = dv.finite_differences.differentiable.Pow
2323
kwargs = {}
2424
if f.is_TimeFunction and f._time_buffering:
2525
kwargs[f.time_dim.max_name] = f._time_size - 1

0 commit comments

Comments
 (0)