Ignore:
Timestamp:
Feb 20, 2015 5:02:38 AM (9 years ago)
Author:
pkienzle
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
cda1cf8
Parents:
018582f
Message:

remove scipy levenburg marquardt and park from ui

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/perspectives/fitting/fit_thread.py

    r79492222 r386ffe1  
    2828                 yieldtime  = 0.03, 
    2929                 worktime   = 0.03, 
    30                  ftol       = None, 
    3130                 reset_flag = False): 
    3231        CalcThread.__init__(self, 
     
    4443        self.updatefn = updatefn 
    4544        #Relative error desired in the sum of squares. 
    46         self.ftol = ftol 
    4745        self.reset_flag = reset_flag 
    4846    
     
    6765            list_handler = [] 
    6866            list_curr_thread = []  
    69             list_ftol = [] 
    7067            list_reset_flag = [] 
    7168            list_map_get_attr = [] 
     
    7673                list_q.append(None) 
    7774                list_curr_thread.append(self) 
    78                 list_ftol.append(self.ftol) 
    7975                list_reset_flag.append(self.reset_flag) 
    8076                list_fit_function.append('fit') 
     
    8278            #from multiprocessing import Pool 
    8379            inputs = zip(list_map_get_attr, self.fitter, list_fit_function, 
    84                          list_q, list_q, list_handler,list_curr_thread,list_ftol, 
     80                         list_q, list_q, list_handler,list_curr_thread, 
    8581                         list_reset_flag) 
    8682            result =  map(map_apply, inputs) 
Note: See TracChangeset for help on using the changeset viewer.