]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Disable messages
authorapo <apo@opencascade.com>
Mon, 27 Nov 2006 07:41:39 +0000 (07:41 +0000)
committerapo <apo@opencascade.com>
Mon, 27 Nov 2006 07:41:39 +0000 (07:41 +0000)
src/PIPELINE/VISU_PipeLine.cxx

index c4c4cd7559416e1c29adcc2b5a48ea93b9e3f0db..3905fdb4a541e6578668560751b48af0d9f108ce 100644 (file)
@@ -214,7 +214,7 @@ VISU_PipeLine
   static size_t EPSILON = 2 * 1024;
   size_t aMax = std::max(theSize, theMinSize);
   size_t aMin = std::min(theSize, theMinSize);
-  cout<<"GetAvailableMemory - "<<aMax<<"; "<<aMin;
+  //cout<<"GetAvailableMemory - "<<aMax<<"; "<<aMin;
   while(CheckAvailableMemory(aMax) == 0 && CheckAvailableMemory(aMin) > 0 && (aMax - aMin) > EPSILON){
     size_t aRoot = (aMax + aMin) / 2;
     if(CheckAvailableMemory(aRoot))
@@ -222,7 +222,7 @@ VISU_PipeLine
     else
       aMax = aRoot;
   }
-  cout<<"; "<<aMax<<endl;
+  //cout<<"; "<<aMax<<endl;
   return aMax;
 }