mailr4845 - in /1.3/test_suite/unit_tests: _data/test_diff_tensor.py _maths_fns/test_chi2.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by sebastien . morin . 1 on January 17, 2008 - 22:09:
Author: semor
Date: Thu Jan 17 22:09:17 2008
New Revision: 4845

URL: http://svn.gna.org/viewcvs/relax?rev=4845&view=rev
Log:
Converted test_suite modules from Numeric to numpy.


Modified:
    1.3/test_suite/unit_tests/_data/test_diff_tensor.py
    1.3/test_suite/unit_tests/_maths_fns/test_chi2.py

Modified: 1.3/test_suite/unit_tests/_data/test_diff_tensor.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/_data/test_diff_tensor.py?rev=4845&r1=4844&r2=4845&view=diff
==============================================================================
--- 1.3/test_suite/unit_tests/_data/test_diff_tensor.py (original)
+++ 1.3/test_suite/unit_tests/_data/test_diff_tensor.py Thu Jan 17 22:09:17 
2008
@@ -22,7 +22,7 @@
 
 # Python module imports.
 from math import cos, pi, sin
-from Numeric import array, dot, transpose
+from numpy import array, dot, transpose
 from unittest import TestCase
 
 # relax module imports.

Modified: 1.3/test_suite/unit_tests/_maths_fns/test_chi2.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/_maths_fns/test_chi2.py?rev=4845&r1=4844&r2=4845&view=diff
==============================================================================
--- 1.3/test_suite/unit_tests/_maths_fns/test_chi2.py (original)
+++ 1.3/test_suite/unit_tests/_maths_fns/test_chi2.py Thu Jan 17 22:09:17 2008
@@ -21,7 +21,7 @@
 
###############################################################################
 
 # Python module imports.
-from Numeric import Float64, array
+from numpy import float64, array
 from unittest import TestCase
 
 # relax module imports.
@@ -35,24 +35,24 @@
         """Create a number of objects for the calculation and testing of the 
chi-squared equations."""
 
         # Some test data.
-        self.data = array([1.0, 1.5, 2.0, 2.5, 3.0], Float64)
+        self.data = array([1.0, 1.5, 2.0, 2.5, 3.0], float64)
 
         # Some 'back calculated' data.
-        self.back_calc = array([0.9, 1.45, 2.0, 2.55, 3.1], Float64)
+        self.back_calc = array([0.9, 1.45, 2.0, 2.55, 3.1], float64)
 
         # A 'back calculated' gradient.
         self.back_calc_grad = array([[ 0.1,  0.2, 0.3, 0.2, 0.1],
-                                     [-0.2, -0.1, 0.0, 0.1, 0.2]], Float64)
+                                     [-0.2, -0.1, 0.0, 0.1, 0.2]], float64)
 
         # A 'back calculated' Hessian.
         self.back_calc_hess = array([[[0.01, 0.005, 0.0, 0.005, 0.01],
                                       [0.05, 0.01,  0.0, 0.01,  0.05]],
                                      [[0.001, 0.0005, 0.0, 0.0005, 0.001],
                                       [0.005, 0.001,  0.0, 0.001,  0.005]]],
-                                      Float64)
+                                      float64)
 
         # Some errors.
-        self.errors = array([0.1, 0.1, 0.1, 0.1, 0.1], Float64)
+        self.errors = array([0.1, 0.1, 0.1, 0.1, 0.1], float64)
 
 
     def tearDown(self):




Related Messages


Powered by MHonArc, Updated Thu Jan 17 22:20:11 2008