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

[bugfix] Allow Indexed's which are nested in other Indexeds

parent 24501411
No related branches found
No related tags found
No related merge requests found
......@@ -47,13 +47,12 @@ class ReindexingMapper(MultiFunction):
MultiFunction.__init__(self)
self.replacement_map = {}
self.multi_index_cache = {}
self.im = IndexedMapper(self)
def expr(self, o):
return self.reuse_if_untouched(o, *tuple(self.call(op) for op in o.ufl_operands))
def indexed(self, o):
return self.im(o)
return IndexedMapper(self)(o)
def multi_index(self, o):
newindices = tuple(self.replacement_map.get(i, i) for i in o)
......
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