My Project
RRW.h
00001 #ifndef RRW_H
00002 #define RRW_H
00003   
00004 #include "cluster.h"
00011  template <typename R>
00012  class RRW:public ClusterAlg<R>{
00013     public:
00021       RRW(string a){
00022         this->args = a;
00023         
00024         this->dens = new complex_density<bidirected_t>(0);
00025       };
00026       
00032       ~RRW(){};
00033       
00038       void calculate();
00039       
00048       static bool RRWComp(map <lui, map <lui, R> >* component, void* instance);
00049       
00050   private:
00051     static double restart, overlapThreshold, earlyCutoff; 
00052     static int min, max;
00053   };
00054 
00055 #endif
 All Classes Files Functions Variables Typedefs