src/sn-evolution.c: Change the default number of iterations to INT_MAX.
authorFlorian Forster <octo@huhu.verplant.org>
Fri, 1 Feb 2008 19:24:55 +0000 (20:24 +0100)
committerFlorian Forster <octo@huhu.verplant.org>
Fri, 1 Feb 2008 19:24:55 +0000 (20:24 +0100)
src/sn-evolution.c

index 8e37cb3..f43906e 100644 (file)
@@ -11,6 +11,7 @@
 #include <unistd.h>
 #include <signal.h>
 #include <assert.h>
+#include <limits.h>
 
 #include "sn_network.h"
 
@@ -21,7 +22,7 @@ struct population_entry_s
 };
 typedef struct population_entry_s population_entry_t;
 
-static int iterations_num  = 1000000;
+static int iterations_num  = INT_MAX;
 static int max_population_size = 128;
 static int olymp_size = 96;
 static int inputs_num      = 16;