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
IErrorDerivativeParameters.cs
Go to the documentation of this file.
1 namespace SpikingNeuronNetwork.Lib.Interfaces
2 {
3  using System.Collections.Generic;
4 
8  public interface IErrorDerivativeParameters
9  {
14  List<Synapse> GetSynapses();
15 
21  double GetErrorDerivative(Synapse synapse);
22  }
23 }