Module Ga_optimize


module Ga_optimize: sig .. end
Genetic Algorithm.

This module implements a genetic algorithm, as described in Genetic Algorithms, David Goldberg, 1989.


module type LOCAL = sig .. end
Input signature for the functor Ga_optimize.Make.
module Make: 
functor (Local : LOCAL) -> sig .. end
Functor building an implementation of a genetic algorithm, given a set of functions for population generation and evaluation, elements type, mutation and crossover operators on elements.