Trait sp_npos_elections::EvaluateSupport[][src]

pub trait EvaluateSupport<K> {
    fn evaluate(self) -> ElectionScore;
}
Expand description

Extension trait for evaluating a support map or vector.

Required methods

Evaluate a support map. The returned tuple contains:

  • Minimum support. This value must be maximized.
  • Sum of all supports. This value must be maximized.
  • Sum of all supports squared. This value must be minimized.

Implementors