]> git.donarmstrong.com Git - debian-ctte.git/blobdiff - scripts/pocket-devotee
Fix the display of dropped or kept options
[debian-ctte.git] / scripts / pocket-devotee
index 88c79e557318b04a91aa431453db9c0ae2edbc1a..64075c79113684a5407c2573fa58192120c047b1 100755 (executable)
@@ -345,7 +345,7 @@ EOM
           $Drop{$i}++;
           print {$RESULTS} "Dropping Option ", $order_to_options{$i + 1}{key},
               " because of Majority. ($ratio)";
-          my $comparison_sign = $order_to_options{$i + 1}{majority} == 1 ? '<' : '<=';
+          my $comparison_sign = $order_to_options{$i + 1}{majority} == 1 ? '<=' : '<';
           printf {$RESULTS} " %6.3f (%d/%d) $comparison_sign %d\n",
               $ratio, $Beat_Matrix[$i][$max_choices - 1],
               $Beat_Matrix[$max_choices - 1][$i],
@@ -353,7 +353,8 @@ EOM
       } else {
           print {$RESULTS} "Option ", $order_to_options{$i + 1}{key}, " passes Majority.";
           print {$RESULTS} "             ";
-          printf {$RESULTS} " %6.3f (%d/%d) >= %d\n",
+          my $comparison_sign = $order_to_options{$i + 1}{majority} == 1 ? '>' : '>=';
+          printf {$RESULTS} " %6.3f (%d/%d) $comparison_sign %d\n",
               $ratio, $Beat_Matrix[$i][$max_choices - 1],
               $Beat_Matrix[$max_choices - 1][$i],
               $order_to_options{$i + 1}{majority};