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

Fix small glitches

parent f17cb4bc
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ def typedef_fem(element, name):
if get_form_option("blockstructured"):
include_file("dune/perftool/blockstructured/blockstructuredqkfem.hh", filetag="driver")
degree = element.degree() * get_option("number_of_blocks")
degree = element.degree() * get_form_option("number_of_blocks")
return "using {} = Dune::PDELab::BlockstructuredQkLocalFiniteElementMap<{}, {}, {}, {}>;" \
.format(name, gv, df, r, degree)
......
......@@ -22,9 +22,7 @@ from dune.perftool.pdelab.driver.gridfunctionspace import (name_test_gfs,
)
from dune.perftool.pdelab.localoperator import localoperator_basename
from dune.perftool.pdelab.parameter import parameterclass_basename
from dune.perftool.options import (get_form_option,
get_option,
)
from dune.perftool.options import get_form_option
@preamble
......
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