Ignore:
Timestamp:
02/09/06 12:14:11 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/Pvs.h

    r581 r610  
    5959  void NormalizeMaximum(); 
    6060   
    61   /** Merges pvs of a and pvs of b into this pvs. 
     61  /** Merges pvs of a into this pvs. 
    6262   */ 
    63   void Merge(const Pvs<T> &a, const Pvs<T> &b); 
     63  void Merge(const Pvs<T> &a); 
    6464   
    6565  /** Difference of pvs to pvs b. 
     
    130130 
    131131template <typename T> 
    132 void Pvs<T>::Merge(const Pvs<T> &a, const Pvs<T> &b) 
     132void Pvs<T>::Merge(const Pvs<T> &a) 
    133133{ 
    134134        std::map<T, PvsData<T>, LtSample<T> >::const_iterator it; 
    135135 
    136         mEntries = a.mEntries; 
    137          
    138         for (it = b.mEntries.begin(); it != b.mEntries.end(); ++ it) 
     136        for (it = a.mEntries.begin(); it != a.mEntries.end(); ++ it) 
    139137        { 
    140138                PvsData<T> *data = Find((*it).first); 
Note: See TracChangeset for help on using the changeset viewer.