geqo_selection.h 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. /*-------------------------------------------------------------------------
  2. *
  3. * geqo_selection.h
  4. * prototypes for selection routines in optimizer/geqo
  5. *
  6. * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
  7. * Portions Copyright (c) 1994, Regents of the University of California
  8. *
  9. * src/include/optimizer/geqo_selection.h
  10. *
  11. *-------------------------------------------------------------------------
  12. */
  13. /* contributed by:
  14. =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
  15. * Martin Utesch * Institute of Automatic Control *
  16. = = University of Mining and Technology =
  17. * [email protected] * Freiberg, Germany *
  18. =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
  19. */
  20. #ifndef GEQO_SELECTION_H
  21. #define GEQO_SELECTION_H
  22. #include "optimizer/geqo.h"
  23. extern void geqo_selection(PlannerInfo *root,
  24. Chromosome *momma, Chromosome *daddy,
  25. Pool *pool, double bias);
  26. #endif /* GEQO_SELECTION_H */