Ignore:
Timestamp:
09/21/06 19:14:24 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/OspTree.h

    r1379 r1449  
    7979        /// accumulated number of rays refs 
    8080        int accumRays; 
    81         /// potentially visible objects from this leaf 
     81        /// overall potentially visible objects 
    8282        int pvs; 
    83  
    8483        // accumulated depth (used to compute average) 
    8584        int accumDepth; 
     85        // global cost ratio violations 
     86        int mGlobalCostMisses; 
     87 
    8688 
    8789        // Constructor 
     
    111113                maxDepthNodes = 0; 
    112114                minPvsNodes = 0; 
    113          
    114115                minProbabilityNodes = 0; 
    115116                maxCostNodes = 0; 
    116  
    117117                contributingSamples = 0; 
    118118                sampleContributions = 0; 
    119  
    120119                maxPvs = 0; 
    121120                invalidLeaves = 0; 
    122121                objectRefs = 0; 
    123  
    124122                maxObjectRefs = 0; 
     123                mGlobalCostMisses = 0; 
    125124        } 
    126125 
Note: See TracChangeset for help on using the changeset viewer.