| Package | Description |
|---|---|
| org.opt4j.operator.algebra |
Provides the classes for the algebra operator for genotypes.
|
| org.opt4j.optimizer.mopso |
Provides the classes for the multi-objective particle swarm optimizer
MOPSO. |
| Modifier and Type | Class and Description |
|---|---|
class |
Add
|
class |
Div
The
Div divides two terms. |
class |
Index
|
class |
Mult
|
class |
Pow
|
class |
Sub
|
class |
Var
The
Var returns a double value. |
| Modifier and Type | Method and Description |
|---|---|
G |
Algebra.algebra(Term term,
Genotype... genotypes)
|
DoubleGenotype |
AlgebraDouble.algebra(Term term,
Genotype... genotypes) |
Genotype |
AlgebraGenericImplementation.algebra(Term term,
Genotype... genotypes) |
| Constructor and Description |
|---|
Add(Term... terms)
Constructs an
Add term. |
Div(Term a,
Term b)
Constructs a
Div term. |
Mult(Term... terms)
Constructs an
Mult term. |
Pow(Term base,
Term exponent)
Constructs a
Pow term. |
Sub(Term minuend,
Term subtrahend)
Constructs a
Sub term. |
| Modifier and Type | Class and Description |
|---|---|
class |
VelocityTerm
The
VelocityTerm is used to determine the new velocity of a
Particle. |