If delta_t is zero, two things should happen (based on NEST source):
$(V) > $(vThresh) should be used as threshold condition
($(deltaT) * exp(((V) - $(vThresh)) / $(deltaT))) term should be removed from dV/dt
The result is a bit gross, but I can't think of a nicer way of expressing this so (theoretically) different neurons can have different deltaT - I'm the unused path will get entirely compiled away in the sane case where deltaT is known at compile time.
Fix for #25
If delta_t is zero, two things should happen (based on NEST source):
$(V) > $(vThresh)
should be used as threshold condition($(deltaT) * exp(((V) - $(vThresh)) / $(deltaT)))
term should be removed from dV/dtThe result is a bit gross, but I can't think of a nicer way of expressing this so (theoretically) different neurons can have different deltaT - I'm the unused path will get entirely compiled away in the sane case where deltaT is known at compile time. Fix for #25