Changeset 1846


Ignore:
Timestamp:
12/04/06 23:41:19 (17 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp

    r1845 r1846  
    61636163void VspOspViewCellsManager::CompressViewCells() 
    61646164{ 
    6165         ViewCellsManager::CompressViewCells(); 
    6166         return; 
     6165        //ViewCellsManager::CompressViewCells(); 
     6166        //return; 
    61676167        //////////// 
    61686168        //-- compression 
     
    61736173                 
    61746174                cout << "compressing in the objects" << endl; 
    6175                 cout << "number of entries before compress: " << pvsEntries << endl; 
    6176                 Debug << "number of entries before compress: " << pvsEntries << endl; 
     6175                float mem = (float)pvsEntries * ObjectPvs::GetEntrySize(); 
     6176 
     6177                cout << "number of entries before compress: " << pvsEntries << ", mem=" << mem << endl; 
     6178                Debug << "number of entries before compress: " << pvsEntries << ", mem=" << mem << endl; 
    61776179 
    61786180                pvsEntries = mHierarchyManager->CompressObjectSpace(); 
    6179                  
    6180                 Debug << "number of entries after compress: " << pvsEntries << endl; 
    6181                 cout << "number of entries after compress: " << pvsEntries << endl; 
     6181                mem = (float)pvsEntries * ObjectPvs::GetEntrySize(); 
     6182 
     6183                Debug << "number of entries after compress: " << pvsEntries << ", mem=" << mem << endl; 
     6184                cout << "number of entries after compress: " << pvsEntries << ", mem=" << mem << endl; 
    61826185        } 
    61836186} 
Note: See TracChangeset for help on using the changeset viewer.