| AndNode |
The InputNode and the AndNode classes together form a pattern lattice, containing all
possible substructures of any given conjunction.
|
| AndNode.Entry |
|
| Converter |
Converts the synapse weights of a neuron into a boolean logic representation of this neuron.
|
| InputNode |
The InputNode class is the input layer for the boolean logic.
|
| Node<T extends Node,A extends NodeActivation<T>> |
The Node class is the abstract class for all the boolean logic nodes underneath the neural network layer.
|
| NodeActivation<T extends Node> |
|
| NodeQueue |
|
| OrNode |
While several neurons might share a the same input-node or and-node, there is always a always a one-to-one relation
between or-nodes and neurons.
|