<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">The following PR approval voting procedure is an approval limit of Schulze STV<br><br>A score for each candidate set is determined in the following way:    The vote of each ballot is distributed amongst the ballot's approved candidates in the candidate set.  The score for each candidate set is the largest possible vote for the candidate in the set with the smallest vote.  The candidate set with the highest score wins the election.<br><br>example: 2 seats <br>approval voting profile<br>10 a <br>  6 a b<br>  2 b <br>  5 a b c<br>  4 c<br>The possible candidate sets are: {a b}, {a c}, and {b c}.<br><br>score for {a b} determined from<br>10 a<br> 11 a b<br>  2 b<br>score for {a b} = 11.5<br><br>score for {a c} determined from<br>16 a <br>  5 a c<br>  4 c<br>score for {a c} = 9<br><br>score for {b c}
 determined from<br> 8 b<br> 5 b c<br> 4 c<br>score for {b c} = 8.5<br><br>set {a b} wins.<br><br><br>Schulze uses a maximum flow algorithm to distribute the votes optimally on each ballot for each candidate set.  Here is another algorithm.<br><br>v_i,a is the vote assigned to candidate a from the ith ballot.  The optimal v_i,a is determined iteratively.<br><br>1) Initially, the vote for each ballot is distributed equally between all the candidates in the candidate set that are approved by that ballot.  <br><br>2) The total vote for a candidate in the set is determined from v_a = sum_i v_i,a.  The lowest vote is a lower bound for the candidate score.<br><br>3) Form the adjusted vote w_i,a =  v_i,a/v_a.  <br><br>4) The adjusted vote for each ballot is w_i = sum_a w_i,a.<br><br>5) The new v_i,a = w_i,a / w_i.  Proceed to step 2.<br><br><br><br>         
 <br><br><br><br> <br><br><br><br><br><br><br><br><br><br><br><br><br><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"><div id="yiv923012591"><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td style="font:inherit;" valign="top"><br></td></tr></tbody></table></div></blockquote></td></tr></table>