com.marmoush.jann
Class NeuralNetwork

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractList<E>
          extended by java.util.ArrayList<Layer>
              extended by com.marmoush.jann.NeuralNetwork
All Implemented Interfaces:
Serializable, Cloneable, Iterable<Layer>, Collection<Layer>, List<Layer>, RandomAccess

public class NeuralNetwork
extends ArrayList<Layer>

The Class NeuralNetwork.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
NeuralNetwork()
          Instantiates a new neural network.
NeuralNetwork(Collection<? extends Layer> c)
          Instantiates a new neural network.
NeuralNetwork(INeuralDirectedGraphable neuralGraph)
          Instantiates a new neural network.
NeuralNetwork(int initialCapacity)
          Instantiates a new neural network.
 
Method Summary
 NeuralDirectedGraph getNeuralGraph()
          Gets the neural graph.
 void init(INeuralDirectedGraphable neuralGraph)
          Inits the.
 void setNeuralGraph(NeuralDirectedGraph neuralGraph)
          Sets the neural graph.
 void simulate()
          Simulate.
 String toString()
           
 
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, removeRange, set, size, toArray, toArray, trimToSize
 
Methods inherited from class java.util.AbstractList
equals, hashCode, iterator, listIterator, listIterator, subList
 
Methods inherited from class java.util.AbstractCollection
containsAll, removeAll, retainAll
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList
 

Constructor Detail

NeuralNetwork

public NeuralNetwork()
Instantiates a new neural network.


NeuralNetwork

public NeuralNetwork(Collection<? extends Layer> c)
Instantiates a new neural network.

Parameters:
c - the c

NeuralNetwork

public NeuralNetwork(INeuralDirectedGraphable neuralGraph)
Instantiates a new neural network.

Parameters:
neuralGraph - the neural graph

NeuralNetwork

public NeuralNetwork(int initialCapacity)
Instantiates a new neural network.

Parameters:
initialCapacity - the initial capacity
Method Detail

getNeuralGraph

public NeuralDirectedGraph getNeuralGraph()
Gets the neural graph.

Returns:
the neural graph

init

public void init(INeuralDirectedGraphable neuralGraph)
Inits the.

Parameters:
neuralGraph - the neural graph

setNeuralGraph

public void setNeuralGraph(NeuralDirectedGraph neuralGraph)
Sets the neural graph.

Parameters:
neuralGraph - the new neural graph

simulate

public void simulate()
Simulate.


toString

public String toString()
Overrides:
toString in class AbstractCollection<Layer>


Copyright © 2011-2012 Marmoush.com. All Rights Reserved.