Skip to content

Commit

Permalink
Add tests. Clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
artoonie committed Jan 1, 2025
1 parent 12e20f1 commit 6fce534
Show file tree
Hide file tree
Showing 32 changed files with 322 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/network/brightspots/rcv/DominionCvrReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class DominionCvrReader extends BaseCvrReader {
private static final String CONTEST_MANIFEST = "ContestManifest.json";
private static final String CVR_EXPORT = "CvrExport.json";
private static final String CVR_EXPORT_PATTERN = "CvrExport_%d.json";
private static final int EXCLUDE_CONTEST_CONDITION_ID = 7;
// map of precinct ID to precinct description
private Map<Integer, String> precincts;
// map of precinct portion ID to precinct portion description
Expand Down Expand Up @@ -352,8 +353,7 @@ private int parseCvrFile(
throw new CvrParseException();
}
ArrayList outstackConditionIds = (ArrayList) contest.get("OutstackConditionIds");
if (outstackConditionIds.contains(7)) {
Logger.info("Skipping partial-count ballot. Voter may not vote in this contest.");
if (outstackConditionIds.contains(EXCLUDE_CONTEST_CONDITION_ID)) {
continue;
}
ArrayList<Pair<Integer, String>> rankings = new ArrayList<>();
Expand Down
6 changes: 6 additions & 0 deletions src/test/java/network/brightspots/rcv/TabulatorTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,12 @@ void testDominionAlaska() {
runTabulationTest("dominion_alaska");
}

@Test
@DisplayName("Dominion test - Alaska 2024 Partial Ballot Test")
void testDominionAlaskaPartialBallot() {
runTabulationTest("2024_alaska_dominion");
}

@Test
@DisplayName("Dominion test - Kansas test data")
void testDominionKansas() {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"tabulatorVersion" : "TEST",
"outputSettings" : {
"contestName" : "Alaska 2024 Congressional",
"outputDirectory" : "output",
"contestDate" : "2024-11-05",
"contestJurisdiction" : "Alaska",
"contestOffice" : "US House",
"tabulateByBatch" : false,
"tabulateByPrecinct" : false,
"generateCdfJson" : false
},
"cvrFileSources" : [ {
"filePath" : "./partial_cvr/",
"contestId" : "7",
"firstVoteColumnIndex" : "",
"firstVoteRowIndex" : "",
"idColumnIndex" : "",
"batchColumnIndex" : "",
"precinctColumnIndex" : "",
"overvoteDelimiter" : "",
"provider" : "dominion",
"overvoteLabel" : "",
"skippedRankLabel" : "",
"undeclaredWriteInLabel" : "476",
"treatBlankAsUndeclaredWriteIn" : false
} ],
"candidates" : [ {
"name" : "Howe, John Wayne",
"excluded" : false,
"aliases" : [ "520" ]
}, {
"name" : "Peltola, Mary S.",
"excluded" : false,
"aliases" : [ "518" ]
}, {
"name" : "Hafner, Eric",
"excluded" : false,
"aliases" : [ "552" ]
}, {
"name" : "Begich, Nick",
"excluded" : false,
"aliases" : [ "517" ]
} ],
"rules" : {
"tiebreakMode" : "stopCountingAndAsk",
"overvoteRule" : "exhaustImmediately",
"winnerElectionMode" : "singleWinnerMajority",
"randomSeed" : "",
"numberOfWinners" : "1",
"multiSeatBottomsUpPercentageThreshold" : "",
"decimalPlacesForVoteArithmetic" : "4",
"minimumVoteThreshold" : "",
"maxSkippedRanksAllowed" : "1",
"maxRankingsAllowed" : "max",
"nonIntegerWinningThreshold" : false,
"doesFirstRoundDetermineThreshold" : false,
"hareQuota" : false,
"batchElimination" : false,
"continueUntilTwoCandidatesRemain" : false,
"stopTabulationEarlyAfterRound" : "",
"exhaustOnDuplicateCandidate" : false,
"rulesDescription" : "",
"treatBlankAsUndeclaredWriteIn" : false
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Contest Information
Generated By,RCTab 1.3.999
CSV Format Version,1
Type of Election,Single-Winner
Contest,Alaska 2024 Congressional
Jurisdiction,Alaska
Office,US House
Date,2024-11-05
Winner(s),"Begich, Nick"
Final Threshold,59

Contest Summary
Number to be Elected,1
Number of Candidates,5
Total Number of Ballots,124
Number of Undervotes (No Rankings),8

Rounds,Round 1 Votes,% of vote,transfer
Eliminated,,,
Elected,"Begich, Nick",,
"Begich, Nick",66,56.89%,0
"Peltola, Mary S.",45,38.79%,0
"Howe, John Wayne",4,3.44%,0
"Hafner, Eric",1,0.86%,0
Undeclared Write-ins,0,0.0%,0
Active Ballots,116,,
Current Round Threshold,59,,
Inactive Ballots by Overvotes,0,,0
Inactive Ballots by Skipped Rankings,0,,0
Inactive Ballots by Exhausted Choices,0,,0
Inactive Ballots by Repeated Rankings,0,,0
Inactive Ballots Total,0,,0
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"config" : {
"contest" : "Alaska 2024 Congressional",
"date" : "2024-11-05",
"generatedBy" : "RCTab 1.3.999",
"jurisdiction" : "Alaska",
"office" : "US House"
},
"jsonFormatVersion" : "1",
"results" : [ {
"inactiveBallots" : {
"exhaustedChoices" : "0",
"overvotes" : "0",
"repeatedRankings" : "0",
"skippedRankings" : "0"
},
"round" : 1,
"tally" : {
"Begich, Nick" : "66",
"Hafner, Eric" : "1",
"Howe, John Wayne" : "4",
"Peltola, Mary S." : "45",
"Undeclared Write-ins" : "0"
},
"tallyResults" : [ {
"elected" : "Begich, Nick",
"transfers" : { }
} ],
"threshold" : "59"
} ],
"summary" : {
"finalThreshold" : "59",
"numCandidates" : 5,
"numWinners" : 1,
"totalNumBallots" : "124",
"undervotes" : 8
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
Source Filepath,CVR Provider,Contest Id,Tabulator Id,Batch Id,Record Id,Precinct,Precinct Portion,Rank 1,Rank 2,Rank 3,Rank 4
./partial_cvr/,dominion,7,92200,113,63,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,62,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,37,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,19,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,16,,District 24 - Absentee,"Begich, Nick",476,undervote,undervote
./partial_cvr/,dominion,7,92200,113,61,,District 24 - Absentee,"Begich, Nick","Peltola, Mary S.",undervote,undervote
./partial_cvr/,dominion,7,92200,113,60,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,40,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,20,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,12,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne",undervote,undervote
./partial_cvr/,dominion,7,92200,113,54,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,53,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,35,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,21,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,1,,District 24 - Absentee,undervote,undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,56,,District 24 - Absentee,"Peltola, Mary S.","Begich, Nick","Howe, John Wayne",undervote
./partial_cvr/,dominion,7,92200,113,55,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,39,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,22,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,11,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,58,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric",undervote,undervote
./partial_cvr/,dominion,7,92200,113,57,,District 24 - Absentee,"Hafner, Eric","Peltola, Mary S.","Howe, John Wayne",undervote
./partial_cvr/,dominion,7,92200,113,41,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric","Begich, Nick","Howe, John Wayne"
./partial_cvr/,dominion,7,92200,113,23,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric","Begich, Nick",undervote
./partial_cvr/,dominion,7,92200,113,17,,District 24 - Absentee,"Begich, Nick","Peltola, Mary S.",undervote,undervote
./partial_cvr/,dominion,7,92200,113,68,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,67,,District 24 - Absentee,"Begich, Nick","Begich, Nick","Begich, Nick","Begich, Nick"
./partial_cvr/,dominion,7,92200,113,50,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne","Hafner, Eric","Peltola, Mary S."
./partial_cvr/,dominion,7,92200,113,24,,District 24 - Absentee,undervote,undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,10,,District 24 - Absentee,"Begich, Nick","Peltola, Mary S.",undervote,"Howe, John Wayne"
./partial_cvr/,dominion,7,92200,113,65,,District 24 - Absentee,"Howe, John Wayne",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,64,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,42,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne",undervote,undervote
./partial_cvr/,dominion,7,92200,113,25,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,3,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric","Howe, John Wayne",undervote
./partial_cvr/,dominion,7,92200,113,82,,District 24 - Absentee,"Peltola, Mary S.","Begich, Nick","Howe, John Wayne","Hafner, Eric"
./partial_cvr/,dominion,7,92200,113,81,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne",undervote,undervote
./partial_cvr/,dominion,7,92200,113,49,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,26,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,9,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric",undervote,undervote
./partial_cvr/,dominion,7,92200,113,70,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,69,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,43,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,27,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne",undervote,undervote
./partial_cvr/,dominion,7,92200,113,2,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,74,,District 24 - Absentee,undervote,undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,73,,District 24 - Absentee,"Begich, Nick","Peltola, Mary S.","Howe, John Wayne","Hafner, Eric"
./partial_cvr/,dominion,7,92200,113,46,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric","Howe, John Wayne","Begich, Nick"
./partial_cvr/,dominion,7,92200,113,28,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric",undervote,undervote
./partial_cvr/,dominion,7,92200,113,8,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,76,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,75,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,45,,District 24 - Absentee,undervote,undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,29,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,4,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,78,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,77,,District 24 - Absentee,"Howe, John Wayne","Begich, Nick",476,undervote
./partial_cvr/,dominion,7,92200,113,47,,District 24 - Absentee,"Peltola, Mary S.","Begich, Nick",undervote,undervote
./partial_cvr/,dominion,7,92200,113,30,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,13,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne",undervote,undervote
./partial_cvr/,dominion,7,92200,113,72,,District 24 - Absentee,undervote,undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,71,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,44,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric","Howe, John Wayne","Begich, Nick"
./partial_cvr/,dominion,7,92200,113,31,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,15,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,86,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,85,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,51,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,32,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,5,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,84,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,83,,District 24 - Absentee,"Begich, Nick","Begich, Nick","Begich, Nick","Begich, Nick"
./partial_cvr/,dominion,7,92200,113,52,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,33,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne","Hafner, Eric","Peltola, Mary S."
./partial_cvr/,dominion,7,92200,113,18,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne",undervote,undervote
./partial_cvr/,dominion,7,92200,113,80,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne",undervote,undervote
./partial_cvr/,dominion,7,92200,113,79,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,48,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,34,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne","Hafner, Eric",476
./partial_cvr/,dominion,7,92200,113,7,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,66,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne",undervote,undervote
./partial_cvr/,dominion,7,92200,113,36,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,14,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,88,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric","Howe, John Wayne",undervote
./partial_cvr/,dominion,7,92200,113,87,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,59,,District 24 - Absentee,undervote,undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,113,38,,District 24 - Absentee,"Begich, Nick","Peltola, Mary S.",undervote,undervote
./partial_cvr/,dominion,7,92200,113,6,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,9,3,,District 17 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,9,7,,District 17 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,9,6,,District 17 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,9,1,,District 17 - Absentee,"Peltola, Mary S.","Hafner, Eric",undervote,undervote
./partial_cvr/,dominion,7,92207,9,2,,District 17 - Absentee,"Peltola, Mary S.","Howe, John Wayne",undervote,undervote
./partial_cvr/,dominion,7,92207,9,4,,District 17 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,9,5,,District 17 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,9,8,,District 17 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,119,1,,District 15 - Absentee,undervote,undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,8,1,,District 18 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,8,4,,District 18 - Absentee,"Peltola, Mary S.","Hafner, Eric",undervote,undervote
./partial_cvr/,dominion,7,92207,8,5,,District 18 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,8,2,,District 18 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,8,3,,District 18 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,8,6,,District 18 - Absentee,"Begich, Nick","Begich, Nick","Begich, Nick","Begich, Nick"
./partial_cvr/,dominion,7,92200,118,1,,District 12 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92200,118,2,,District 12 - Absentee,"Peltola, Mary S.","Hafner, Eric","Howe, John Wayne","Begich, Nick"
./partial_cvr/,dominion,7,92200,118,4,,District 12 - Absentee,"Peltola, Mary S.","Howe, John Wayne","Begich, Nick","Hafner, Eric"
./partial_cvr/,dominion,7,92200,118,3,,District 12 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,11,1,,District 16 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,11,3,,District 16 - Absentee,undervote,undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,11,2,,District 16 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92207,11,4,,District 16 - Absentee,"Peltola, Mary S.","Howe, John Wayne","Hafner, Eric","Begich, Nick"
./partial_cvr/,dominion,7,92106,8,1,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric",undervote,undervote
./partial_cvr/,dominion,7,92106,8,3,,District 24 - Absentee,"Howe, John Wayne",undervote,undervote,undervote
./partial_cvr/,dominion,7,92106,8,8,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne","Hafner, Eric","Peltola, Mary S."
./partial_cvr/,dominion,7,92106,8,9,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92106,8,7,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92106,8,2,,District 24 - Absentee,"Begich, Nick","Howe, John Wayne","Hafner, Eric","Peltola, Mary S."
./partial_cvr/,dominion,7,92106,8,10,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92106,8,5,,District 24 - Absentee,"Begich, Nick",undervote,undervote,undervote
./partial_cvr/,dominion,7,92106,8,12,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric",undervote,undervote
./partial_cvr/,dominion,7,92106,8,6,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92106,8,11,,District 24 - Absentee,"Peltola, Mary S.",undervote,undervote,undervote
./partial_cvr/,dominion,7,92106,8,4,,District 24 - Absentee,"Howe, John Wayne","Begich, Nick",undervote,undervote
./partial_cvr/,dominion,7,92106,8,13,,District 24 - Absentee,"Peltola, Mary S.","Hafner, Eric",undervote,undervote
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Contest Information
Generated By,RCTab 1.3.999
CSV Format Version,1
Type of Election,Single-Winner
Contest,Alaska 2024 Congressional
Jurisdiction,Alaska
Office,US House
Date,2024-11-05
Winner(s),"Begich, Nick"
Final Threshold,59

Contest Summary
Number to be Elected,1
Number of Candidates,5
Total Number of Ballots,124
Number of Undervotes (No Rankings),8

Rounds,Round 1 Votes,% of vote,transfer
Eliminated,,,
Elected,"Begich, Nick",,
"Begich, Nick",66,56.89%,0
"Peltola, Mary S.",45,38.79%,0
"Howe, John Wayne",4,3.44%,0
"Hafner, Eric",1,0.86%,0
Undeclared Write-ins,0,0.0%,0
Active Ballots,116,,
Current Round Threshold,59,,
Inactive Ballots Total,0,,0

Large diffs are not rendered by default.

Loading

0 comments on commit 6fce534

Please sign in to comment.