Ignore:
Timestamp:
01/23/06 02:56:48 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/ViewCell.cpp

    r551 r564  
    8383        if (pvsSize < vcStat.minPvs) 
    8484                vcStat.minPvs = pvsSize; 
     85 
     86        if (!mValid) 
     87                ++ vcStat.invalid; 
    8588} 
    8689 
     
    100103void ViewCell::SetValid(const bool valid) 
    101104{ 
    102         mValid = true; 
     105        mValid = valid; 
    103106} 
    104107 
     
    138141        app << "#N_MAXLEAVES ( maximal number of leaves per view cell )\n" << maxLeaves << endl; 
    139142         
     143        app << "#N_INVALID ( number of invalid view cells )\n" << invalid << endl; 
     144 
    140145        app << "========== End of View Cells Statistics ==========\n"; 
    141146} 
Note: See TracChangeset for help on using the changeset viewer.