https://github.com/michelleblom/margin-irv
Raw File
Tip revision: 8dab1759785d5e44321c512a17b8f6cb1fbfa52f authored by michelleblom on 18 September 2019, 07:20:29 UTC
Updated flags in Makefile and licence headers.
Tip revision: 8dab175
run_NSW2015.sh
#!/bin/sh

# Run with tightest scoring rules
for bf in NSW2015/*ballots.txt; do
	bn=${bf##*/}
	./marginirv -ballots ${bf} -score -tight > tgt_margin_${bn}
done


# Run with tightest scoring rules
for bf in NSW2015/*ballots.txt; do
	bn=${bf##*/}
	./marginirv -ballots ${bf} -score -tight -electonly 2 LAB CLP > tgt_LAB_CLP_margin_${bn}
done

# Run with tightest scoring rules
for bf in NSW2015/*ballots.txt; do
	bn=${bf##*/}
	./marginirv -ballots ${bf} -score -tight -electonly 3 LAB CLP GRN > tgt_LAB_CLP_GRN_margin_${bn}
done


back to top