From: eduardo.davila@creatis.insa-lyon.fr Date: Fri, 20 Dec 2024 11:28:10 +0000 (+0100) Subject: Clean code X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=5ef6b1e27e029d3c1f7d647a4148ba859ebc0b8d;p=bbtk.git Clean code --- diff --git a/kernel/src/bbtkBlackBox.cxx b/kernel/src/bbtkBlackBox.cxx index 8eeb9a3..6a528df 100644 --- a/kernel/src/bbtkBlackBox.cxx +++ b/kernel/src/bbtkBlackBox.cxx @@ -653,22 +653,9 @@ namespace bbtk { bbLetRecursiveExecuteManualMode = true; } - - printf("\n\n"); - printf("EED BlackBox::bbExecute start %s \n", bbGetFullName().c_str() ); - auto start = std::chrono::high_resolution_clock::now(); - + // Calls the main recursive execution method bbRecursiveExecute(Connection::Pointer()); - - - auto stop = std::chrono::high_resolution_clock::now(); - auto duration = std::chrono::duration_cast(stop - start); - printf("EED BlackBox::bbExecute time= %ld %s \n", duration.count() , bbGetFullName().c_str() ); - printf("EED BlackBox::bbExecute end %s \n", bbGetFullName().c_str() ); - - - if ( bbBoxProcessModeIsManual() ) {