X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=compute-scottish-stv;h=12645fd4d64da0ce5b13aea6f435afc48c8935d9;hb=af19a4306f157650f182d15cf4e02325f372b2d7;hp=528cc5f0891a1556a26ed89c96547406122e1dba;hpb=6f5838e665e31aa6d3e1216eb6e29884254b0f5a;p=appendix-a6.git diff --git a/compute-scottish-stv b/compute-scottish-stv index 528cc5f..12645fd 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,7 +205,7 @@ sub sv ($) { sub prf { my $fmt = shift; - printf "stage %d: ".$fmt, $stage, @_; + printf " ".$fmt, @_; } sub countballots () { @@ -198,7 +217,7 @@ sub countballots () { $c->{History}[$stage-1] = $c->{Total}; } - foreach my $c (reverse sort total_history_cmp + foreach my $c (reverse sort $display_cmp grep { !$_->{NonCont} } values %cands) { prf "candidate %-10s: %s votes\n", $c->{Cand}, sv $c->{Total}; } @@ -207,8 +226,9 @@ sub countballots () { sub computequota () { my $totalvalid = 0/1; $totalvalid += $_->{Total} foreach values %cands; - $quota = floor($totalvalid / (1 + $seats)); - prf "quota %s\n", sv $quota; + $quota = floor($totalvalid / (1 + $seats) + 1); + prf "total valid %s\n", sv $totalvalid; + prf "quota %s\n", sv $quota; } sub total_history_cmp () { @@ -296,6 +316,7 @@ $stage = 0; for (;;) { $stage++; + printf "stage %3d:\n", $stage; sortballots @allvotes if $stage == 1; @@ -310,6 +331,7 @@ for (;;) { prf "electing %s to fill remaining place(s)\n", $c->{Cand}; elect_core $c; } + countballots() if $for_compare; last; } @@ -334,6 +356,8 @@ for (;;) { next; } + last if $seats_remain == 1; # don't bother doing more transfers + my $B = $c->{Total}; my %tspr; @@ -354,7 +378,7 @@ for (;;) { die unless $tspr{"@$previously"} == $xfervalue; } else { $tspr{"@$previously"} = $xfervalue; - prf "transfer value of ballots %s: %s\n", + prf "transfer value of ballots %20s: %s\n", "@$previously", sv $xfervalue; } } @@ -383,9 +407,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";