From: Florian Forster Date: Fri, 1 Feb 2008 19:24:55 +0000 (+0100) Subject: src/sn-evolution.c: Change the default number of iterations to INT_MAX. X-Git-Tag: v1.0.0~121 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=ca99c8ef18a6f87a74385103c043e334d7e98c18;p=sort-networks.git src/sn-evolution.c: Change the default number of iterations to INT_MAX. --- diff --git a/src/sn-evolution.c b/src/sn-evolution.c index 8e37cb3..f43906e 100644 --- a/src/sn-evolution.c +++ b/src/sn-evolution.c @@ -11,6 +11,7 @@ #include #include #include +#include #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;