[][src]Module prcn_lib::union_find

Varified borrow from petgraph

Structs

UnionFind

UnionFind<K> is a disjoint-set data structure. It tracks set membership of n elements indexed from 0 to n - 1. The scalar type is K which must be an unsigned integer type.

Traits

IndexType

Trait for the unsigned integer type used for node and edge indices.

Type Definitions

DefaultIx

The default integer type for graph indices. u32 is the default to reduce the size of the graph's data and improve performance in the common case.