All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object
|
+----gerken.vehicles.NetworkNode
|
+----gerken.vehicles.HiddenNode
A HiddenNode is a simple node that maintains a sum of inputs (from ExcitatoryConnections) and which fires if that sum exceeds a threshhold value. Hidden nodes can also be inhibited by an InhibitoryConnection. When inhibited by one of those connections, the hidden node will not fire, even if its input exceeds its threshhold.
This software is provided on an as-is basis and is copyright Chris Gerken. The only rights granted to you are to enjoy and learn from this software.
Return a hidden node with threshhold t.
public HiddenNode(int t,
String n)
Return a hidden node with threshhold t. The specified name n can be used later to retrieve this node from the network.
All Packages Class Hierarchy This Package Previous Next Index