Spiking Neuron Network Simulator  1.0
Simulation and training of spiking neuron networks, primarily theta neurons
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
Spike.cs
Go to the documentation of this file.
1 namespace SpikingNeuronNetwork.Lib
2 {
6  public class Spike
7  {
14  public int Id { get; set; }
15 
22  public int NeuronIndex { get; set; }
23 
30  public double Time { get; set; }
31 
38  public override string ToString()
39  {
40  return "Spike from index " + NeuronIndex + " at time " + Time + "\n";
41  }
42  }
43 }
override string ToString()
Returns a System.String that represents this instance.
Definition: Spike.cs:38