Skip to content
Snippets Groups Projects
Commit d5036c04 authored by Rosen Matev's avatar Rosen Matev :sunny: Committed by Christoph Hasse
Browse files

split statement to improve readability

parent f6967e9b
No related branches found
No related tags found
1 merge request!2699FunctorFactory, replace CLING backend with native compiler
......@@ -53,11 +53,12 @@ def add_algorithm(type_suffix, eval_or_init, functors, producer=None):
if not inside_cache_generation:
kwargs["OutputLevel"] = DEBUG
algo_instance = algo_type(
configurable_algs, _ = algo_type(
Functors=functors,
PODFunctors={k: POD(v)
for k, v in functors.items()},
**kwargs).configuration().apply()[0][-1]
**kwargs).configuration().apply()
algo_instance = configurable_algs[-1]
ApplicationMgr().TopAlg.append(algo_instance)
......
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