Uses of Class
uchicago.src.sim.adaptation.neural.RepastNeuralWrapper

Packages that use RepastNeuralWrapper
uchicago.src.repastdemos.neural   
uchicago.src.sim.adaptation.neural   
 

Uses of RepastNeuralWrapper in uchicago.src.repastdemos.neural
 

Fields in uchicago.src.repastdemos.neural declared as RepastNeuralWrapper
protected  RepastNeuralWrapper Employee.net
          This is the neural network used by this employee
 

Uses of RepastNeuralWrapper in uchicago.src.sim.adaptation.neural
 

Methods in uchicago.src.sim.adaptation.neural that return RepastNeuralWrapper
static RepastNeuralWrapper NeuralUtils.buildNetwork(int[] nodesPerLayer, java.lang.Class[] layerTypes, java.lang.Class[] synapseTypes)
          This builds a neural network using the specified parameters.
static RepastNeuralWrapper NeuralUtils.buildNetwork(int[] nodesPerLayer, java.lang.Class layerType, java.lang.Class synapseType)
          This builds a neural network with nodesPerLayer.length layers, each layer being an instance of layerType, and each layer connected by a synapse of type synapseType.
static RepastNeuralWrapper NeuralUtils.loadNetFromFile(java.lang.String fileName)
          This method creates a RepastNeuralWrapper that is wrapping a serialized Joone NeuralNet.