Changeset 715 for mystic/setup.py


Ignore:
Timestamp:
04/03/14 15:37:12 (2 years ago)
Author:
mmckerns
Message:

renamed 'nested' solvers as 'ensemble' solvers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mystic/setup.py

    r713 r715  
    203203by the `pathos` package, and thus with little new code solvers are 
    204204extended to high-performance computing. For more information, see 
    205 `mystic.mystic.abstract_map_solver`, `mystic.mystic.abstract_nested_solver`, 
     205`mystic.mystic.abstract_map_solver`, `mystic.mystic.abstract_ensemble_solver`, 
    206206and the pathos documentation at http://dev.danse.us/trac/pathos. 
    207207 
    208208Important classes and functions are found here:: 
    209209 
    210     - mystic.mystic.solvers                [solver optimization algorithms] 
    211     - mystic.mystic.termination            [solver termination conditions] 
    212     - mystic.mystic.strategy               [solver population mutation strategies] 
    213     - mystic.mystic.monitors               [optimization monitors] 
    214     - mystic.mystic.tools                  [function wrappers, etc] 
    215     - mystic.mystic.forward_model          [cost function generator] 
    216     - mystic.models                        [a collection of standard models] 
    217     - mystic.math                          [some mathematical functions and tools] 
     210    - mystic.mystic.solvers                  [solver optimization algorithms] 
     211    - mystic.mystic.termination              [solver termination conditions] 
     212    - mystic.mystic.strategy                 [solver population mutation strategies] 
     213    - mystic.mystic.monitors                 [optimization monitors] 
     214    - mystic.mystic.tools                    [function wrappers, etc] 
     215    - mystic.mystic.forward_model            [cost function generator] 
     216    - mystic.models                          [a collection of standard models] 
     217    - mystic.math                            [some mathematical functions and tools] 
    218218 
    219219Solver and model API definitions are found here:: 
    220220 
    221     - mystic.mystic.abstract_solver        [the solver API definition] 
    222     - mystic.mystic.abstract_map_solver    [the parallel solver API] 
    223     - mystic.mystic.abstract_nested_solver [the nested solver API] 
    224     - mystic.models.abstract_model         [the model API definition] 
     221    - mystic.mystic.abstract_solver          [the solver API definition] 
     222    - mystic.mystic.abstract_map_solver      [the parallel solver API] 
     223    - mystic.mystic.abstract_ensemble_solver [the ensemble solver API] 
     224    - mystic.models.abstract_model           [the model API definition] 
    225225 
    226226 
     
    228228======= 
    229229 
    230 Mystic is distributed under a modified BSD license. 
     230Mystic is distributed under a 3-clause BSD license. 
    231231 
    232232    >>> import mystic 
Note: See TracChangeset for help on using the changeset viewer.