cont_delay_synapse – Synapse type for continuous delays

Description

cont_delay_synapse relaxes the condition that NEST only implements delays which are an integer multiple of the time step h. A continuous delay is decomposed into an integer part (delay_) and a double (delay_offset_) so that the actual delay is given by delay_*h - delay_offset_. This can be combined with off-grid spike times.

Remarks:

All delays set by the normal NEST Connect function will be rounded, even when using cont_delay_synapse. To set non-grid delays, you must either

  1. set the delay as synapse default, as in the example above

  2. set the delay for each synapse after the connections have been created,

Alternative 1) is much more efficient, but all synapses then will have the

same delay.

Alternative 2) is slower, but allows individual delay values.

Continuous delays cannot be shorter than the simulation resolution.

Transmits

SpikeEvent, RateEvent, CurrentEvent, ConductanceEvent, DoubleDataEvent

See also

Synapse, Continuous Delay