NeuronGroup Class can i use rk4 like this

Description of problem

Minimal code to reproduce problem

can i use the class with rk4 like this

P = NeuronGroup(1, model=eqs, threshold=‘v>-20*mV’,refractory=3*ms, method=rk4)

Hi @KotsiosKotsiou. I am not 100% I understood the question correctly, but yes, you are allowed to use

P = NeuronGroup(1, model=eqs, threshold=‘v>-20*mV’,refractory=3*ms, method=rk4)

Alternatively, you can also use the name rk4 as a string like this:

P = NeuronGroup(1, model=eqs, threshold=‘v>-20*mV’,refractory=3*ms, method="rk4")