X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=appendix-a6.git;a=blobdiff_plain;f=compute-scottish-stv;h=40a6667e4322b109be33a666c78eaf4524f5cdb9;hp=47604073388b5a14acc81a847ea9142e2ca05a2b;hb=74893eb17a71ef9a0626be1237d1a5c5b84bcadb;hpb=2ec4a285f3ad944e9cf392f0796fbeff11052bfb diff --git a/compute-scottish-stv b/compute-scottish-stv index 4760407..40a6667 100755 --- a/compute-scottish-stv +++ b/compute-scottish-stv @@ -58,6 +58,8 @@ $SIG{__DIE__} = sub { die $_[0]; }; +sub total_history_cmp (); + sub unkopt ($$) { my ($what,$opt) = @_; if ($opt =~ m/^[A-Z]/) { @@ -67,6 +69,23 @@ sub unkopt ($$) { } } +my $display_cmp = \&total_history_cmp; +my $for_compare = 0; + +while (@ARGV && $ARGV[0] =~ m/^\-/) { + $_ = shift @ARGV; + if (m/^--$/) { + last; + } elsif (m/^--sort=alpha$/) { + $display_cmp = sub { $b->{Cand} cmp $a->{Cand} }; + } elsif (m/^--for-compare$/) { + $for_compare = 1; + unshift @ARGV, '--sort=alpha'; + } else { + die; + } +} + for (;;) { $_ = <>; if (m/^\| /) { @@ -186,20 +205,22 @@ sub sv ($) { sub prf { my $fmt = shift; - printf "stage %d: ".$fmt, $stage, @_; + printf " ".$fmt, @_; } sub countballots () { + my @pr; + foreach my $c (values %cands) { next if $c->{NonCont}; $c->{Total} = 0/1; $c->{Total} += $_->{Weight} foreach @{ $c->{Votes} }; print DEBUG "counted $c->{Cand} $c->{Total}\n"; $c->{History}[$stage-1] = $c->{Total}; + push @pr, $c; } - foreach my $c (reverse sort total_history_cmp - grep { !$_->{NonCont} } values %cands) { + foreach my $c (reverse sort $display_cmp @pr) { prf "candidate %-10s: %s votes\n", $c->{Cand}, sv $c->{Total}; } } @@ -208,7 +229,8 @@ sub computequota () { my $totalvalid = 0/1; $totalvalid += $_->{Total} foreach values %cands; $quota = floor($totalvalid / (1 + $seats) + 1); - prf "total valid %s quota %s\n", (sv $totalvalid), (sv $quota); + prf "total valid %s\n", sv $totalvalid; + prf "quota %s\n", sv $quota; } sub total_history_cmp () { @@ -296,6 +318,7 @@ $stage = 0; for (;;) { $stage++; + printf "stage %3d:\n", $stage; sortballots @allvotes if $stage == 1; @@ -310,6 +333,7 @@ for (;;) { prf "electing %s to fill remaining place(s)\n", $c->{Cand}; elect_core $c; } + countballots() if $for_compare; last; } @@ -385,9 +409,15 @@ for (;;) { print "Winners:\n"; -foreach my $i (0..$#elected) { - my $c = $elected[$i]; - printf " %3d. %-10s %s\n", $i+1, $c->{Cand}, $c->{Desc}; +if ($for_compare) { + foreach my $c (sort { $a->{Cand} cmp $b->{Cand} } @elected) { + printf " %s\n", $c->{Cand}; + } +} else { + foreach my $i (0..$#elected) { + my $c = $elected[$i]; + printf " %3d. %-10s %s\n", $i+1, $c->{Cand}, $c->{Desc}; + } } print "done.\n";