mailr10146 - /branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py


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

Header


Content

Posted by edward on January 07, 2010 - 18:03:
Author: bugman
Date: Thu Jan  7 18:03:40 2010
New Revision: 10146

URL: http://svn.gna.org/viewcvs/relax?rev=10146&view=rev
Log:
Added a run() method to the MF_grid_command class and removed the dummy 
initial_printout() method.


Modified:
    
branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py

Modified: 
branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py?rev=10146&r1=10145&r2=10146&view=diff
==============================================================================
--- 
branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py
 (original)
+++ 
branches/multi_processor_merge/specific_fns/model_free/multi_processor_commands.py
 Thu Jan  7 18:03:40 2010
@@ -269,16 +269,34 @@
         self.silence = True
 
 
-    def initial_printout(self, processor):
-        """Dummy method to overwrite the base class method."""
-
-        pass
-
-
     def process_results(self, results, processor, completed):
         param_vector, func, iter, fc, gc, hc, warning = results
 
         processor.return_object(MF_grid_result_command(processor, 
result_string, self.memo_id, param_vector, func, iter, fc, gc, hc, warning, 
completed=completed))
+
+
+    def run(self, processor, completed):
+        """Execute the model-free optimisation."""
+
+        # Silencing.
+        if self.silence:
+            self.minimise_map['print_flag'] = 0
+
+        # Run catching all errors.
+        try:
+            # Minimisation.
+            results = generic_minimise(func=self.mf.func, 
dfunc=self.mf.dfunc, d2func=self.mf.d2func, **self.minimise_map)
+
+            # Processing.
+            self.process_results(results, processor, completed)
+
+        # An error occurred.
+        except Exception, e :
+            if isinstance(e, Capturing_exception):
+                raise e
+            else:
+                raise Capturing_exception(rank=processor.rank(), 
name=processor.get_name())
+
 
 
 class MF_result_command(Result_command):




Related Messages


Powered by MHonArc, Updated Thu Jan 07 18:20:02 2010