]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.1.48
authorfred <fred>
Sun, 24 Mar 2002 20:15:12 +0000 (20:15 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:15:12 +0000 (20:15 +0000)
flower/include/unionfind.hh

index 9f360be4008bbdab449cca205edcc51ad5d722dd..b83a673a5d62aebfd640accb34804984fe6e9248 100644 (file)
     
     */
 struct Union_find {    
-    void connect (int i, int j);
-    int find (int i);
-    bool equiv (int i, int j) { return find (i) == find (j); }
-    Union_find (int sz);
+  void connect (int i, int j);
+  int find (int i);
+  bool equiv (int i, int j) { return find (i) == find (j); }
+  Union_find (int sz);
 
-private:
   /**
      This array provides the representing point for each node in the graph.
-   */
+  */
   Array<int> classes_;
 };
 #endif