Uses of Class
net.bmahe.genetics4j.core.spec.EAExecutionContext
Packages that use EAExecutionContext
Package
Description
-
Uses of EAExecutionContext in net.bmahe.genetics4j.core
Methods in net.bmahe.genetics4j.core with parameters of type EAExecutionContextModifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
EASystem<T> EASystemFactory.from(EAConfiguration<T> eaConfigurationSync, EAExecutionContext<T> eaExecutionContext) Creates anEASystemwith synchronous fitness evaluation using the common thread pool.static <T extends Comparable<T>>
EASystem<T> EASystemFactory.from(EAConfiguration<T> eaConfigurationSync, EAExecutionContext<T> eaExecutionContext, ExecutorService executorService) Creates anEASystemwith synchronous fitness evaluation and explicit thread pool.static <T extends Comparable<T>>
EASystem<T> EASystemFactory.from(EAConfigurationBulkAsync<T> eaConfigurationBulkAsync, EAExecutionContext<T> eaExecutionContext) Creates anEASystemwith bulk asynchronous fitness evaluation using the common thread pool.static <T extends Comparable<T>>
EASystem<T> EASystemFactory.from(EAConfigurationBulkAsync<T> eaConfigurationBulkAsync, EAExecutionContext<T> eaExecutionContext, ExecutorService executorService) Creates anEASystemwith bulk asynchronous fitness evaluation and explicit thread pool.static <T extends Comparable<T>>
EASystem<T> EASystemFactory.fromWithVirtualThreads(EAConfiguration<T> eaConfigurationSync, EAExecutionContext<T> eaExecutionContext) Creates anEASystemwith virtual thread-based fitness evaluation. -
Uses of EAExecutionContext in net.bmahe.genetics4j.core.evaluation
Fields in net.bmahe.genetics4j.core.evaluation declared as EAExecutionContextModifier and TypeFieldDescriptionprivate final EAExecutionContext<T> FitnessEvaluatorSync.eaExecutionContextprivate final EAExecutionContext<T> FitnessEvaluatorVirtualThread.eaExecutionContextConstructors in net.bmahe.genetics4j.core.evaluation with parameters of type EAExecutionContextModifierConstructorDescriptionFitnessEvaluatorSync(EAExecutionContext<T> _eaExecutionContext, EAConfiguration<T> _eaConfigurationSync, ExecutorService _executorService) FitnessEvaluatorVirtualThread(EAExecutionContext<T> _eaExecutionContext, EAConfiguration<T> _eaConfiguration) -
Uses of EAExecutionContext in net.bmahe.genetics4j.core.spec
Subclasses of EAExecutionContext in net.bmahe.genetics4j.core.specModifier and TypeClassDescriptionfinal classImmutableEAExecutionContext<T extends Comparable<T>>Immutable implementation ofEAExecutionContext.Methods in net.bmahe.genetics4j.core.spec that return EAExecutionContextModifier and TypeMethodDescriptionImmutableEAExecutionContext.Builder.build()Builds a newEAExecutionContext.static <T extends Comparable<T>>
EAExecutionContext<T> ImmutableEAExecutionContext.copyOf(EAExecutionContext<T> instance) Creates an immutable copy of aEAExecutionContextvalue.Methods in net.bmahe.genetics4j.core.spec with parameters of type EAExecutionContextModifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
EAExecutionContext<T> ImmutableEAExecutionContext.copyOf(EAExecutionContext<T> instance) Creates an immutable copy of aEAExecutionContextvalue.ImmutableEAExecutionContext.Builder.from(EAExecutionContext<T> instance) Fill a builder with attribute values from the providedEAExecutionContextinstance.