]> Creatis software - bbtk.git/commitdiff
Clean code
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Fri, 20 Dec 2024 09:47:26 +0000 (10:47 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Fri, 20 Dec 2024 09:47:26 +0000 (10:47 +0100)
kernel/src/bbtkBlackBox.cxx

index 342da2cafeebf09e783a3d76a4a1514e51231658..9f3b4bb4e0a8e66790d3d0bcbb890aa5314fd619 100644 (file)
@@ -653,10 +653,21 @@ namespace bbtk
        {
                bbLetRecursiveExecuteManualMode = true;
     }
-         
-         
-    // Calls the main recursive execution method 
-    bbRecursiveExecute(Connection::Pointer());
+                 
+      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   = duration_cast<std::chrono::microseconds>(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() )