kruskal.h 189 B

123456
  1. #ifndef __KRUSKAL__
  2. #define __KRUSKAL__
  3. void shuffle_edges(igraph_t *g, igraph_vector_t *eids);
  4. void build_tree(igraph_t *dest_tree, igraph_t *src_graph, igraph_vector_t *src_eids);
  5. #endif