mailr5175 - /1.3/specific_fns/model_free/mf_minimise.py


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

Header


Content

Posted by edward on March 23, 2008 - 13:07:
Author: bugman
Date: Sun Mar 23 13:07:49 2008
New Revision: 5175

URL: http://svn.gna.org/viewcvs/relax?rev=5175&view=rev
Log:
The model-free grid search args are now passed into the minimise() method.

These will later be passed into the grid search configuration functions.


Modified:
    1.3/specific_fns/model_free/mf_minimise.py

Modified: 1.3/specific_fns/model_free/mf_minimise.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/specific_fns/model_free/mf_minimise.py?rev=5175&r1=5174&r2=5175&view=diff
==============================================================================
--- 1.3/specific_fns/model_free/mf_minimise.py (original)
+++ 1.3/specific_fns/model_free/mf_minimise.py Sun Mar 23 13:07:49 2008
@@ -460,7 +460,7 @@
         """
 
         # Minimisation.
-        self.minimise(min_algor='grid', min_options=min_options, 
constraints=constraints, verbosity=verbosity, sim_index=sim_index)
+        self.minimise(min_algor='grid', lower=lower, upper=upper, inc=inc, 
constraints=constraints, verbosity=verbosity, sim_index=sim_index)
 
 
     def grid_search_config(self, index=None):
@@ -665,7 +665,7 @@
         return m
 
 
-    def minimise(self, min_algor=None, min_options=None, func_tol=None, 
grad_tol=None, max_iterations=None, constraints=0, scaling=1, verbosity=0, 
sim_index=None):
+    def minimise(self, min_algor=None, min_options=None, func_tol=None, 
grad_tol=None, max_iterations=None, constraints=0, scaling=1, verbosity=0, 
sim_index=None, lower=None, upper=None, inc=None):
         """Model-free minimisation function.
 
         Three categories of parameter sets exist for which the approach to 
minimisation is
@@ -705,6 +705,19 @@
         @param sim_index:       The index of the simulation to optimise.  
This should be None if
                                 normal optimisation is desired.
         @type sim_index:        None or int
+        @param lower:           The lower bounds of the grid search which 
must be equal to the
+                                number of parameters in the model.  This 
optional argument is only
+                                used when doing a grid search.
+        @type lower:            array of numbers
+        @param upper:           The upper bounds of the grid search which 
must be equal to the
+                                number of parameters in the model.  This 
optional argument is only
+                                used when doing a grid search.
+        @type upper:            array of numbers
+        @param inc:             The increments for each dimension of the 
space for the grid search.
+                                The number of elements in the array must 
equal to the number of
+                                parameters in the model.  This argument is 
only used when doing a
+                                grid search.
+        @type inc:              array of int
         """
 
         # Alias the current data pipe.




Related Messages


Powered by MHonArc, Updated Sun Mar 23 13:20:10 2008