Metadata-Version: 1.1
Name: brent-search
Version: 1.0.12
Summary: Brent's method for univariate function optimization.
Home-page: http://github.com/Horta/brent-search
Author: Danilo Horta
Author-email: horta@ebi.ac.uk
License: MIT
Description: brent-search
        ============
        
        |PyPIl| |PyPIv| |Anaconda-Server Badge| |Documentation Status|
        
        Brent's method for univariate function optimization.
        
        Example
        -------
        
        .. code:: python
        
            from brent_search import brent
        
            def func(x, s):
              return (x - s)**2 - 0.8
        
            r = brent(lambda x: func(x, 0), -10, 10)
            print(r)
        
        The output should be
        
        ::
        
            (0.0, -0.8, 6)
        
        Installing
        ----------
        
        The recommended way of installing it is via
        `conda <http://conda.pydata.org/docs/index.html>`__
        
        .. code:: bash
        
            conda install -c conda-forge brent_search
        
        An alternative way would be via pip
        
        .. code:: bash
        
            pip install brent_search
        
        Running the tests
        -----------------
        
        After installation, you can test it
        
        ::
        
            python -c "import brent_search; brent_search.test()"
        
        as long as you have `pytest <http://docs.pytest.org/en/latest/>`__.
        
        Authors
        -------
        
        -  **Danilo Horta** - https://github.com/Horta
        
        License
        -------
        
        This project is licensed under the MIT License - see the
        `LICENSE <LICENSE>`__ file for details
        
        .. |PyPIl| image:: https://img.shields.io/pypi/l/brent-search.svg?style=flat-square
           :target: https://pypi.python.org/pypi/brent-search/
        .. |PyPIv| image:: https://img.shields.io/pypi/v/brent-search.svg?style=flat-square
           :target: https://pypi.python.org/pypi/brent-search/
        .. |Anaconda-Server Badge| image:: https://anaconda.org/conda-forge/ndarray_listener/badges/version.svg
           :target: https://anaconda.org/conda-forge/ndarray_listener
        .. |Documentation Status| image:: https://readthedocs.org/projects/brent-search/badge/?version=latest
           :target: http://brent-search.readthedocs.io/en/latest/?badge=latest
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Operating System :: OS Independent
