Fix logic error with CSV reporting of nontransferables with invalid votes
This commit is contained in:
parent
d222207318
commit
4dd748186f
@ -543,7 +543,7 @@ where
|
|||||||
} else {
|
} else {
|
||||||
stage_results[3 + election.candidates.len()].push(format!(r#"{:.dps$}"#, nt_transfers, dps=opts.pp_decimals));
|
stage_results[3 + election.candidates.len()].push(format!(r#"{:.dps$}"#, nt_transfers, dps=opts.pp_decimals));
|
||||||
}
|
}
|
||||||
stage_results[3 + election.candidates.len()].push(format!(r#"{:.dps$}"#, &state.exhausted.votes + &state.loss_fraction.votes, dps=opts.pp_decimals));
|
stage_results[3 + election.candidates.len()].push(format!(r#"{:.dps$}"#, &state.exhausted.votes + &state.loss_fraction.votes - &invalid_votes, dps=opts.pp_decimals));
|
||||||
|
|
||||||
// Totals
|
// Totals
|
||||||
stage_results[4 + election.candidates.len()].push(String::new());
|
stage_results[4 + election.candidates.len()].push(String::new());
|
||||||
|
Loading…
Reference in New Issue
Block a user