public interface Neuron
| Type | Use | Value | Number of maintained Edges |
|---|---|---|---|
| Static | input neurons | fixed, defined using setValue() | 0 |
| Receptive | hidden, output neurons | variable, accessed via value() but defined by weighted input Edges | variable, by default each neuron has an Edge to every neuron in the previous layer. |
| Modifier and Type | Method and Description |
|---|---|
double |
value()
Returns the value of this Neuron, calculated through any means.
|