********>Bugfix 5: Author: Terry Lang Date: September 28, 2006 Program: dock Description: If final_min was called, only one iteration was being performed, regardless of how many were requested. Source of problem was that final_min_max_iterations was declared as a bool instead of an int. Fix: make the following changes to the files src/dock/simplex.h *** simplex.h 2 Aug 2006 21:19:47 -0000 1.6.2.1 --- simplex.h 28 Sep 2006 22:33:31 -0000 1.6.2.2 *************** *** 47,53 **** // final minimization parameters bool final_min_add_internal; ! bool final_min_max_iterations; int final_min_max_cycles; float final_min_score_converge; float final_min_cycle_converge; --- 47,53 ---- // final minimization parameters bool final_min_add_internal; ! int final_min_max_iterations; int final_min_max_cycles; float final_min_score_converge; float final_min_cycle_converge;