about summary refs log tree commit diff stats
path: root/crates/core/src/egraph/union_find.rs
blob: 8d5422d35c35799bdaa8ce64443be8c09f43927d (plain) (blame)
1
2
3
4
5
6
//! Union-find / disjoint-set data structure implementations.

/// Simple union-find implementation.
///
/// Operates according to a union by min-id scheme.
pub struct UnionFind {}