00001 /*------------------------------------------------------------------------- 00002 * 00003 * geqo_misc.h 00004 * prototypes for printout routines in optimizer/geqo 00005 * 00006 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group 00007 * Portions Copyright (c) 1994, Regents of the University of California 00008 * 00009 * src/include/optimizer/geqo_misc.h 00010 * 00011 *------------------------------------------------------------------------- 00012 */ 00013 00014 /* contributed by: 00015 =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= 00016 * Martin Utesch * Institute of Automatic Control * 00017 = = University of Mining and Technology = 00018 * [email protected] * Freiberg, Germany * 00019 =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*= 00020 */ 00021 00022 #ifndef GEQO_MISC_H 00023 #define GEQO_MISC_H 00024 00025 #include "optimizer/geqo_recombination.h" 00026 00027 #ifdef GEQO_DEBUG 00028 00029 extern void print_pool(FILE *fp, Pool *pool, int start, int stop); 00030 extern void print_gen(FILE *fp, Pool *pool, int generation); 00031 extern void print_edge_table(FILE *fp, Edge *edge_table, int num_gene); 00032 #endif /* GEQO_DEBUG */ 00033 00034 #endif /* GEQO_MISC_H */