Uses of Class
neuroidnet.ntr.Network

Packages that use Network
neuroidnet.ntr Holds the main classes for the simulator. 
neuroidnet.periphery Holds classes related to the peripheral controller of the neuroidal network. 
neuroidnet.phasesegregator Example for the phase segregation hypothesis. 
 

Uses of Network in neuroidnet.ntr
 

Fields in neuroidnet.ntr declared as Network
protected  Network Peripheral.network
          Pointer to associated Network object
 Network Area.network
          Pointer to parent network TODO: Fix access modifier from public, problem with SensoryNeuroid
 

Constructors in neuroidnet.ntr with parameters of type Network
Peripheral(Network network)
          Creates a new Peripheral instance.
Area(Network network, String name, int numberOfNeuroids, int replication, double period, double threshold, double timeConstantM, double refractoryTimeConstant, Class neuroidClass)
          Constructor for plain Area (no inhibitory interneuron).
Area(Network network, String name, int numberOfNeuroids, int replication, double period, double threshold, boolean inhibInter, double timeConstantM, double refractoryTimeConstant, Class neuroidClass)
          Constructor with option to add inhibitory inter-neuron.
 

Uses of Network in neuroidnet.periphery
 

Constructors in neuroidnet.periphery with parameters of type Network
SensoryArea(Network network, String name)
           
ConceptArea(Network network)
          Creates an Area named ConceptArea with initially no neuroids.
ArtificialConcept(Network network, String name)
          Create a simple concept.
ArtificialConcept(Network network, Set conceptSet)
          Create a concept from a conjunction of concepts.
SensoryConcept(Network network, String name)
           
 

Uses of Network in neuroidnet.phasesegregator
 

Subclasses of Network in neuroidnet.phasesegregator
 class Network
          Builds a network to test theoretical phase segregation properties.
 

Constructors in neuroidnet.phasesegregator with parameters of type Network
TwoLevelInputSequence(Network network, Area[] inputAreas, int numberOfItemsPerArea, double segregation)
           
ThreeLevelInputSequence(Network network, Area[] inputAreas, int numberOfItemsPerArea, double segregation)
           
Peripheral(Network network, Area[] inputAreas, int numberOfItemsPerArea, double segregation)