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

index 6a528df45feb71dec03165acdf02bababbb2d303..4e4639b6f35c2d015f06d761bde49d7a4760ba37 100644 (file)
@@ -748,11 +748,11 @@ namespace bbtk
 
 //printf("EED BlackBox::bbRecursiveExecute bbProcess start %s \n", bbGetFullName().c_str() );
                 
-auto start = std::chrono::high_resolution_clock::now();
+//auto start = std::chrono::high_resolution_clock::now();
                 this->bbProcess();
-auto stop       = std::chrono::high_resolution_clock::now();
-auto duration   = std::chrono::duration_cast<std::chrono::microseconds>(stop - start);
-printf("EED BlackBox::bbRecursiveExecute bbProcess time= %ld  %s \n", duration.count() , bbGetFullName().c_str() );
+//auto stop       = std::chrono::high_resolution_clock::now();
+//auto duration   = std::chrono::duration_cast<std::chrono::microseconds>(stop - start);
+//printf("EED BlackBox::bbRecursiveExecute bbProcess time= %ld  %s \n", duration.count() , bbGetFullName().c_str() );
 
 //printf("EED BlackBox::bbRecursiveExecute bbProcess end %s \n", bbGetFullName().c_str() );
 
@@ -783,22 +783,13 @@ printf("EED BlackBox::bbRecursiveExecute bbProcess time= %ld  %s \n", duration.c
                         <<std::endl);
       } // if
 
-      
-      
     // Shows the window if the black box has one
     this->bbShowWindow(); 
-
-      
-auto start2 = std::chrono::high_resolution_clock::now();
     bbtkBlackBoxDebugMessage("process",3,
             "<= BlackBox::bbRecursiveExecute()"
             <<std::endl);
     bbSetExecuting(false);
     bbGlobalSetSomeBoxExecuting(wasExecuting);
-auto stop2       = std::chrono::high_resolution_clock::now();
-auto duration2   = std::chrono::duration_cast<std::chrono::microseconds>(stop2 - start2);
-printf("EED BlackBox::bbRecursiveExecute bbProcess2 time= %ld  %s \n", duration2.count() , bbGetFullName().c_str() );
-
       
     return;
   }