]> gitweb.michael.orlitzky.com - dead/census-tools.git/blobdiff - bin/linear_programs/trials-uniform-small
Fix an off-by-one error.
[dead/census-tools.git] / bin / linear_programs / trials-uniform-small
index 255870221fda498bc9b1a50b157b1b28dd8b8c67..5d14e76727e4366ec494004ac1370b384b5e30ad 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"