mailr18042 - /branches/frame_order_testing/test_suite/system_tests/frame_order.py


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

Header


Content

Posted by edward on November 28, 2012 - 14:52:
Author: bugman
Date: Wed Nov 28 14:52:29 2012
New Revision: 18042

URL: http://svn.gna.org/viewcvs/relax?rev=18042&view=rev
Log:
Fixes for the frame order system tests on Mac OS X.

The numerical precision on a Mac is quite different, and this has a dramatic 
effect on the optimised
chi-squared value.  The precision is only to about 1 decimal place!


Modified:
    branches/frame_order_testing/test_suite/system_tests/frame_order.py

Modified: branches/frame_order_testing/test_suite/system_tests/frame_order.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/frame_order_testing/test_suite/system_tests/frame_order.py?rev=18042&r1=18041&r2=18042&view=diff
==============================================================================
--- branches/frame_order_testing/test_suite/system_tests/frame_order.py 
(original)
+++ branches/frame_order_testing/test_suite/system_tests/frame_order.py Wed 
Nov 28 14:52:29 2012
@@ -99,7 +99,7 @@
             del status.flag_pcs
 
 
-    def check_chi2(self, chi2=0.0, places=8):
+    def check_chi2(self, chi2=0.0, places=1):
         """Check the function evaluation."""
 
         # Switch back to the original pipe.
@@ -108,8 +108,22 @@
         # Get the debugging message.
         self.mesg = self.mesg_opt_debug()
 
+        # Scale the chi2 values down.
+        if chi2 > 1000.0:
+            chi2 = chi2 / 1000.0
+            chi2_fit = cdp.chi2 / 1000.0
+        elif chi2 > 100.0:
+            chi2 = chi2 / 100.0
+            chi2_fit = cdp.chi2 / 100.0
+        elif chi2 > 10.0:
+            chi2 = chi2 / 10.0
+            chi2_fit = cdp.chi2 / 10.0
+        else:
+            chi2 = chi2
+            chi2_fit = cdp.chi2
+
         # Check the chi2 value.
-        self.assertAlmostEqual(cdp.chi2, chi2, places, msg=self.mesg)
+        self.assertAlmostEqual(chi2_fit, chi2, places, msg=self.mesg)
 
 
     def flags(self, rdc=True, pcs=True, opt=False):




Related Messages


Powered by MHonArc, Updated Fri Nov 30 11:00:02 2012