Sprint 12 - NexusLogica/N GitHub Wiki
Goal
Write a simple connection. This should be a connection between two neurons in a simple network. The connection can be hard-coded.
Tasks
- Create a storage object for connections. 1. This should be in the network object. 1. Should be created after neurons are all created.
- Create a connection object. 1. It should be attachable from source neuron to sink neuron.
- Should be updatable. 1. On Update() should read from source compartment. 1. Output neuron should read from connection.
- The output of the neuron should be delayed, defaulting to some constant value. 1. The source value should be stored as a signal object in the connection.
Definition of Done
- Network container written.
- Connection object written.
- Update working.
- Unit tests written.
- Documentation written.
- Client code saved to Github.
Start date: March 12, 2014
Completion date: March 20, 2014