public class StaticNeuron extends java.lang.Object implements Neuron
StaticNeuronLayer objects use these to form an input layer, the value of which can be changed without probing or manipulating Edge references from the first hidden layer.
| Modifier | Constructor and Description |
|---|---|
protected |
StaticNeuron(double p_value,
ThresholdingAlgorithm p_thresholdModel)
Creates a Neuron with the value given.
|
protected StaticNeuron(double p_value,
ThresholdingAlgorithm p_thresholdModel)
throws ValueOutOfBoundsException
p_value - The value to set the Neuron toValueOutOfBoundsException - in the event that the input is not suitable for the thresholding model chosenprotected void setValue(double p_value)
throws ValueOutOfBoundsException
p_value - The value to set this neuron to.ValueOutOfBoundsException - in the event that the input is not suitable for the thresholding model chosen