View Javadoc
1   package net.bmahe.genetics4j.gp.spec.combination;
2   
3   import org.immutables.value.Value;
4   
5   import net.bmahe.genetics4j.core.spec.combination.CombinationPolicy;
6   
7   @Value.Immutable
8   public abstract class ProgramRandomCombine implements CombinationPolicy {
9   
10  	public static ProgramRandomCombine build() {
11  		return new ProgramRandomCombine() {
12  		};
13  	}
14  }