Trait abd_clam::PartitionCriterion

source ·
pub trait PartitionCriterion<U: Number>: Send + Sync {
    // Required method
    fn check(&self, c: &UniBall<U>) -> bool;
}
Expand description

A criterion used to decide when to partition a Cluster.

Required Methods§

source

fn check(&self, c: &UniBall<U>) -> bool

Check whether a Cluster meets the criterion for partitioning.

Implementors§