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

Merge branch 'fix/blockstructured_sub_element' into 'master'

Fix/blockstructured sub element

See merge request !168
parents c53ca550 c6644b09
No related branches found
No related tags found
No related merge requests found
......@@ -170,7 +170,7 @@ def evaluate_coefficient(visitor, element, name, container, restriction, index):
if get_option("blockstructured"):
from dune.perftool.blockstructured.argument import pymbolic_coefficient
coeff = pymbolic_coefficient(container, lfs, element, basisindex)
coeff = pymbolic_coefficient(container, lfs, sub_element, basisindex)
else:
from dune.perftool.pdelab.argument import pymbolic_coefficient
coeff = pymbolic_coefficient(container, lfs, basisindex)
......@@ -209,7 +209,7 @@ def evaluate_coefficient_gradient(visitor, element, name, container, restriction
if get_option("blockstructured"):
from dune.perftool.blockstructured.argument import pymbolic_coefficient
coeff = pymbolic_coefficient(container, lfs, element, basisindex)
coeff = pymbolic_coefficient(container, lfs, sub_element, basisindex)
else:
from dune.perftool.pdelab.argument import pymbolic_coefficient
coeff = pymbolic_coefficient(container, lfs, basisindex)
......
......@@ -13,7 +13,4 @@ extension = vtu
numerical_jacobian = 0, 1 | expand num
compare_l2errorsquared = 1e-10
blockstructured = 1
number_of_blocks = 3
# Ignore the numdiff case until the associated issue is fixed!
{__exec_suffix} == numdiff | exclude
\ No newline at end of file
number_of_blocks = 3
\ No newline at end of file
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