summaryrefslogtreecommitdiff
path: root/comms/yagiuda/files/patch-src_genetic__algorithm__lib.c
blob: 16fdf5460dfbdd7b703392ba5994a86af4ffb35f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- src/genetic_algorithm_lib.c.orig	2000-10-28 13:04:39 UTC
+++ src/genetic_algorithm_lib.c
@@ -3,9 +3,8 @@
 #endif
 #include <string.h>
 
-#include <values.h>
-#include <math.h>
 #include <sys/types.h>
+#include <math.h>
 #include <errno.h>
 #include "yagi.h"
 
@@ -245,7 +244,7 @@ int Selection(FILE *fd, int gen)
 	GeneRecord *temp ;
 	double minfit,maxfit ;
 	sigma=0.0 ;
-	minfit=MAXDOUBLE ; 
+	minfit=MAXFLOAT;
 	maxfit=-minfit ;
 	/* minfit=1e308; maxfit=-1e308; XXXXXXXXXXXXXXXXXXXXXX */
 	for(a=0 ; a<population_size ; a++ )