[][src]Module tallystick::schulze

The Schulze method is an voting system that selects a single winner using votes that express preferences. nightly

Requires the nightly feature to be enabled

The method can also be used to create a sorted list of winners. The Schulze method is also known as Schwartz Sequential dropping (SSD), cloneproof Schwartz sequential dropping (CSSD), the beatpath method, beatpath winner, path voting, and path winner.

The Schulze method is a Condorcet method, which means that if there is a candidate who is preferred by a majority over every other candidate in pairwise comparisons, then this candidate will be the winner when the Schulze method is applied.

Structs

SchulzeTally

A generic schulze tally.

Enums

Variant

Schulze Variants.

Type Definitions

DefaultSchulzeTally

A schulze tally using u64 integers to count votes. DefaultSchulzeTally is generally preferred over SchulzeTally. Since this is an alias, refer to Schulze for method documentation.