Author: bugman
Date: Tue Apr 28 19:34:45 2009
New Revision: 9029
URL: http://svn.gna.org/viewcvs/relax?rev=9029&view=rev
Log:
Fix for the 'fixed' N-state model.
When constraints are automatically turned off for this, the minimisation 
algorithm should as change.
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=9029&r1=9028&r2=9029&view=diff
==============================================================================
--- 1.3/specific_fns/n_state_model.py (original)
+++ 1.3/specific_fns/n_state_model.py Tue Apr 28 19:34:45 2009
@@ -1381,6 +1381,10 @@
             warn(RelaxWarning("Turning constraints off.  These cannot be 
used for the 'fixed' model."))
             constraints = False
 
+            # Pop out the Method of Multipliers algorithm.
+            min_algor = min_options[0]
+            min_options = min_options[1:]
+
         # Update the model parameters if necessary.
         self.__update_model()