Changeset 394
- Timestamp:
- 06/26/08 11:15:39 (5 months ago)
- Files:
-
- trunk/src/common.py (modified) (1 diff)
- trunk/src/neuron2/__init__.py (modified) (1 diff)
- trunk/src/neuron2/cells.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/common.py
r386 r394 634 634 def get_min_delay(): 635 635 """Return the minimum allowed synaptic delay.""" 636 r eturn 1e12636 raise Exception("common.get_min_delay() must be overridden by a simulator-specific function") 637 637 638 638 def get_max_delay(): 639 639 """Return the maximum allowed synaptic delay.""" 640 r eturn -1e12640 raise Exception("common.get_max_delay() must be overridden by a simulator-specific function") 641 641 642 642 def num_processes(): trunk/src/neuron2/__init__.py
r387 r394 73 73 def get_min_delay(): 74 74 return simulator.state.min_delay 75 #common.get_min_delay = get_min_delay75 common.get_min_delay = get_min_delay 76 76 77 77 def num_processes(): trunk/src/neuron2/cells.py
r378 r394 78 78 79 79 # process arguments 80 self.parameter_names = [' tau_m', 'cm', 'v_rest', 'v_thresh', 't_refrac',80 self.parameter_names = ['cm', 'tau_m', 'v_rest', 'v_thresh', 't_refrac', # 'cm' must come before 'tau_m' 81 81 'i_offset', 'v_reset', 'v_init', 'tau_e', 'tau_i'] 82 82 if syn_type == 'conductance':

