summaryrefslogtreecommitdiff
path: root/src/backend/optimizer/geqo/geqo_selection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/optimizer/geqo/geqo_selection.c')
-rw-r--r--src/backend/optimizer/geqo/geqo_selection.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/optimizer/geqo/geqo_selection.c b/src/backend/optimizer/geqo/geqo_selection.c
index 37d620ea20..b42e4450f2 100644
--- a/src/backend/optimizer/geqo/geqo_selection.c
+++ b/src/backend/optimizer/geqo/geqo_selection.c
@@ -1,11 +1,11 @@
/*-------------------------------------------------------------------------
*
- * geqo_selection.c--
+ * geqo_selection.c
* linear selection scheme for the genetic query optimizer
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: geqo_selection.c,v 1.6 1999/02/03 21:16:23 momjian Exp $
+ * $Id: geqo_selection.c,v 1.7 1999/02/13 23:16:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -57,7 +57,7 @@
static int linear(int max, double bias);
-/* geqo_selection--
+/* geqo_selection
*
* according to bias described by input parameters,
* second genes are selected from the pool
@@ -81,7 +81,7 @@ geqo_selection(Chromosome *momma, Chromosome *daddy, Pool *pool, double bias)
geqo_copy(daddy, &pool->data[second], pool->string_length);
}
-/* linear--
+/* linear
* generates random integer between 0 and input max number
* using input linear bias
*