export interface MutationOperator<T> {
    mutate(individual: T): T;
}
