mailr14552 - /1.3/gui/analyses/auto_model_free.py


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

Header


Content

Posted by edward on August 31, 2011 - 16:56:
Author: bugman
Date: Wed Aug 31 16:56:22 2011
New Revision: 14552

URL: http://svn.gna.org/viewcvs/relax?rev=14552&view=rev
Log:
Fix for the model-free auto-analysis GUI tab - the max iteration default 
should be an integer.


Modified:
    1.3/gui/analyses/auto_model_free.py

Modified: 1.3/gui/analyses/auto_model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/gui/analyses/auto_model_free.py?rev=14552&r1=14551&r2=14552&view=diff
==============================================================================
--- 1.3/gui/analyses/auto_model_free.py (original)
+++ 1.3/gui/analyses/auto_model_free.py Wed Aug 31 16:56:22 2011
@@ -503,7 +503,7 @@
         self.mc_sim_num = Spin_ctrl(box, self, text="Monte Carlo simulation 
number:", default=500, min=1, max=100000, tooltip="This is the number of 
Monte Carlo simulations performed for error propagation and analysis.", 
width_text=self.width_text, width_button=self.width_button, 
spacer=self.spacer_horizontal)
 
         # Add maximum iteration selector.
-        self.max_iter = Spin_ctrl(box, self, text="Maximum interations", 
default=str(self.data.max_iter), min=25, max=100, width_text=self.width_text, 
width_button=self.width_button, spacer=self.spacer_horizontal)
+        self.max_iter = Spin_ctrl(box, self, text="Maximum interations", 
default=self.data.max_iter, min=25, max=100, width_text=self.width_text, 
width_button=self.width_button, spacer=self.spacer_horizontal)
 
         # The calculation mode.
         self.mode = Text_ctrl(box, self, text="Protocol mode:", 
default='Fully automated', tooltip="Select if the dauvergne_protocol analysis 
will be fully automated or whether the individual global models will be 
optimised one by one.", icon=paths.icon_16x16.system_run, 
fn=self.mode_dialog, editable=False, button=True, width_text=self.width_text, 
width_button=self.width_button, spacer=self.spacer_horizontal)




Related Messages


Powered by MHonArc, Updated Wed Aug 31 17:00:02 2011