00001 /*------------------------------------------------------------------------- 00002 * 00003 * geqo_mutation.h 00004 * prototypes for mutation functions 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_mutation.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_MUTATION_H 00023 #define GEQO_MUTATION_H 00024 00025 #include "optimizer/geqo.h" 00026 00027 00028 extern void geqo_mutation(PlannerInfo *root, Gene *tour, int num_gene); 00029 00030 #endif /* GEQO_MUTATION_H */