Changeset 774
- Timestamp:
- 12/26/14 09:08:01 (17 months ago)
- Location:
- mystic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
mystic/mystic/constraints.py
r760 r774 257 257 NOTE: The resulting constraints will likely be more expensive to evaluate 258 258 and less accurate than writing the constraints solver from scratch. 259 260 NOTE: 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. 259 263 """ 260 264 ndim = 1 #XXX: better, increase in while loop catching IndexError ? … … 320 324 solver -- the mystic solver to use in the optimization 321 325 termination -- the mystic termination to use in the optimization 326 327 NOTE: 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. 322 330 """ 323 331 def constraint(x): #XXX: better to enable args kwds for penalty ? -
mystic/setup.py
r753 r774 157 157 - numpy, version >= 1.0 158 158 - sympy, version >= 0.6.7 159 - dill, version >= 0.2. 1159 - dill, version >= 0.2.2 160 160 - klepto, version >= 0.1.1 161 161 … … 309 309 numpy_version = '>=1.0' 310 310 sympy_version = '>=0.6.7'#, <0.7.4' 311 dill_version = '>=0.2. 1'311 dill_version = '>=0.2.2' 312 312 klepto_version = '>=0.1.1' 313 313 scipy_version = '>=0.6.0'
Note: See TracChangeset
for help on using the changeset viewer.