Ignore:
Timestamp:
08/27/06 23:39:50 (18 years ago)
Author:
mattausch
Message:

implemented bv hierarchy

File:
1 edited

Legend:

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

    r1201 r1287  
    269269 
    270270 
    271  
     271/*inline int 
     272RandomValue(int a, int b) 
     273{ 
     274        int range = abs(a - b); 
     275        return (rand() * range) / RAND_MAX + ((a < b) ? a : b); 
     276}*/ 
    272277 
    273278inline Real sqr(Real a) 
     
    275280  return a*a; 
    276281} 
     282 
    277283 
    278284template <class T> 
Note: See TracChangeset for help on using the changeset viewer.