00001 /*------------------------------------------------------------------------- 00002 * 00003 * geqo_selection.h 00004 * prototypes for selection 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_selection.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 00023 #ifndef GEQO_SELECTION_H 00024 #define GEQO_SELECTION_H 00025 00026 #include "optimizer/geqo.h" 00027 00028 00029 extern void geqo_selection(PlannerInfo *root, 00030 Chromosome *momma, Chromosome *daddy, 00031 Pool *pool, double bias); 00032 00033 #endif /* GEQO_SELECTION_H */