Skip to content
Snippets Groups Projects
Commit b1eeab14 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[NL] removed excessive debug output

parent 5081cd4a
No related branches found
No related tags found
No related merge requests found
...@@ -204,8 +204,6 @@ double NamedFunctionCaller::call( ...@@ -204,8 +204,6 @@ double NamedFunctionCaller::call(
assert(_deferred_plugs.empty() && assert(_deferred_plugs.empty() &&
"You must call applyPlugs() before this method!"); "You must call applyPlugs() before this method!");
DBUG("Preparing call of fct #%lu %s()", function_idx,
_named_functions[function_idx].getName().c_str());
auto const& sis_sos = _map_sink_source[function_idx]; auto const& sis_sos = _map_sink_source[function_idx];
assert(sis_sos.size() == assert(sis_sos.size() ==
_named_functions[function_idx].getArgumentNames().size()); _named_functions[function_idx].getArgumentNames().size());
...@@ -217,17 +215,12 @@ double NamedFunctionCaller::call( ...@@ -217,17 +215,12 @@ double NamedFunctionCaller::call(
if (source >= 0) { if (source >= 0) {
fct_args[sink] = call(source, unbound_arguments); fct_args[sink] = call(source, unbound_arguments);
DBUG("setting %luth argument to %g", sink, fct_args[sink]);
} else { } else {
assert(source != _uninitialized); assert(source != _uninitialized);
fct_args[sink] = unbound_arguments[-source-1]; fct_args[sink] = unbound_arguments[-source-1];
DBUG("setting %luth argument to %g", sink, fct_args[sink]);
} }
} }
DBUG("Finished preparing call of fct #%lu %s()", function_idx,
_named_functions[function_idx].getName().c_str());
return _named_functions[function_idx].call(fct_args); return _named_functions[function_idx].call(fct_args);
} }
......
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