00001 00037 #ifndef ABA_FASTSET_H 00038 #define ABA_FASTSET_H 00039 00040 #include "abacus/set.h" 00041 00042 class ABA_FASTSET : public ABA_SET { 00043 public: 00044 00053 ABA_FASTSET (ABA_GLOBAL *glob, int size); 00054 00068 bool unionSets(int x, int y); 00069 00070 private: 00071 ABA_ARRAY<int> rank_; 00072 }; 00073 #endif // ABA_FASTSET_H 00074 00075