All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class gerken.vehicles.HiddenNode

java.lang.Object
   |
   +----gerken.vehicles.NetworkNode
           |
           +----gerken.vehicles.HiddenNode

public class HiddenNode
extends NetworkNode

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.


Constructor Index

 o HiddenNode(int, String)

Return a hidden node with threshhold t.

Constructors

 o HiddenNode
 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