Uses of Class
net.bmahe.genetics4j.gpu.spec.fitness.OpenCLFitness
Packages that use OpenCLFitness
-
Uses of OpenCLFitness in net.bmahe.genetics4j.gpu.spec
Fields in net.bmahe.genetics4j.gpu.spec declared as OpenCLFitnessModifier and TypeFieldDescriptionprivate OpenCLFitness<T> ImmutableGPUEAConfiguration.Builder.fitnessprivate final OpenCLFitness<T> ImmutableGPUEAConfiguration.fitnessMethods in net.bmahe.genetics4j.gpu.spec that return OpenCLFitnessModifier and TypeMethodDescriptionabstract OpenCLFitness<T> GPUEAConfiguration.fitness()Returns the GPU-specific fitness function that implements evaluation using OpenCL.ImmutableGPUEAConfiguration.fitness()Returns the GPU-specific fitness function that implements evaluation using OpenCL.Methods in net.bmahe.genetics4j.gpu.spec with parameters of type OpenCLFitnessModifier and TypeMethodDescriptionfinal GPUEAConfiguration.Builder<T> ImmutableGPUEAConfiguration.Builder.fitness(OpenCLFitness<T> fitness) Initializes the value for thefitnessattribute.final ImmutableGPUEAConfiguration<T> ImmutableGPUEAConfiguration.withFitness(OpenCLFitness<T> value) Copy the current immutable object by setting a value for thefitnessattribute.Constructors in net.bmahe.genetics4j.gpu.spec with parameters of type OpenCLFitnessModifierConstructorDescriptionprivateImmutableGPUEAConfiguration(List<ChromosomeSpec> chromosomeSpecs, SelectionPolicy parentSelectionPolicy, CombinationPolicy combinationPolicy, List<MutationPolicy> mutationPolicies, ReplacementStrategy replacementStrategy, PostEvaluationProcessor<T> postEvaluationProcessor, Termination<T> termination, Supplier<Genotype> genotypeGenerator, Collection<Genotype> seedPopulation, GenotypeCombinator genotypeCombinator, double offspringGeneratedRatio, Optimization optimization, Program program, OpenCLFitness<T> fitness) -
Uses of OpenCLFitness in net.bmahe.genetics4j.gpu.spec.fitness
Subclasses of OpenCLFitness in net.bmahe.genetics4j.gpu.spec.fitnessModifier and TypeClassDescriptionclassMultiStageFitness<T extends Comparable<T>>GPU-accelerated fitness evaluator that executes multiple sequential OpenCL kernels for complex fitness computation.classSingleKernelFitness<T extends Comparable<T>>GPU-accelerated fitness evaluator that executes a single OpenCL kernel for fitness computation.