From c3356fef5dfb7db8e8dfb52efb9b65415c9d8fd8 Mon Sep 17 00:00:00 2001 From: Dominic Kempf <dominic.kempf@iwr.uni-heidelberg.de> Date: Mon, 31 Jul 2017 11:42:33 +0200 Subject: [PATCH] Filter magic names from the ufl file --- python/dune/perftool/compile.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/python/dune/perftool/compile.py b/python/dune/perftool/compile.py index fdcee2cc..18e620d0 100644 --- a/python/dune/perftool/compile.py +++ b/python/dune/perftool/compile.py @@ -87,10 +87,19 @@ def read_ufl(uflfile): # Extract and preprocess the forms data = interpret_ufl_namespace(namespace) - # Enrich data by some additional objects we deem worth keeping + # Enrich data by some additional objects to whose name we attached some + # special meaning. if get_option("exact_solution_expression"): data.object_by_name[get_option("exact_solution_expression")] = namespace[get_option("exact_solution_expression")] + magic_names = ("dirichlet_expression", + "is_dirichlet", + "initial_condition", + "exact_solution", + ) + for name in magic_names: + data.object_by_name[name] = namespace.get(name, None) + formdatas = [] forms = data.forms for index, form in enumerate(forms): -- GitLab