Package pulse.search.direction.pso
Class StaticTopologies
- java.lang.Object
-
- pulse.search.direction.pso.StaticTopologies
-
public class StaticTopologies extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static NeighbourhoodTopology
GLOBAL
Global beststatic NeighbourhoodTopology
RING
Ring topology (1D - lattice)static NeighbourhoodTopology
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");
-
-
-
Field Detail
-
GLOBAL
public static final NeighbourhoodTopology GLOBAL
Global best
-
RING
public static final NeighbourhoodTopology RING
Ring topology (1D - lattice)
-
SQUARE
public static final NeighbourhoodTopology 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");
-
-