We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Calling GetConnections when using multiple threads triggers the assertion in line 207 of vp_manager.cpp. The following script reproduces the issue:
import nest nest.total_num_virtual_procs = 2 neuron = nest.Create("parrot_neuron") nest.Connect(neuron, neuron) nest.GetConnections()
Status