wybr/lib.rs
1pub mod common;
2mod io;
3pub mod methods;
4pub mod outcome;
5mod prng;
6pub mod tally;
7
8pub use common::{BordaKind, ElectionError, Outcome, PairScore, Quota, SetType, Transfer};
9pub use tally::{Tally, VoteMatrix, VoteTree};
10
11pub use methods::{
12 schwartz_set, smith_set, Alternative, Baldwin, Borda, Irv, Meek, Minimax, Nanson, RankedPairs,
13 Schulze,
14};