Changeset 722 for trunk/src/space.py

Show
Ignore:
Timestamp:
03/03/10 10:53:42 (2 years ago)
Author:
pierre
Message:

Wrong commit, speed up was not complete...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/space.py

    r721 r722  
    6363        if len(B.shape) == 1: 
    6464            B = B.reshape(3, 1) 
    65         B = self.scale_factor*(B + self.offset) 
     65        # I'm not sure the following line should be here. Operations may be redundant and not very  
     66        # transparent from the user point of view. I moved it into the DistanceDependentProbability Connector 
     67        #B = self.scale_factor*(B + self.offset) 
    6668        d = numpy.zeros((A.shape[1], B.shape[1]), dtype=A.dtype) 
    6769        for axis in self.axes: