Spiking Neuron Network Simulator
1.0
Simulation and training of spiking neuron networks, primarily theta neurons
|
Public Member Functions | |
Synapse (int inputNeuronIndex, int outputNeuronIndex) | |
Creates a new instance of the synapse class More... | |
override string | ToString () |
Returns a System.String that represents this instance. More... | |
override bool | Equals (object obj) |
Returns a bool indicating whether the synapse is equal to an object More... | |
override int | GetHashCode () |
Returns a hash code representing the synapse More... | |
Properties | |
int | InputNeuronIndex [get, set] |
Gets or sets the index of the input neuron. More... | |
int | OutputNeuronIndex [get, set] |
Gets or sets the index of the output neuron. More... | |
Synapse Class
Definition at line 6 of file Synapse.cs.
SpikingNeuronNetwork.Lib.Synapse.Synapse | ( | int | inputNeuronIndex, |
int | outputNeuronIndex | ||
) |
Creates a new instance of the synapse class
inputNeuronIndex | The input neuron index |
outputNeuronIndex | The output neuron index |
Definition at line 29 of file Synapse.cs.
override bool SpikingNeuronNetwork.Lib.Synapse.Equals | ( | object | obj | ) |
Returns a bool indicating whether the synapse is equal to an object
obj | The object |
Definition at line 51 of file Synapse.cs.
override int SpikingNeuronNetwork.Lib.Synapse.GetHashCode | ( | ) |
Returns a hash code representing the synapse
Definition at line 63 of file Synapse.cs.
override string SpikingNeuronNetwork.Lib.Synapse.ToString | ( | ) |
Returns a System.String that represents this instance.
Definition at line 41 of file Synapse.cs.
|
getset |
Gets or sets the index of the input neuron.
The index of the input neuron.
Definition at line 14 of file Synapse.cs.
|
getset |
Gets or sets the index of the output neuron.
The index of the output neuron.
Definition at line 22 of file Synapse.cs.