.. :changelog:
2.1.0 (2014-05-22) ++++++++++++++++++ - Removing dependence on ``acor`` extension. - Added arguments to ``PTSampler`` function. - Added automatic load-balancing for MPI runs. - Added custom load-balancing for MPI and multiprocessing. - New default multiprocessing pool that supports ``^C``. 2.0.0 (2013-11-17) ++++++++++++++++++ - **Re-licensed under the MIT license!** - Clearer less verbose documentation. - Added checks for parameters becoming infinite or NaN. - Added checks for log-probability becoming NaN. - Improved parallelization and various other tweaks in ``PTSampler``. 1.2.0 (2013-01-30) ++++++++++++++++++ - Added a parallel tempering sampler ``PTSampler``. - Added instructions and utilities for using ``emcee`` with ``MPI``. - Added ``flatlnprobability`` property to the ``EnsembleSampler`` object to be consistent with the ``flatchain`` property. - Updated document for publication in PASP. - Various bug fixes. 1.1.3 (2012-11-22) ++++++++++++++++++ - Made the packaging system more robust even when numpy is not installed. 1.1.2 (2012-08-06) ++++++++++++++++++ - Another bug fix related to metadata blobs: the shape of the final ``blobs`` object was incorrect and all of the entries would generally be identical because we needed to copy the list that was appended at each step. Thanks goes to Jacqueline Chen (MIT) for catching this problem. 1.1.1 (2012-07-30) ++++++++++++++++++ - Fixed bug related to metadata blobs. The sample function was yielding the ``blobs`` object even when it wasn't expected. 1.1.0 (2012-07-28) ++++++++++++++++++ - Allow the ``lnprobfn`` to return arbitrary "blobs" of data as well as the log-probability. - Python 3 compatible (thanks Alex Conley)! - Various speed ups and clean ups in the core code base. - New documentation with better examples and more discussion. 1.0.1 (2012-03-31) ++++++++++++++++++ - Fixed transpose bug in the usage of ``acor`` in ``EnsembleSampler``. 1.0.0 (2012-02-15) ++++++++++++++++++ - Initial release.
This commit is contained in:
parent
accbc46e2b
commit
7ac79c9fd3
3 changed files with 16 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.1 2014/03/15 17:06:55 jihbed Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2015/08/05 21:50:06 jihbed Exp $
|
||||
|
||||
DISTNAME= emcee-2.0.0
|
||||
DISTNAME= emcee-2.1.0
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= math
|
||||
MASTER_SITES= https://pypi.python.org/packages/source/e/emcee/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2014/03/15 17:06:55 jihbed Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2015/08/05 21:50:07 jihbed Exp $
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
|
@ -7,12 +7,21 @@ ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
|||
${PYSITELIB}/emcee/__init__.py
|
||||
${PYSITELIB}/emcee/__init__.pyc
|
||||
${PYSITELIB}/emcee/__init__.pyo
|
||||
${PYSITELIB}/emcee/autocorr.py
|
||||
${PYSITELIB}/emcee/autocorr.pyc
|
||||
${PYSITELIB}/emcee/autocorr.pyo
|
||||
${PYSITELIB}/emcee/ensemble.py
|
||||
${PYSITELIB}/emcee/ensemble.pyc
|
||||
${PYSITELIB}/emcee/ensemble.pyo
|
||||
${PYSITELIB}/emcee/interruptible_pool.py
|
||||
${PYSITELIB}/emcee/interruptible_pool.pyc
|
||||
${PYSITELIB}/emcee/interruptible_pool.pyo
|
||||
${PYSITELIB}/emcee/mh.py
|
||||
${PYSITELIB}/emcee/mh.pyc
|
||||
${PYSITELIB}/emcee/mh.pyo
|
||||
${PYSITELIB}/emcee/mpi_pool.py
|
||||
${PYSITELIB}/emcee/mpi_pool.pyc
|
||||
${PYSITELIB}/emcee/mpi_pool.pyo
|
||||
${PYSITELIB}/emcee/ptsampler.py
|
||||
${PYSITELIB}/emcee/ptsampler.pyc
|
||||
${PYSITELIB}/emcee/ptsampler.pyo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1 2014/03/15 17:06:55 jihbed Exp $
|
||||
$NetBSD: distinfo,v 1.2 2015/08/05 21:50:07 jihbed Exp $
|
||||
|
||||
SHA1 (emcee-2.0.0.tar.gz) = be8666eca7cd1eedee23cb26ffb4d14927727353
|
||||
RMD160 (emcee-2.0.0.tar.gz) = 8c66e4e8bf2b5ad500f3f946f8bea2f0c1ab0bb6
|
||||
Size (emcee-2.0.0.tar.gz) = 18774 bytes
|
||||
SHA1 (emcee-2.1.0.tar.gz) = c942e97d0d13c4a1c9e586cae428e02e3efee1a3
|
||||
RMD160 (emcee-2.1.0.tar.gz) = 2d141fc5cf7f1ab983d9faa97b714909bc133d5a
|
||||
Size (emcee-2.1.0.tar.gz) = 23094 bytes
|
||||
|
|
Loading…
Reference in a new issue