My Project
CONGA.h
00001 #ifndef CONGA_H
00002 #define CONGA_H
00003 
00004 #include "cluster.h"
00005 #include "ComponentsLoop.h"
00006   
00013  template <typename R>
00014  class CONGA: public ClusterAlg<R>{
00015     public:
00016     
00023     CONGA(string a){
00024       this->args = a;
00025       this->dens = new complex_density<bidirected_t>(0);
00026     };
00027     
00032     ~CONGA(){};
00033     
00038     void calculate();
00039     
00047     static bool CONGAComp(map <lui, map <lui, R> >* component, void* instance);
00048     
00049 private:
00050     static int h;
00051 };
00052 
00053 
00054 #endif
 All Classes Files Functions Variables Typedefs