dolores-shacontest 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/ext/dl_contest/sha1b.c +2 -2
- data/shacontest.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.1.0
|
data/ext/dl_contest/sha1b.c
CHANGED
|
@@ -464,10 +464,10 @@ int find_best_capitalization(const char* target, char* words, uint64_t start, ui
|
|
|
464
464
|
}
|
|
465
465
|
|
|
466
466
|
if (p % output_freq == 0) {
|
|
467
|
-
printf("Offset: %lld Best Sentence: \"%s\" Lowest Score: %i\n", p, argmin, min);
|
|
467
|
+
//printf("Offset: %lld Best Sentence: \"%s\" Lowest Score: %i\n", p, argmin, min);
|
|
468
468
|
}
|
|
469
469
|
}
|
|
470
|
-
printf("Done -- Best Sentence: \"%s\" Lowest Score: %i\n", argmin, min);
|
|
470
|
+
//printf("Done -- Best Sentence: \"%s\" Lowest Score: %i\n", argmin, min);
|
|
471
471
|
|
|
472
472
|
// send the word back to Ruby
|
|
473
473
|
strcpy(words, argmin);
|
data/shacontest.gemspec
CHANGED