Skip to content
Snippets Groups Projects
Commit ee96b9f8 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Do not have an extra module for the restriction

parent 6b21e04d
No related branches found
No related tags found
No related merge requests found
class Restriction:
NONE = 0
POSITIVE = 1
NEGATIVE = 2
\ No newline at end of file
class Restriction:
NONE = 0
POSITIVE = 1
NEGATIVE = 2
\ No newline at end of file
...@@ -7,7 +7,7 @@ import loopy ...@@ -7,7 +7,7 @@ import loopy
import numpy import numpy
import ufl import ufl
from dune.perftool.restriction import Restriction from dune.perftool import Restriction
# Define the generators that are used here # Define the generators that are used here
from dune.perftool.generation import generator_factory from dune.perftool.generation import generator_factory
......
""" A module mimicking some functionality of uflacs' modified terminals """ """ A module mimicking some functionality of uflacs' modified terminals """
from ufl.algorithms import MultiFunction from ufl.algorithms import MultiFunction
from dune.perftool.restriction import Restriction from dune.perftool import Restriction
class ModifiedTerminalTracker(MultiFunction): class ModifiedTerminalTracker(MultiFunction):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment