Uses of Class
org.generation5.bio.CellularAutomata

Packages that use CellularAutomata
org.generation5.bio Bio-inspired classes including cellular automata, swarm intelligence and genetic algorithms. 
org.generation5.demos A series of demonstration classes that showcase the core SDK features. 
 

Uses of CellularAutomata in org.generation5.bio
 

Subclasses of CellularAutomata in org.generation5.bio
 class CellularAutomataLayered
          Expands upon the cellular automata class by adding a separate layer of automata that are independent of the world states.
 

Methods in org.generation5.bio with parameters of type CellularAutomata
static void CellularAutomata.iterateCA(CellularAutomata ca, java.lang.String[] args)
          This method calls iterateCA but with the parameters encoded as a String array, ideally suited to be passed from the command-line.
static void CellularAutomata.iterateCA(CellularAutomata ca, int iterations, int snapshot, java.lang.String prefix, int caSize)
          This is a default testing method that many of the cellular automata main methods use.
 

Uses of CellularAutomata in org.generation5.demos
 

Subclasses of CellularAutomata in org.generation5.demos
 class ConwaysLifeCA
          This class implements Conway's Life using the CellularAutomata classes and double-buffering for speed.
 class DictyosteliumCA
          This class implements Conway's Life using the CellularAutomata classes and double-buffering for speed.
 class LangtonAntCA
          Implements Langton's Ant.
 class LangtonLoopCA
          Implements Langton's self-replicating loop.
 class SpatialIPD
          Implements a spatial version of the iterated prisoner's dilemma.
 class SwarmAntCA
           
 class TermitesCA
          Implements the termites algorithm, randomly sorting a collection of woodchips.
 class WireWorldCA
          This implements the simple cellular automata, Wire World.
 class Wolfram1DCA
          Implements Wolfram's one-dimensional cellular automata.
 


This documentation is part of the Generation5 JDK.