Skip to content
Prev Previous commit
Next Next commit
making the random fuzzer faster by default
  • Loading branch information
Daniel Lemire committed Mar 16, 2024
commit 4564063be8d90408cccc3f4e24f2cf1df19e665e
2 changes: 1 addition & 1 deletion tests/random_fuzzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ int main(int argc, char*argv[]) {
}
std::cout << "testing: " << e->name() << std::endl;
}
size_t N = 100000;
size_t N = 10000;
if (argc == 2) {
try {
N = std::stoi(argv[1]);
Expand Down