Uses of Class
org.cicirello.search.representations.RealVector
-
Packages that use RealVector Package Description org.cicirello.search.operators.reals This package includes classes that implement operators that create, mutate, etc, the the inputs to functions with real-valued input parameters (represented with type double), such as is required to solve function optimization problems using simulated annealing or other metaheuristics.org.cicirello.search.representations This package includes classes related to representing solutions to optimization problems. -
-
Uses of RealVector in org.cicirello.search.operators.reals
Methods in org.cicirello.search.operators.reals that return RealVector Modifier and Type Method Description RealVector
RealVectorInitializer. createCandidateSolution()
-
Uses of RealVector in org.cicirello.search.representations
Subclasses of RealVector in org.cicirello.search.representations Modifier and Type Class Description class
BoundedRealVector
A class for representing the input to a multivariate function, with real values (floating-point) that are bounded in some interval [min, max].Methods in org.cicirello.search.representations that return RealVector Modifier and Type Method Description RealVector
RealVector. copy()
Creates an identical copy of this object.Constructors in org.cicirello.search.representations with parameters of type RealVector Constructor Description RealVector(RealVector other)
Initializes the vector as a copy of another.
-