Skip to content
Snippets Groups Projects
Commit 6b465802 authored by René Heß's avatar René Heß
Browse files

UFL patch for function view degree estimation

parent 13533a00
No related branches found
No related tags found
No related merge requests found
From 7f4831b0b8220365ca4427922fcbeba07e934b5f 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, 7 Oct 2016 14:34:38 +0200
Subject: [PATCH] Function view degree estimation for ReferenceValue
---
ufl/algorithms/estimate_degrees.py | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/ufl/algorithms/estimate_degrees.py b/ufl/algorithms/estimate_degrees.py
index caa9f19..d2d4e69 100644
--- a/ufl/algorithms/estimate_degrees.py
+++ b/ufl/algorithms/estimate_degrees.py
@@ -76,7 +76,12 @@ class SumDegreeEstimator(MultiFunction):
def function_view(self, v, a, i):
# TODO How would the element_replace_map interfere with the function_view class?
from ufl.functionview import select_subelement
- return select_subelement(v.ufl_operands[0].ufl_element(), v.ufl_operands[1]).degree()
+ from ufl.referencevalue import ReferenceValue
+ if isinstance(v.ufl_operands[0], ReferenceValue):
+ return select_subelement(v.ufl_operands[0].ufl_operands[0].ufl_element(), v.ufl_operands[1]).degree()
+ else:
+ return select_subelement(v.ufl_operands[0].ufl_element(), v.ufl_operands[1]).degree()
+
def _reduce_degree(self, v, f):
"""Reduces the estimated degree by one; used when derivatives
--
2.9.3
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