[][src]Module tallystick::condorcet

The Condorcet method is a ranked-choice voting system that elects the candidate that would win a majority of the vote in all of the head-to-head elections against each of the other candidates.

The Condorcet method isn't guarunteed to produce a single-winner due to the non-transitive nature of group choice.

Structs

CondorcetTally

A generic condorcet tally.

Type Definitions

DefaultCondorcetTally

A condorcet tally using u64 integers to count votes. DefaultCondorcetTally is generally preferred over CondorcetTally, except when using vote weights that contains fractions. Since this is an alias, refer to CondorcetTally for method documentation.