Changeset 774


Ignore:
Timestamp:
12/26/14 09:08:01 (17 months ago)
Author:
mmckerns
Message:

ticking up versions for dill depends

Location:
mystic
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mystic/mystic/constraints.py

    r760 r774  
    257257NOTE: The resulting constraints will likely be more expensive to evaluate 
    258258    and less accurate than writing the constraints solver from scratch. 
     259 
     260NOTE: The default solver is 'diffev', with npop=min(40, ndim*5). The default 
     261    termination is ChangeOverGeneration(), and the default guess is randomly 
     262    selected points between the upper and lower bounds. 
    259263    """ 
    260264    ndim = 1 #XXX: better, increase in while loop catching IndexError ? 
     
    320324    solver -- the mystic solver to use in the optimization 
    321325    termination -- the mystic termination to use in the optimization 
     326 
     327NOTE: The default solver is 'diffev', with npop=min(40, ndim*5). The default 
     328    termination is ChangeOverGeneration(), and the default guess is randomly 
     329    selected points between the upper and lower bounds. 
    322330    """ 
    323331    def constraint(x): #XXX: better to enable args kwds for penalty ? 
  • mystic/setup.py

    r753 r774  
    157157    - numpy, version >= 1.0 
    158158    - sympy, version >= 0.6.7 
    159     - dill, version >= 0.2.1 
     159    - dill, version >= 0.2.2 
    160160    - klepto, version >= 0.1.1 
    161161 
     
    309309    numpy_version = '>=1.0' 
    310310    sympy_version = '>=0.6.7'#, <0.7.4' 
    311 dill_version = '>=0.2.1' 
     311dill_version = '>=0.2.2' 
    312312klepto_version = '>=0.1.1' 
    313313scipy_version = '>=0.6.0' 
Note: See TracChangeset for help on using the changeset viewer.