fix: constraint for ArithmeticCrossover
1 files changed, 1 insertions(+), 1 deletions(-) M codes/eoa_lib/src/crossover.rs
M codes/eoa_lib/src/crossover.rs => codes/eoa_lib/src/crossover.rs +1 -1
@@ 335,7 335,7 @@ pub struct ArithmeticCrossover<D: Dim, TOutput> { _phantom2: PhantomData<TOutput>, } -impl<D, TOutput> ArithmeticCrossover<D, TOutput> { +impl<D: Dim, TOutput> ArithmeticCrossover<D, TOutput> { pub fn new() -> Self { Self { _phantom1: PhantomData,