wybr 0.0.6

Collection of preferential voting methods
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod common;
mod io;
pub mod methods;
pub mod outcome;
mod prng;
pub mod tally;

pub use common::{BordaKind, ElectionError, Outcome, PairScore, Quota, SetType, Transfer};
pub use tally::{Tally, VoteMatrix, VoteTree};

pub use methods::{
    schwartz_set, smith_set, Alternative, Baldwin, Borda, Irv, Meek, Minimax, Nanson, RankedPairs,
    Schulze,
};