@@ -22,7 +22,7 @@ class IFCurrDualExpBase(AbstractPopulationVertex):
2222 'tau_m' : 20.0 , 'cm' : 1.0 , 'v_rest' : - 65.0 , 'v_reset' : - 65.0 ,
2323 'v_thresh' : - 50.0 , 'tau_syn_E' : 5.0 , 'tau_syn_E2' : 5.0 ,
2424 'tau_syn_I' : 5.0 , 'tau_refrac' : 0.1 , 'i_offset' : 0 ,
25- 'isyn_exc' : 0.0 , 'isyn_inh' : 0.0 , 'isyn2_exc ' : 0.0 }
25+ 'isyn_exc' : 0.0 , 'isyn_inh' : 0.0 , 'isyn_exc2 ' : 0.0 }
2626
2727 none_pynn_default_parameters = {'v_init' : None }
2828
@@ -48,14 +48,14 @@ def __init__(
4848 i_offset = default_parameters ['i_offset' ], v_init = None ,
4949 isyn_exc = default_parameters ['isyn_exc' ],
5050 isyn_inh = default_parameters ['isyn_inh' ],
51- isyn2_exc = default_parameters ['isyn2_exc ' ]):
51+ isyn_exc2 = default_parameters ['isyn_exc2 ' ]):
5252
5353 neuron_model = NeuronModelLeakyIntegrateAndFire (
5454 n_neurons , v_init , v_rest , tau_m , cm , i_offset ,
5555 v_reset , tau_refrac )
5656 synapse_type = SynapseTypeDualExponential (
5757 n_neurons , tau_syn_E , tau_syn_E2 , tau_syn_I , isyn_exc ,
58- isyn2_exc , isyn_inh )
58+ isyn_exc2 , isyn_inh )
5959 input_type = InputTypeCurrent ()
6060 threshold_type = ThresholdTypeStatic (n_neurons , v_thresh )
6161
0 commit comments