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

  1. Create a storage object for connections. 1. This should be in the network object. 1. Should be created after neurons are all created.
  2. Create a connection object. 1. It should be attachable from source neuron to sink neuron.
  3. Should be updatable. 1. On Update() should read from source compartment. 1. Output neuron should read from connection.
  4. 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

  1. Network container written.
  2. Connection object written.
  3. Update working.
  4. Unit tests written.
  5. Documentation written.
  6. Client code saved to Github.

Start date: March 12, 2014

Completion date: March 20, 2014