Uses of Interface
pulse.search.direction.pso.NeighbourhoodTopology
-
Packages that use NeighbourhoodTopology Package Description pulse.search.direction.pso -
-
Uses of NeighbourhoodTopology in pulse.search.direction.pso
Fields in pulse.search.direction.pso declared as NeighbourhoodTopology Modifier and Type Field Description static NeighbourhoodTopology
StaticTopologies. GLOBAL
Global beststatic NeighbourhoodTopology
StaticTopologies. RING
Ring topology (1D - lattice)static NeighbourhoodTopology
StaticTopologies. SQUARE
Von Neumann topology (square lattice) Condition: if( ( ps.length & (ps.length - 1) ) != 0) throw new IllegalArgumentException("Number of particles: " + ps.length + " is not power of 2");Methods in pulse.search.direction.pso that return NeighbourhoodTopology Modifier and Type Method Description NeighbourhoodTopology
SwarmState. getNeighborhoodTopology()
Methods in pulse.search.direction.pso with parameters of type NeighbourhoodTopology Modifier and Type Method Description void
SwarmState. setNeighborhoodTopology(NeighbourhoodTopology neighborhoodTopology)
Constructors in pulse.search.direction.pso with parameters of type NeighbourhoodTopology Constructor Description SwarmState(int numberOfParticles, NeighbourhoodTopology neighborhoodTopology)
-