From ba4be18fe45ad9fcf48e89a54895513949fc5a3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20He=C3=9F?= <rene.hess@iwr.uni-heidelberg.de> Date: Fri, 26 May 2017 10:35:51 +0200 Subject: [PATCH] [Bugfix] Visit whole tree in test_diagonal_jacobian --- python/dune/perftool/ufl/transformations/axiparallel.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/dune/perftool/ufl/transformations/axiparallel.py b/python/dune/perftool/ufl/transformations/axiparallel.py index 5f5f26af..129304a8 100644 --- a/python/dune/perftool/ufl/transformations/axiparallel.py +++ b/python/dune/perftool/ufl/transformations/axiparallel.py @@ -125,6 +125,8 @@ class DiagonalJITTester(MultiFunction): p, i = o.ufl_operands if isinstance(p, JacobianInverse): assert i[0] == i[1] + else: + self.call(p) def test_diagonal_jacobian(e): -- GitLab