]> gitweb.michael.orlitzky.com - dead/census-tools.git/blobdiff - bin/linear_programs/trials-uniform-large
Fix an off-by-one error.
[dead/census-tools.git] / bin / linear_programs / trials-uniform-large
index 3b354e6a1c314a693d8b7492d7c0fac7f397d5ea..27b9366a1b9f87eea3f5566e2a016801bec29da2 100755 (executable)
@@ -73,7 +73,7 @@ for idx in range(0, NUM_TRIALS):
     if solution_string in solutions:
         solutions[solution_string] += 1
     else:
-        solutions[solution_string] = 0
+        solutions[solution_string] = 1
 
 
 print "Solution Vector : Count"