Ignore:
Timestamp:
09/27/06 19:23:51 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1449 r1522  
    562562                // || mOutOfMemory 
    563563                || (mVspStats.Leaves() >= mMaxViewCells) 
    564         || (mVspStats.mGlobalCostMisses >= mTermGlobalCostMissTolerance)  
     564      //  || (mVspStats.mGlobalCostMisses >= mTermGlobalCostMissTolerance)  
    565565                ); 
    566566 
     
    571571                Debug << "leaves: " << mVspStats.Leaves() << " " <<  mMaxViewCells << endl; 
    572572        } 
     573 
    573574        return terminationCriteriaMet; 
    574575} 
     
    14821483        const float renderCostDecrease = (oldRenderCost - newRenderCost) / viewSpaceVol; 
    14831484 
    1484 //#ifdef _DEBUG 
     1485#ifdef _DEBUG 
    14851486        Debug << "\nvsp render cost decrease" << endl 
    14861487                  << "back pvs: " << pvsBack << " front pvs " << pvsFront << " total pvs: " << totalPvs << endl  
     
    14881489                  << "old rc: " << normalizedOldRenderCost << " new rc: " << newRenderCost / viewSpaceVol << endl 
    14891490                  << "render cost decrease: " << renderCostDecrease << endl; 
    1490 //#endif 
     1491#endif 
    14911492        return renderCostDecrease; 
    14921493} 
Note: See TracChangeset for help on using the changeset viewer.