From 2b8573730f8849109f446b50301f2b6cd01b6e86 Mon Sep 17 00:00:00 2001 From: mickenordin Date: Tue, 7 Jun 2016 23:30:59 +0200 Subject: [PATCH] Less sleep more mutation --- bacteria.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacteria.cpp b/bacteria.cpp index bdfb94d..2b9de84 100644 --- a/bacteria.cpp +++ b/bacteria.cpp @@ -73,7 +73,7 @@ int main(int argc,char** argv) { string executable = "/bin/chmod +x " + filename; string run = filename; system(executable.c_str()); - this_thread::sleep_for (chrono::seconds(3)); + this_thread::sleep_for (chrono::seconds(1)); system(run.c_str()); // This is the dangerous part ^^ } return 0;