mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-23 19:32:19 +00:00
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* geqo_misc.h
|
|
* prototypes for printout routines in optimizer/geqo
|
|
*
|
|
* Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/optimizer/geqo_misc.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
/* contributed by:
|
|
=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
|
|
* Martin Utesch * Institute of Automatic Control *
|
|
= = University of Mining and Technology =
|
|
* utesch@aut.tu-freiberg.de * Freiberg, Germany *
|
|
=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
|
|
*/
|
|
|
|
#ifndef GEQO_MISC_H
|
|
#define GEQO_MISC_H
|
|
|
|
#include "optimizer/geqo.h"
|
|
#include "optimizer/geqo_recombination.h"
|
|
|
|
#ifdef GEQO_DEBUG
|
|
|
|
extern void print_pool(FILE *fp, Pool *pool, int start, int stop);
|
|
extern void print_gen(FILE *fp, Pool *pool, int generation);
|
|
extern void print_edge_table(FILE *fp, Edge *edge_table, int num_gene);
|
|
#endif /* GEQO_DEBUG */
|
|
|
|
#endif /* GEQO_MISC_H */
|