Auryn simulator  v0.8.1-206-gb56e451
Plastic Spiking Neural Network Simulator
SynapseModel.h
Go to the documentation of this file.
1 /*
2 * Copyright 2014-2018 Friedemann Zenke
3 *
4 * This file is part of Auryn, a simulation package for plastic
5 * spiking neural networks.
6 *
7 * Auryn is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * Auryn is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with Auryn. If not, see <http://www.gnu.org/licenses/>.
19 *
20 * If you are using Auryn or parts of it for your work please cite:
21 * Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations
22 * of spiking neural networks using general-purpose computers.
23 * Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076
24 */
25 
26 #ifndef SYNAPSEMODEL_H_
27 #define SYNAPSEMODEL_H_
28 
29 #include "auryn_definitions.h"
30 #include "AurynVector.h"
31 #include "NeuronGroup.h"
32 #include "System.h"
33 
34 namespace auryn {
35 
51  class SynapseModel
52  {
53  protected:
57 
58  public:
59  SynapseModel(NeuronGroup * parent, AurynStateVector * input, AurynStateVector * output);
60 
61  virtual void evolve() = 0;
62  };
63 }
64 
65 #endif /*SYNAPSEMODEL_H_*/
66 
NeuronGroup * parent_group
Definition: SynapseModel.h:54
Implements base class for modular synapse models.
Definition: SynapseModel.h:51
virtual void evolve()=0
Definition: ABSConnection.h:38
SynapseModel(NeuronGroup *parent, AurynStateVector *input, AurynStateVector *output)
Definition: SynapseModel.cpp:30
AurynStateVector * input_state
Definition: SynapseModel.h:55
Abstract base class for all neuron groups.
Definition: NeuronGroup.h:45
Default AurynVectorFloat class for performance computation.
Definition: AurynVector.h:796
AurynStateVector * output_state
Definition: SynapseModel.h:56