mailr8790 - /1.3/specific_fns/n_state_model.py


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

Header


Content

Posted by edward on February 12, 2009 - 10:13:
Author: bugman
Date: Thu Feb 12 10:13:40 2009
New Revision: 8790

URL: http://svn.gna.org/viewcvs/relax?rev=8790&view=rev
Log:
Bug fix for the __disassemble_param_vector() method.

The probabilities do not exist in the 'fixed' model!


Modified:
    1.3/specific_fns/n_state_model.py

Modified: 1.3/specific_fns/n_state_model.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/specific_fns/n_state_model.py?rev=8790&r1=8789&r2=8790&view=diff
==============================================================================
--- 1.3/specific_fns/n_state_model.py (original)
+++ 1.3/specific_fns/n_state_model.py Thu Feb 12 10:13:40 2009
@@ -263,8 +263,8 @@
             for i in xrange(cdp.N-1):
                 probs[i] = param_vector[i]
 
-        # The probability for state N.
-        probs[-1] = 1 - sum(probs[0:-1])
+            # The probability for state N.
+            probs[-1] = 1 - sum(probs[0:-1])
 
         # The Euler angles.
         if cdp.model == '2-domain':




Related Messages


Powered by MHonArc, Updated Thu Feb 12 10:20:04 2009