Skip to content

Commit

Permalink
comment printing
Browse files Browse the repository at this point in the history
  • Loading branch information
bblodfon committed Aug 12, 2024
1 parent 5c09975 commit 103bf45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/voting_methods.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ List seq_PAV_rcpp(List voters, CharacterVector candidates, NumericVector weights
int n_remaining_candidates = remaining_candidates.size();
int index;
String best_candidate;
Rcout << n_remaining_candidates << std::endl;
// Rcout << n_remaining_candidates << std::endl;

if (n_remaining_candidates == 1) {
// Only one candidate remaining so that's our best candidate!
Expand Down Expand Up @@ -195,7 +195,7 @@ List revseq_PAV_rcpp(List voters, CharacterVector candidates, NumericVector weig
int n_remaining_candidates = remaining_candidates.size();
int index;
String worst_candidate;
Rcout << n_remaining_candidates << std::endl;
// Rcout << n_remaining_candidates << std::endl;

if (n_remaining_candidates == 1) {
// Only one candidate remaining so that's the last (worst) candidate!
Expand Down

0 comments on commit 103bf45

Please sign in to comment.