kingmaker 0.1.0

A modular, performant, social choice framework for the simulation, computation, and analysis of strategic voting.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod elections;
mod methods;
mod preferences;
mod tactics;

use criterion::{criterion_group, criterion_main};

criterion_group!(
    benches,
    preferences::preference_benchmarks,
    methods::method_benchmarks,
    elections::election_benchmarks,
    tactics::tactics_benchmarks,
);
criterion_main!(benches);