case class EvolutionaryAlgorithm(generations: Int = 1000, alpha: Int = 100, mu: Int = 25, lambda: Int = 25, rate: Double = 0.95) extends Opt4JAlgorithm with _EvolutionaryAlgorithm with Product with Serializable
Represents an evolutionary algorithm.
- generations
number of generations
- alpha
number of individuals per generation
- mu
number of parents per generation
- lambda
number of offspring per generation
- rate
rate of the crossover operation
- See also
EvolutionaryAlgorithmModule
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EvolutionaryAlgorithm
- Serializable
- Serializable
- Product
- Equals
- _EvolutionaryAlgorithm
- Optimizer
- Algorithm
- Opt4JAlgorithm
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
EvolutionaryAlgorithm(generations: Int = 1000, alpha: Int = 100, mu: Int = 25, lambda: Int = 25, rate: Double = 0.95)
- generations
number of generations
- alpha
number of individuals per generation
- mu
number of parents per generation
- lambda
number of offspring per generation
- rate
rate of the crossover operation
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val alpha: Int
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
def
create: EvolutionaryAlgorithmModule
Factory method.
Factory method.
- returns
fully-configured optimizer
- Definition Classes
- EvolutionaryAlgorithm → Opt4JAlgorithm
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val generations: Int
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val lambda: Int
- val mu: Int
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val rate: Double
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )