Make more int mutator types public (#2821)
This commit is contained in:
parent
719a3c0f07
commit
9b8b552f27
@ -26,9 +26,15 @@ pub type IntMutatorsType = tuple_list_type!(
|
|||||||
RandMutator,
|
RandMutator,
|
||||||
CrossoverMutator
|
CrossoverMutator
|
||||||
);
|
);
|
||||||
type IntMutatorsCrossoverType = tuple_list_type!(CrossoverMutator);
|
|
||||||
type MappedIntMutatorsCrossoverType<F> = tuple_list_type!(MappedCrossoverMutator<F>);
|
/// Mutators for integer-like inputs that implement some form of crossover
|
||||||
type IntMutatorsNoCrossoverType = tuple_list_type!(
|
pub type IntMutatorsCrossoverType = tuple_list_type!(CrossoverMutator);
|
||||||
|
|
||||||
|
/// Mapped mutators for integer-like inputs that implement some form of crossover.
|
||||||
|
pub type MappedIntMutatorsCrossoverType<F> = tuple_list_type!(MappedCrossoverMutator<F>);
|
||||||
|
|
||||||
|
/// Mutators for integer-like inputs without crossover mutations
|
||||||
|
pub type IntMutatorsNoCrossoverType = tuple_list_type!(
|
||||||
BitFlipMutator,
|
BitFlipMutator,
|
||||||
NegateMutator,
|
NegateMutator,
|
||||||
IncMutator,
|
IncMutator,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user