package Neuro;
/**
* the abstract superclass for Neuron and Input, all elements
* in the NeuronalNetwork are subclasses of this class. This class
* is private with the package
*
* @see Neuron
* @see Input
* @see NeuronalNetwork
*/
abstract class NeuronalElement
{
/** used for the evaulation of the value of an entier NeuronalNetwork */
public abstract int value() throws NeuroException;
}