pub trait TrimStrategy {
// Required method
fn assign_values(&self, tree: &mut TrimNode);
}Expand description
Trait for assigning information value to tree nodes.
Required Methods§
Sourcefn assign_values(&self, tree: &mut TrimNode)
fn assign_values(&self, tree: &mut TrimNode)
Assign value scores to all nodes in the tree.