Ignore:
Timestamp:
10/11/06 05:35:33 (18 years ago)
Author:
mattausch
Message:

removed vsposp bug

File:
1 edited

Legend:

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

    r1580 r1610  
    544544inline bool BvHierarchy::GlobalTerminationCriteriaMet(const BvhTraversalData &data) const 
    545545{ 
     546        // note: tracking for global cost termination  
     547        // does not make much sense for interleaved vsp / osp partition 
     548        // as it is the responsibility of the hierarchy manager 
     549 
    546550        const bool terminationCriteriaMet = 
    547551                (0 
    548552                || (mBvhStats.Leaves() >= mTermMaxLeaves) 
    549                 // does not make much sense for interleaved vsp / osp partition 
    550553                //|| (mBvhStats.mGlobalCostMisses >= mTermGlobalCostMissTolerance) 
    551554                //|| mOutOfMemory  
    552555                ); 
    553556 
    554         if (0 && terminationCriteriaMet) 
     557        if (1 && terminationCriteriaMet) 
    555558        { 
    556559                Debug << "bvh global termination criteria met:" << endl; 
Note: See TracChangeset for help on using the changeset viewer.