mailr2551 - /branches/nan_catch_test/specific_fns/model_free.py


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

Header


Content

Posted by edward on September 03, 2006 - 08:48:
Author: bugman
Date: Sun Sep  3 08:48:21 2006
New Revision: 2551

URL: http://svn.gna.org/viewcvs/relax?rev=2551&view=rev
Log:
Commented out the calls to 'isnan()' and 'isinf()' in the model-free code.


Modified:
    branches/nan_catch_test/specific_fns/model_free.py

Modified: branches/nan_catch_test/specific_fns/model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/nan_catch_test/specific_fns/model_free.py?rev=2551&r1=2550&r2=2551&view=diff
==============================================================================
--- branches/nan_catch_test/specific_fns/model_free.py (original)
+++ branches/nan_catch_test/specific_fns/model_free.py Sun Sep  3 08:48:21 
2006
@@ -2375,12 +2375,12 @@
             self.h_count = self.h_count + hc
 
             # Catch infinite chi-squared values.
-            if self.relax.float.isinf(self.func):
-                raise RelaxInfError, 'chi-squared'
+            #if self.relax.float.isinf(self.func):
+            #    raise RelaxInfError, 'chi-squared'
 
             # Catch chi-squared values of NaN.
-            if self.relax.float.isnan(self.func):
-                raise RelaxNaNError, 'chi-squared'
+            #if self.relax.float.isnan(self.func):
+            #    raise RelaxNaNError, 'chi-squared'
 
             # Scaling.
             if scaling:




Related Messages


Powered by MHonArc, Updated Sun Sep 03 10:20:04 2006