1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-07 12:02:30 +03:00

Change my-function-name-- to my_function_name, and optimizer renames.

This commit is contained in:
Bruce Momjian
1999-02-13 23:22:53 +00:00
parent 8c3fff7337
commit 6724a50787
617 changed files with 2005 additions and 2031 deletions

View File

@@ -1,11 +1,11 @@
/*------------------------------------------------------------------------
*
* geqo_misc.c--
* geqo_misc.c
* misc. printout and debug stuff
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: geqo_misc.c,v 1.16 1999/02/12 17:24:47 momjian Exp $
* $Id: geqo_misc.c,v 1.17 1999/02/13 23:16:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -43,7 +43,7 @@
static float avg_pool(Pool *pool);
/* avg_pool--
/* avg_pool
*
*/
static float
@@ -61,7 +61,7 @@ avg_pool(Pool *pool)
return (float) cumulative / pool->size;
}
/* print_pool--
/* print_pool
*/
void
print_pool(FILE *fp, Pool *pool, int start, int stop)
@@ -91,7 +91,7 @@ print_pool(FILE *fp, Pool *pool, int start, int stop)
}
}
/* print_gen--
/* print_gen
*
* printout for chromosome: best, worst, mean, average
*