Changeset 956
- Timestamp:
- 05/03/11 13:08:49 (13 months ago)
- Files:
-
- 1 modified
-
trunk/src/nest/simulator.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/nest/simulator.py
r948 r956 272 272 if self.synapse_type == 'excitatory': 273 273 param_name = self.parent.post.local_cells[0].celltype.translations['tau_syn_E']['translated_name'] 274 tau_syn = nest.GetStatus(targets, (param_name)) [0]275 nest.SetStatus(self.connections, {'tau_psc' : tau_syn})274 tau_syn = nest.GetStatus(targets, (param_name)) 275 nest.SetStatus(self.connections, 'tau_psc', tau_syn) 276 276 277 277 def connect(self, source, targets, weights, delays):
