@@ -57,7 +57,7 @@ void AllDynamicSTDPSynapses::printParameters() const
5757// /
5858// / @param input istream to read from.
5959// / @param iEdg Index of the synapse to set.
60- void AllDynamicSTDPSynapses::readEdge (istream &input, const BGSIZE iEdg)
60+ void AllDynamicSTDPSynapses::readEdge (istream &input, BGSIZE iEdg)
6161{
6262 AllSTDPSynapses::readEdge (input, iEdg);
6363
@@ -80,7 +80,7 @@ void AllDynamicSTDPSynapses::readEdge(istream &input, const BGSIZE iEdg)
8080// /
8181// / @param output stream to print out to.
8282// / @param iEdg Index of the synapse to print out.
83- void AllDynamicSTDPSynapses::writeEdge (ostream &output, const BGSIZE iEdg) const
83+ void AllDynamicSTDPSynapses::writeEdge (ostream &output, BGSIZE iEdg) const
8484{
8585 AllSTDPSynapses::writeEdge (output, iEdg);
8686
@@ -96,7 +96,7 @@ void AllDynamicSTDPSynapses::writeEdge(ostream &output, const BGSIZE iEdg) const
9696// /
9797// / @param iEdg Index of the synapse to set.
9898// / @param deltaT Inner simulation step duration
99- void AllDynamicSTDPSynapses::resetEdge (const BGSIZE iEdg, BGFLOAT deltaT)
99+ void AllDynamicSTDPSynapses::resetEdge (BGSIZE iEdg, BGFLOAT deltaT)
100100{
101101 AllSTDPSynapses::resetEdge (iEdg, deltaT);
102102
@@ -112,8 +112,8 @@ void AllDynamicSTDPSynapses::resetEdge(const BGSIZE iEdg, BGFLOAT deltaT)
112112// / @param destVertex Index of the destination Neuron.
113113// / @param deltaT Inner simulation step duration.
114114// / @param type Type of the Synapse to create.
115- void AllDynamicSTDPSynapses::createEdge (const BGSIZE iEdg, int srcVertex, int destVertex,
116- BGFLOAT deltaT, edgeType type)
115+ void AllDynamicSTDPSynapses::createEdge (BGSIZE iEdg, int srcVertex, int destVertex, BGFLOAT deltaT ,
116+ edgeType type)
117117{
118118 AllSTDPSynapses::createEdge (iEdg, srcVertex, destVertex, deltaT, type);
119119
@@ -159,7 +159,7 @@ void AllDynamicSTDPSynapses::createEdge(const BGSIZE iEdg, int srcVertex, int de
159159// /
160160// / @param iEdg Index of the synapse to set.
161161// / @param deltaT Inner simulation step duration.
162- void AllDynamicSTDPSynapses::changePSR (const BGSIZE iEdg, BGFLOAT deltaT)
162+ void AllDynamicSTDPSynapses::changePSR (BGSIZE iEdg, BGFLOAT deltaT)
163163{
164164 BGFLOAT &psr = this ->psr_ [iEdg];
165165 BGFLOAT &W = this ->W_ [iEdg];
0 commit comments