Show
Ignore:
Timestamp:
02/16/10 12:33:37 (2 years ago)
Author:
apdavison
Message:

Moved the Space class out of common into its own module

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/connectors2.py

    r701 r712  
    11import numpy 
    22from pyNN import common 
     3from pyNN.space import Space 
    34from pyNN.random import RandomDistribution 
    45from numpy import exp 
     
    8788     
    8889    def __init__(self, allow_self_connections=True, 
    89                  weights=0.0, delays=None, space=common.Space()): 
     90                 weights=0.0, delays=None, space=Space()): 
    9091        """ 
    9192        Create a new connector. 
     
    133134     
    134135    def __init__(self, p_connect, allow_self_connections=True, 
    135                  weights=0.0, delays=None, space=common.Space()): 
     136                 weights=0.0, delays=None, space=Space()): 
    136137        """ 
    137138        Create a new connector.