pkgsrc-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: pkg/42755: [math/py-mpmath]update to 0.14
The following reply was made to PR pkg/42755; it has been noted by GNATS.
From: wen heping <wenheping%gmail.com@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc:
Subject: Re: pkg/42755: [math/py-mpmath]update to 0.14
Date: Sat, 6 Feb 2010 20:47:52 +0800
--001636e0a70ff937f3047eedf95d
Content-Type: text/plain; charset=ISO-8859-1
The Description is :
--0.14--
Released February 5, 2010
General changes:
* Fully separated the code into "low-level" and "high-level", permitting the
use of alternative contexts (the mpmath.mp object provides the default
implementation)
* Implemented a context for fast double-precision arithmetic using Python
types (mpmath.fp)
* Implemented hooks for importing a faster version of mp arithmetic from Sage
* Implemented optimized fp versions of certain functions (including erf, erfc,
gamma, digamma, ei, e1)
* Renamed and reorganized various internal modules and methods (including
merging low-level modules into mpmath.libmp). This should not affect most
external code using top-level imports.
Plotting:
* Implemented splot() for 3D surface plots (contributed by Jorn Baayen)
* Permit calling plot functions with custom axes (contributed by Jorn Baayen)
Matrices:
* Fixed lu_solve for overdetermined systems (contributed by Vinzent Steinberg)
* Added conjugate matrix transpose (contributed by Vinzent Steinberg)
* Implemented matrix functions (expm, cosm, sinm, sqrtm, logm, powm)
Miscellaneous:
* Prettier printing of numbers with leading zeros at small precisions
* Made nstr pass on kwargs, permitting more formatting options
* Fixed wrong directed rounding of addition of numbers with large magnitude
differences
* Fixed several docstring typos (contributed by Chris Smith)
* Fixed a bug that prevented caching of quadrature nodes to work optimally.
Special functions:
* Implemented fast evaluation for large imaginary heights of the Riemann zeta
function, Z function and derived functions using the Riemann-Siegel
(contributed by Juan Arias de Reyna)
* Unified the zeta() and hurwitz() functions, automatically selecting a fast
algorithm
* Improved altzeta() to fall back to zeta() for large arguments
* Fixed accuracy of zeta(s) for s ~= 1
* Implemented exact evaluation of Euler numbers (contributed by Juan Arias
de Reyna)
* Implemented numerical evaluation of Euler numbers and Euler polynomials
(eulernum(), eulerpoly())
* Fixed bernpoly() and eulerpoly() to compute accurate values for large
parameters
* Fixed accuracy problems for hypergeometric functions with large parameters
* Faster evaluation of hypergeometric series using on-the-fly code generation
* Optimized hypercomb to detect certain zero terms symbolically
* Removed the djtheta function (jtheta() accepts a derivative parameter)
* Implemented li(x, offset=True) to compute the offset logarithmic integral
* Fixed wrong branch in Lambert W function for certain complex inputs
* Implemented the reflection formula for the Barnes G-function,
superfactorials, hyperfactorials, permitting large arguments in the left
half-plane
* Implemented analytic continuation to |z| >= 1 for hypergeometric functions
pFq with p=q+1; added hyp3f2()
* Implemented Borel summation of divergent pFq functions with p > q+1
* Implemented automatic degree reduction of hypergeometric functions with
repeated parameters
* Added convenience functions expj(), expjpi()
* Use Mathematica's convention for the continuation of the Meijer G-function
* Added phase(), polar(), rect() functions for compatibility with the
Python 2.6 cmath module
* Implemented spherical harmonics (spherharm())
* Optimized ci(), si(), chi(), shi() for complex arguments by evaluating
them in terms of ei()
* Optimized hyp2f1 for z ~= -1
The Fix is :
--- Makefile.orig 2010-02-07 03:45:25.000000000 +0800
+++ Makefile 2010-02-07 04:44:09.000000000 +0800
@@ -1,8 +1,8 @@
# $NetBSD$
#
-DISTNAME= mpmath-0.13
-PKGNAME= ${PYPKGPREFIX}-mpmath-0.13
+DISTNAME= mpmath-0.14
+PKGNAME= ${PYPKGPREFIX}-mpmath-0.14
CATEGORIES= math
MASTER_SITES= http://mpmath.googlecode.com/files/
EXTRACT_SUFX= .zip
--- distinfo.orig 2010-02-07 03:45:33.000000000 +0800
+++ distinfo 2010-02-07 03:46:13.000000000 +0800
@@ -1,5 +1,5 @@
$NetBSD$
-SHA1 (mpmath-0.13.zip) = 7bad59bc3630a74df87c96439b9ed6f3642b6c99
-RMD160 (mpmath-0.13.zip) = f90805742a08e2497fea02730a665d00d1a56e33
-Size (mpmath-0.13.zip) = 368471 bytes
+SHA1 (mpmath-0.14.zip) = dfb066da328c6f4855e71f0518e7f5965a1f80ed
+RMD160 (mpmath-0.14.zip) = 34393f582f20caa5d95a94c028f7a84c06660610
+Size (mpmath-0.14.zip) = 505585 bytes
--- PLIST.orig 2010-02-07 03:45:41.000000000 +0800
+++ PLIST 2010-02-07 03:54:30.000000000 +0800
@@ -1,67 +1,120 @@
-@comment $NetBSD$
${PYSITELIB}/mpmath/__init__.py
${PYSITELIB}/mpmath/__init__.pyc
${PYSITELIB}/mpmath/__init__.pyo
-${PYSITELIB}/mpmath/calculus.py
-${PYSITELIB}/mpmath/calculus.pyc
-${PYSITELIB}/mpmath/calculus.pyo
+${PYSITELIB}/mpmath/calculus/__init__.py
+${PYSITELIB}/mpmath/calculus/__init__.pyc
+${PYSITELIB}/mpmath/calculus/__init__.pyo
+${PYSITELIB}/mpmath/calculus/approximation.py
+${PYSITELIB}/mpmath/calculus/approximation.pyc
+${PYSITELIB}/mpmath/calculus/approximation.pyo
+${PYSITELIB}/mpmath/calculus/calculus.py
+${PYSITELIB}/mpmath/calculus/calculus.pyc
+${PYSITELIB}/mpmath/calculus/calculus.pyo
+${PYSITELIB}/mpmath/calculus/differentiation.py
+${PYSITELIB}/mpmath/calculus/differentiation.pyc
+${PYSITELIB}/mpmath/calculus/differentiation.pyo
+${PYSITELIB}/mpmath/calculus/extrapolation.py
+${PYSITELIB}/mpmath/calculus/extrapolation.pyc
+${PYSITELIB}/mpmath/calculus/extrapolation.pyo
+${PYSITELIB}/mpmath/calculus/odes.py
+${PYSITELIB}/mpmath/calculus/odes.pyc
+${PYSITELIB}/mpmath/calculus/odes.pyo
+${PYSITELIB}/mpmath/calculus/optimization.py
+${PYSITELIB}/mpmath/calculus/optimization.pyc
+${PYSITELIB}/mpmath/calculus/optimization.pyo
+${PYSITELIB}/mpmath/calculus/polynomials.py
+${PYSITELIB}/mpmath/calculus/polynomials.pyc
+${PYSITELIB}/mpmath/calculus/polynomials.pyo
+${PYSITELIB}/mpmath/calculus/quadrature.py
+${PYSITELIB}/mpmath/calculus/quadrature.pyc
+${PYSITELIB}/mpmath/calculus/quadrature.pyo
${PYSITELIB}/mpmath/conftest.py
${PYSITELIB}/mpmath/conftest.pyc
${PYSITELIB}/mpmath/conftest.pyo
-${PYSITELIB}/mpmath/elliptic.py
-${PYSITELIB}/mpmath/elliptic.pyc
-${PYSITELIB}/mpmath/elliptic.pyo
+${PYSITELIB}/mpmath/ctx_base.py
+${PYSITELIB}/mpmath/ctx_base.pyc
+${PYSITELIB}/mpmath/ctx_base.pyo
+${PYSITELIB}/mpmath/ctx_fp.py
+${PYSITELIB}/mpmath/ctx_fp.pyc
+${PYSITELIB}/mpmath/ctx_fp.pyo
+${PYSITELIB}/mpmath/ctx_mp.py
+${PYSITELIB}/mpmath/ctx_mp.pyc
+${PYSITELIB}/mpmath/ctx_mp.pyo
+${PYSITELIB}/mpmath/ctx_mp_python.py
+${PYSITELIB}/mpmath/ctx_mp_python.pyc
+${PYSITELIB}/mpmath/ctx_mp_python.pyo
${PYSITELIB}/mpmath/function_docs.py
${PYSITELIB}/mpmath/function_docs.pyc
${PYSITELIB}/mpmath/function_docs.pyo
-${PYSITELIB}/mpmath/functions.py
-${PYSITELIB}/mpmath/functions.pyc
-${PYSITELIB}/mpmath/functions.pyo
-${PYSITELIB}/mpmath/gammazeta.py
-${PYSITELIB}/mpmath/gammazeta.pyc
-${PYSITELIB}/mpmath/gammazeta.pyo
+${PYSITELIB}/mpmath/functions/__init__.py
+${PYSITELIB}/mpmath/functions/__init__.pyc
+${PYSITELIB}/mpmath/functions/__init__.pyo
+${PYSITELIB}/mpmath/functions/elliptic.py
+${PYSITELIB}/mpmath/functions/elliptic.pyc
+${PYSITELIB}/mpmath/functions/elliptic.pyo
+${PYSITELIB}/mpmath/functions/factorials.py
+${PYSITELIB}/mpmath/functions/factorials.pyc
+${PYSITELIB}/mpmath/functions/factorials.pyo
+${PYSITELIB}/mpmath/functions/functions.py
+${PYSITELIB}/mpmath/functions/functions.pyc
+${PYSITELIB}/mpmath/functions/functions.pyo
+${PYSITELIB}/mpmath/functions/hypergeometric.py
+${PYSITELIB}/mpmath/functions/hypergeometric.pyc
+${PYSITELIB}/mpmath/functions/hypergeometric.pyo
+${PYSITELIB}/mpmath/functions/rszeta.py
+${PYSITELIB}/mpmath/functions/rszeta.pyc
+${PYSITELIB}/mpmath/functions/rszeta.pyo
+${PYSITELIB}/mpmath/functions/zeta.py
+${PYSITELIB}/mpmath/functions/zeta.pyc
+${PYSITELIB}/mpmath/functions/zeta.pyo
${PYSITELIB}/mpmath/identification.py
${PYSITELIB}/mpmath/identification.pyc
${PYSITELIB}/mpmath/identification.pyo
-${PYSITELIB}/mpmath/libelefun.py
-${PYSITELIB}/mpmath/libelefun.pyc
-${PYSITELIB}/mpmath/libelefun.pyo
-${PYSITELIB}/mpmath/libhyper.py
-${PYSITELIB}/mpmath/libhyper.pyc
-${PYSITELIB}/mpmath/libhyper.pyo
-${PYSITELIB}/mpmath/libintmath.py
-${PYSITELIB}/mpmath/libintmath.pyc
-${PYSITELIB}/mpmath/libintmath.pyo
-${PYSITELIB}/mpmath/libmpc.py
-${PYSITELIB}/mpmath/libmpc.pyc
-${PYSITELIB}/mpmath/libmpc.pyo
-${PYSITELIB}/mpmath/libmpf.py
-${PYSITELIB}/mpmath/libmpf.pyc
-${PYSITELIB}/mpmath/libmpf.pyo
-${PYSITELIB}/mpmath/libmpi.py
-${PYSITELIB}/mpmath/libmpi.pyc
-${PYSITELIB}/mpmath/libmpi.pyo
-${PYSITELIB}/mpmath/linalg.py
-${PYSITELIB}/mpmath/linalg.pyc
-${PYSITELIB}/mpmath/linalg.pyo
-${PYSITELIB}/mpmath/matrices.py
-${PYSITELIB}/mpmath/matrices.pyc
-${PYSITELIB}/mpmath/matrices.pyo
-${PYSITELIB}/mpmath/mptypes.py
-${PYSITELIB}/mpmath/mptypes.pyc
-${PYSITELIB}/mpmath/mptypes.pyo
-${PYSITELIB}/mpmath/odes.py
-${PYSITELIB}/mpmath/odes.pyc
-${PYSITELIB}/mpmath/odes.pyo
-${PYSITELIB}/mpmath/optimization.py
-${PYSITELIB}/mpmath/optimization.pyc
-${PYSITELIB}/mpmath/optimization.pyo
-${PYSITELIB}/mpmath/quadrature.py
-${PYSITELIB}/mpmath/quadrature.pyc
-${PYSITELIB}/mpmath/quadrature.pyo
-${PYSITELIB}/mpmath/settings.py
-${PYSITELIB}/mpmath/settings.pyc
-${PYSITELIB}/mpmath/settings.pyo
+${PYSITELIB}/mpmath/libmp/__init__.py
+${PYSITELIB}/mpmath/libmp/__init__.pyc
+${PYSITELIB}/mpmath/libmp/__init__.pyo
+${PYSITELIB}/mpmath/libmp/backend.py
+${PYSITELIB}/mpmath/libmp/backend.pyc
+${PYSITELIB}/mpmath/libmp/backend.pyo
+${PYSITELIB}/mpmath/libmp/gammazeta.py
+${PYSITELIB}/mpmath/libmp/gammazeta.pyc
+${PYSITELIB}/mpmath/libmp/gammazeta.pyo
+${PYSITELIB}/mpmath/libmp/libelefun.py
+${PYSITELIB}/mpmath/libmp/libelefun.pyc
+${PYSITELIB}/mpmath/libmp/libelefun.pyo
+${PYSITELIB}/mpmath/libmp/libhyper.py
+${PYSITELIB}/mpmath/libmp/libhyper.pyc
+${PYSITELIB}/mpmath/libmp/libhyper.pyo
+${PYSITELIB}/mpmath/libmp/libintmath.py
+${PYSITELIB}/mpmath/libmp/libintmath.pyc
+${PYSITELIB}/mpmath/libmp/libintmath.pyo
+${PYSITELIB}/mpmath/libmp/libmpc.py
+${PYSITELIB}/mpmath/libmp/libmpc.pyc
+${PYSITELIB}/mpmath/libmp/libmpc.pyo
+${PYSITELIB}/mpmath/libmp/libmpf.py
+${PYSITELIB}/mpmath/libmp/libmpf.pyc
+${PYSITELIB}/mpmath/libmp/libmpf.pyo
+${PYSITELIB}/mpmath/libmp/libmpi.py
+${PYSITELIB}/mpmath/libmp/libmpi.pyc
+${PYSITELIB}/mpmath/libmp/libmpi.pyo
+${PYSITELIB}/mpmath/math2.py
+${PYSITELIB}/mpmath/math2.pyc
+${PYSITELIB}/mpmath/math2.pyo
+${PYSITELIB}/mpmath/matrices/__init__.py
+${PYSITELIB}/mpmath/matrices/__init__.pyc
+${PYSITELIB}/mpmath/matrices/__init__.pyo
+${PYSITELIB}/mpmath/matrices/calculus.py
+${PYSITELIB}/mpmath/matrices/calculus.pyc
+${PYSITELIB}/mpmath/matrices/calculus.pyo
+${PYSITELIB}/mpmath/matrices/linalg.py
+${PYSITELIB}/mpmath/matrices/linalg.pyc
+${PYSITELIB}/mpmath/matrices/linalg.pyo
+${PYSITELIB}/mpmath/matrices/matrices.py
+${PYSITELIB}/mpmath/matrices/matrices.pyc
+${PYSITELIB}/mpmath/matrices/matrices.pyo
+${PYSITELIB}/mpmath/rational.py
+${PYSITELIB}/mpmath/rational.pyc
+${PYSITELIB}/mpmath/rational.pyo
${PYSITELIB}/mpmath/tests/__init__.py
${PYSITELIB}/mpmath/tests/__init__.pyc
${PYSITELIB}/mpmath/tests/__init__.pyo
@@ -92,6 +145,9 @@
${PYSITELIB}/mpmath/tests/test_elliptic.py
${PYSITELIB}/mpmath/tests/test_elliptic.pyc
${PYSITELIB}/mpmath/tests/test_elliptic.pyo
+${PYSITELIB}/mpmath/tests/test_fp.py
+${PYSITELIB}/mpmath/tests/test_fp.pyc
+${PYSITELIB}/mpmath/tests/test_fp.pyo
${PYSITELIB}/mpmath/tests/test_functions.py
${PYSITELIB}/mpmath/tests/test_functions.pyc
${PYSITELIB}/mpmath/tests/test_functions.pyo
@@ -137,12 +193,18 @@
${PYSITELIB}/mpmath/tests/test_special.py
${PYSITELIB}/mpmath/tests/test_special.pyc
${PYSITELIB}/mpmath/tests/test_special.pyo
+${PYSITELIB}/mpmath/tests/test_str.py
+${PYSITELIB}/mpmath/tests/test_str.pyc
+${PYSITELIB}/mpmath/tests/test_str.pyo
${PYSITELIB}/mpmath/tests/test_summation.py
${PYSITELIB}/mpmath/tests/test_summation.pyc
${PYSITELIB}/mpmath/tests/test_summation.pyo
${PYSITELIB}/mpmath/tests/test_trig.py
${PYSITELIB}/mpmath/tests/test_trig.pyc
${PYSITELIB}/mpmath/tests/test_trig.pyo
+${PYSITELIB}/mpmath/tests/test_visualization.py
+${PYSITELIB}/mpmath/tests/test_visualization.pyc
+${PYSITELIB}/mpmath/tests/test_visualization.pyo
${PYSITELIB}/mpmath/tests/torture.py
${PYSITELIB}/mpmath/tests/torture.pyc
${PYSITELIB}/mpmath/tests/torture.pyo
--001636e0a70ff937f3047eedf95d
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
The Description is :<br><br><pre>--0.14--<br>Released February 5, 2010<br><=
br>General changes:<br><br>* Fully separated the code into "low-level&=
quot; and "high-level", permitting the<br> use of alternative co=
ntexts (the <a href=3D"http://mpmath.mp">mpmath.mp</a> object provides the =
default<br>
implementation)<br>* Implemented a context for fast double-precision arit=
hmetic using Python<br> types (mpmath.fp) <br>* Implemented hooks for impo=
rting a faster version of mp arithmetic from Sage<br>* Implemented optimize=
d fp versions of certain functions (including erf, erfc,<br>
gamma, digamma, ei, e1)<br>* Renamed and reorganized various internal mod=
ules and methods (including<br> merging low-level modules into mpmath.libm=
p). This should not affect most<br> external code using top-level imports.=
<br>
<br>Plotting:<br><br>* Implemented splot() for 3D surface plots (contribute=
d by Jorn Baayen)<br>* Permit calling plot functions with custom axes (cont=
ributed by Jorn Baayen)<br><br>Matrices:<br><br>* Fixed lu_solve for overde=
termined systems (contributed by Vinzent Steinberg)<br>
* Added conjugate matrix transpose (contributed by Vinzent Steinberg)<br>* =
Implemented matrix functions (expm, cosm, sinm, sqrtm, logm, powm)<br><br>M=
iscellaneous:<br><br>* Prettier printing of numbers with leading zeros at s=
mall precisions<br>
* Made nstr pass on kwargs, permitting more formatting options<br>* Fixed w=
rong directed rounding of addition of numbers with large magnitude<br> dif=
ferences<br>* Fixed several docstring typos (contributed by Chris Smith)<br=
>
* Fixed a bug that prevented caching of quadrature nodes to work optimally.=
<br><br>Special functions:<br><br>* Implemented fast evaluation for large i=
maginary heights of the Riemann zeta<br> function, Z function and derived =
functions using the Riemann-Siegel<br>
(contributed by Juan Arias de Reyna)<br>* Unified the zeta() and hurwitz(=
) functions, automatically selecting a fast<br> algorithm<br>* Improved al=
tzeta() to fall back to zeta() for large arguments<br>* Fixed accuracy of z=
eta(s) for s ~=3D 1<br>
* Implemented exact evaluation of Euler numbers (contributed by Juan Arias<=
br> de Reyna)<br>* Implemented numerical evaluation of Euler numbers and E=
uler polynomials<br> (eulernum(), eulerpoly())<br>* Fixed bernpoly() and e=
ulerpoly() to compute accurate values for large<br>
parameters<br>* Fixed accuracy problems for hypergeometric functions with=
large parameters<br>* Faster evaluation of hypergeometric series using on-=
the-fly code generation<br>* Optimized hypercomb to detect certain zero ter=
ms symbolically<br>
* Removed the djtheta function (jtheta() accepts a derivative parameter)<br=
>* Implemented li(x, offset=3DTrue) to compute the offset logarithmic integ=
ral<br>* Fixed wrong branch in Lambert W function for certain complex input=
s<br>
* Implemented the reflection formula for the Barnes G-function,<br> superf=
actorials, hyperfactorials, permitting large arguments in the left<br> hal=
f-plane<br>* Implemented analytic continuation to |z| >=3D 1 for hyperge=
ometric functions<br>
pFq with p=3Dq+1; added hyp3f2()<br>* Implemented Borel summation of dive=
rgent pFq functions with p > q+1<br>* Implemented automatic degree reduc=
tion of hypergeometric functions with<br> repeated parameters<br>* Added c=
onvenience functions expj(), expjpi()<br>
* Use Mathematica's convention for the continuation of the Meijer G-fun=
ction<br>* Added phase(), polar(), rect() functions for compatibility with =
the<br> Python 2.6 cmath module<br>* Implemented spherical harmonics (sphe=
rharm())<br>
* Optimized ci(), si(), chi(), shi() for complex arguments by evaluating<br=
> them in terms of ei()<br>* Optimized hyp2f1 for z ~=3D -1<br><br><br>The=
Fix is :<br><br>--- Makefile.orig 2010-02-07 03:45:25.000000000 +080=
0<br>
+++ Makefile 2010-02-07 04:44:09.000000000 +0800<br>@@ -1,8 +1,8 @@<br> =
# $NetBSD$<br> #<br><br>-DISTNAME=3D mpmath-0.13<br>-PKGNAME=3D =
${PYPKGPREFIX}-mpmath-0.13<br>+DISTNAME=3D mpmath-0.14<br>+PKGNAME=3D =
${PYPKGPREFIX}-mpmath-0.14<br>
CATEGORIES=3D math<br> MASTER_SITES=3D <a href=3D"http://mpmath.google=
code.com/files/">http://mpmath.googlecode.com/files/</a><br> EXTRACT_SUFX=
=3D .zip<br>--- distinfo.orig 2010-02-07 03:45:33.000000000 +0800<br=
>+++ distinfo 2010-02-07 03:46:13.000000000 +0800<br>
@@ -1,5 +1,5 @@<br> $NetBSD$<br><br>-SHA1 (mpmath-0.13.zip) =3D 7bad59bc363=
0a74df87c96439b9ed6f3642b6c99<br>-RMD160 (mpmath-0.13.zip) =3D f90805742a08=
e2497fea02730a665d00d1a56e33<br>-Size (mpmath-0.13.zip) =3D 368471 bytes<br=
>+SHA1 (mpmath-0.14.zip) =3D dfb066da328c6f4855e71f0518e7f5965a1f80ed<br>
+RMD160 (mpmath-0.14.zip) =3D 34393f582f20caa5d95a94c028f7a84c06660610<br>+=
Size (mpmath-0.14.zip) =3D 505585 bytes<br>--- PLIST.orig 2010-02-07 03:45=
:41.000000000 +0800<br>+++ PLIST 2010-02-07 03:54:30.000000000 +0800<=
br>
@@ -1,67 +1,120 @@<br>-@comment $NetBSD$<br> ${PYSITELIB}/mpmath/__init__.p=
y<br> ${PYSITELIB}/mpmath/__init__.pyc<br> ${PYSITELIB}/mpmath/__init__.pyo=
<br>-${PYSITELIB}/mpmath/calculus.py<br>-${PYSITELIB}/mpmath/calculus.pyc<b=
r>
-${PYSITELIB}/mpmath/calculus.pyo<br>+${PYSITELIB}/mpmath/calculus/__init__=
.py<br>+${PYSITELIB}/mpmath/calculus/__init__.pyc<br>+${PYSITELIB}/mpmath/c=
alculus/__init__.pyo<br>+${PYSITELIB}/mpmath/calculus/approximation.py<br>
+${PYSITELIB}/mpmath/calculus/approximation.pyc<br>+${PYSITELIB}/mpmath/cal=
culus/approximation.pyo<br>+${PYSITELIB}/mpmath/calculus/calculus.py<br>+${=
PYSITELIB}/mpmath/calculus/calculus.pyc<br>+${PYSITELIB}/mpmath/calculus/ca=
lculus.pyo<br>
+${PYSITELIB}/mpmath/calculus/differentiation.py<br>+${PYSITELIB}/mpmath/ca=
lculus/differentiation.pyc<br>+${PYSITELIB}/mpmath/calculus/differentiation=
.pyo<br>+${PYSITELIB}/mpmath/calculus/extrapolation.py<br>+${PYSITELIB}/mpm=
ath/calculus/extrapolation.pyc<br>
+${PYSITELIB}/mpmath/calculus/extrapolation.pyo<br>+${PYSITELIB}/mpmath/cal=
culus/odes.py<br>+${PYSITELIB}/mpmath/calculus/odes.pyc<br>+${PYSITELIB}/mp=
math/calculus/odes.pyo<br>+${PYSITELIB}/mpmath/calculus/optimization.py<br>
+${PYSITELIB}/mpmath/calculus/optimization.pyc<br>+${PYSITELIB}/mpmath/calc=
ulus/optimization.pyo<br>+${PYSITELIB}/mpmath/calculus/polynomials.py<br>+$=
{PYSITELIB}/mpmath/calculus/polynomials.pyc<br>+${PYSITELIB}/mpmath/calculu=
s/polynomials.pyo<br>
+${PYSITELIB}/mpmath/calculus/quadrature.py<br>+${PYSITELIB}/mpmath/calculu=
s/quadrature.pyc<br>+${PYSITELIB}/mpmath/calculus/quadrature.pyo<br> ${PYSI=
TELIB}/mpmath/conftest.py<br> ${PYSITELIB}/mpmath/conftest.pyc<br> ${PYSITE=
LIB}/mpmath/conftest.pyo<br>
-${PYSITELIB}/mpmath/elliptic.py<br>-${PYSITELIB}/mpmath/elliptic.pyc<br>-$=
{PYSITELIB}/mpmath/elliptic.pyo<br>+${PYSITELIB}/mpmath/ctx_base.py<br>+${P=
YSITELIB}/mpmath/ctx_base.pyc<br>+${PYSITELIB}/mpmath/ctx_base.pyo<br>+${PY=
SITELIB}/mpmath/ctx_fp.py<br>
+${PYSITELIB}/mpmath/ctx_fp.pyc<br>+${PYSITELIB}/mpmath/ctx_fp.pyo<br>+${PY=
SITELIB}/mpmath/ctx_mp.py<br>+${PYSITELIB}/mpmath/ctx_mp.pyc<br>+${PYSITELI=
B}/mpmath/ctx_mp.pyo<br>+${PYSITELIB}/mpmath/ctx_mp_python.py<br>+${PYSITEL=
IB}/mpmath/ctx_mp_python.pyc<br>
+${PYSITELIB}/mpmath/ctx_mp_python.pyo<br> ${PYSITELIB}/mpmath/function_doc=
s.py<br> ${PYSITELIB}/mpmath/function_docs.pyc<br> ${PYSITELIB}/mpmath/func=
tion_docs.pyo<br>-${PYSITELIB}/mpmath/functions.py<br>-${PYSITELIB}/mpmath/=
functions.pyc<br>
-${PYSITELIB}/mpmath/functions.pyo<br>-${PYSITELIB}/mpmath/gammazeta.py<br>=
-${PYSITELIB}/mpmath/gammazeta.pyc<br>-${PYSITELIB}/mpmath/gammazeta.pyo<br=
>+${PYSITELIB}/mpmath/functions/__init__.py<br>+${PYSITELIB}/mpmath/functio=
ns/__init__.pyc<br>
+${PYSITELIB}/mpmath/functions/__init__.pyo<br>+${PYSITELIB}/mpmath/functio=
ns/elliptic.py<br>+${PYSITELIB}/mpmath/functions/elliptic.pyc<br>+${PYSITEL=
IB}/mpmath/functions/elliptic.pyo<br>+${PYSITELIB}/mpmath/functions/factori=
als.py<br>
+${PYSITELIB}/mpmath/functions/factorials.pyc<br>+${PYSITELIB}/mpmath/funct=
ions/factorials.pyo<br>+${PYSITELIB}/mpmath/functions/functions.py<br>+${PY=
SITELIB}/mpmath/functions/functions.pyc<br>+${PYSITELIB}/mpmath/functions/f=
unctions.pyo<br>
+${PYSITELIB}/mpmath/functions/hypergeometric.py<br>+${PYSITELIB}/mpmath/fu=
nctions/hypergeometric.pyc<br>+${PYSITELIB}/mpmath/functions/hypergeometric=
.pyo<br>+${PYSITELIB}/mpmath/functions/rszeta.py<br>+${PYSITELIB}/mpmath/fu=
nctions/rszeta.pyc<br>
+${PYSITELIB}/mpmath/functions/rszeta.pyo<br>+${PYSITELIB}/mpmath/functions=
/zeta.py<br>+${PYSITELIB}/mpmath/functions/zeta.pyc<br>+${PYSITELIB}/mpmath=
/functions/zeta.pyo<br> ${PYSITELIB}/mpmath/identification.py<br> ${PYSITEL=
IB}/mpmath/identification.pyc<br>
${PYSITELIB}/mpmath/identification.pyo<br>-${PYSITELIB}/mpmath/libelefun.p=
y<br>-${PYSITELIB}/mpmath/libelefun.pyc<br>-${PYSITELIB}/mpmath/libelefun.p=
yo<br>-${PYSITELIB}/mpmath/libhyper.py<br>-${PYSITELIB}/mpmath/libhyper.pyc=
<br>
-${PYSITELIB}/mpmath/libhyper.pyo<br>-${PYSITELIB}/mpmath/libintmath.py<br>=
-${PYSITELIB}/mpmath/libintmath.pyc<br>-${PYSITELIB}/mpmath/libintmath.pyo<=
br>-${PYSITELIB}/mpmath/libmpc.py<br>-${PYSITELIB}/mpmath/libmpc.pyc<br>
-${PYSITELIB}/mpmath/libmpc.pyo<br>-${PYSITELIB}/mpmath/libmpf.py<br>-${PYS=
ITELIB}/mpmath/libmpf.pyc<br>-${PYSITELIB}/mpmath/libmpf.pyo<br>-${PYSITELI=
B}/mpmath/libmpi.py<br>-${PYSITELIB}/mpmath/libmpi.pyc<br>-${PYSITELIB}/mpm=
ath/libmpi.pyo<br>
-${PYSITELIB}/mpmath/linalg.py<br>-${PYSITELIB}/mpmath/linalg.pyc<br>-${PYS=
ITELIB}/mpmath/linalg.pyo<br>-${PYSITELIB}/mpmath/matrices.py<br>-${PYSITEL=
IB}/mpmath/matrices.pyc<br>-${PYSITELIB}/mpmath/matrices.pyo<br>-${PYSITELI=
B}/mpmath/mptypes.py<br>
-${PYSITELIB}/mpmath/mptypes.pyc<br>-${PYSITELIB}/mpmath/mptypes.pyo<br>-${=
PYSITELIB}/mpmath/odes.py<br>-${PYSITELIB}/mpmath/odes.pyc<br>-${PYSITELIB}=
/mpmath/odes.pyo<br>-${PYSITELIB}/mpmath/optimization.py<br>-${PYSITELIB}/m=
pmath/optimization.pyc<br>
-${PYSITELIB}/mpmath/optimization.pyo<br>-${PYSITELIB}/mpmath/quadrature.py=
<br>-${PYSITELIB}/mpmath/quadrature.pyc<br>-${PYSITELIB}/mpmath/quadrature.=
pyo<br>-${PYSITELIB}/mpmath/settings.py<br>-${PYSITELIB}/mpmath/settings.py=
c<br>
-${PYSITELIB}/mpmath/settings.pyo<br>+${PYSITELIB}/mpmath/libmp/__init__.py=
<br>+${PYSITELIB}/mpmath/libmp/__init__.pyc<br>+${PYSITELIB}/mpmath/libmp/_=
_init__.pyo<br>+${PYSITELIB}/mpmath/libmp/backend.py<br>+${PYSITELIB}/mpmat=
h/libmp/backend.pyc<br>
+${PYSITELIB}/mpmath/libmp/backend.pyo<br>+${PYSITELIB}/mpmath/libmp/gammaz=
eta.py<br>+${PYSITELIB}/mpmath/libmp/gammazeta.pyc<br>+${PYSITELIB}/mpmath/=
libmp/gammazeta.pyo<br>+${PYSITELIB}/mpmath/libmp/libelefun.py<br>+${PYSITE=
LIB}/mpmath/libmp/libelefun.pyc<br>
+${PYSITELIB}/mpmath/libmp/libelefun.pyo<br>+${PYSITELIB}/mpmath/libmp/libh=
yper.py<br>+${PYSITELIB}/mpmath/libmp/libhyper.pyc<br>+${PYSITELIB}/mpmath/=
libmp/libhyper.pyo<br>+${PYSITELIB}/mpmath/libmp/libintmath.py<br>+${PYSITE=
LIB}/mpmath/libmp/libintmath.pyc<br>
+${PYSITELIB}/mpmath/libmp/libintmath.pyo<br>+${PYSITELIB}/mpmath/libmp/lib=
mpc.py<br>+${PYSITELIB}/mpmath/libmp/libmpc.pyc<br>+${PYSITELIB}/mpmath/lib=
mp/libmpc.pyo<br>+${PYSITELIB}/mpmath/libmp/libmpf.py<br>+${PYSITELIB}/mpma=
th/libmp/libmpf.pyc<br>
+${PYSITELIB}/mpmath/libmp/libmpf.pyo<br>+${PYSITELIB}/mpmath/libmp/libmpi.=
py<br>+${PYSITELIB}/mpmath/libmp/libmpi.pyc<br>+${PYSITELIB}/mpmath/libmp/l=
ibmpi.pyo<br>+${PYSITELIB}/mpmath/math2.py<br>+${PYSITELIB}/mpmath/math2.py=
c<br>
+${PYSITELIB}/mpmath/math2.pyo<br>+${PYSITELIB}/mpmath/matrices/__init__.py=
<br>+${PYSITELIB}/mpmath/matrices/__init__.pyc<br>+${PYSITELIB}/mpmath/matr=
ices/__init__.pyo<br>+${PYSITELIB}/mpmath/matrices/calculus.py<br>+${PYSITE=
LIB}/mpmath/matrices/calculus.pyc<br>
+${PYSITELIB}/mpmath/matrices/calculus.pyo<br>+${PYSITELIB}/mpmath/matrices=
/linalg.py<br>+${PYSITELIB}/mpmath/matrices/linalg.pyc<br>+${PYSITELIB}/mpm=
ath/matrices/linalg.pyo<br>+${PYSITELIB}/mpmath/matrices/matrices.py<br>
+${PYSITELIB}/mpmath/matrices/matrices.pyc<br>+${PYSITELIB}/mpmath/matrices=
/matrices.pyo<br>+${PYSITELIB}/mpmath/rational.py<br>+${PYSITELIB}/mpmath/r=
ational.pyc<br>+${PYSITELIB}/mpmath/rational.pyo<br> ${PYSITELIB}/mpmath/te=
sts/__init__.py<br>
${PYSITELIB}/mpmath/tests/__init__.pyc<br> ${PYSITELIB}/mpmath/tests/__ini=
t__.pyo<br>@@ -92,6 +145,9 @@<br> ${PYSITELIB}/mpmath/tests/test_elliptic.p=
y<br> ${PYSITELIB}/mpmath/tests/test_elliptic.pyc<br> ${PYSITELIB}/mpmath/t=
ests/test_elliptic.pyo<br>
+${PYSITELIB}/mpmath/tests/test_fp.py<br>+${PYSITELIB}/mpmath/tests/test_fp=
.pyc<br>+${PYSITELIB}/mpmath/tests/test_fp.pyo<br> ${PYSITELIB}/mpmath/test=
s/test_functions.py<br> ${PYSITELIB}/mpmath/tests/test_functions.pyc<br>
${PYSITELIB}/mpmath/tests/test_functions.pyo<br>@@ -137,12 +193,18 @@<br> =
${PYSITELIB}/mpmath/tests/test_special.py<br> ${PYSITELIB}/mpmath/tests/tes=
t_special.pyc<br> ${PYSITELIB}/mpmath/tests/test_special.pyo<br>+${PYSITELI=
B}/mpmath/tests/test_str.py<br>
+${PYSITELIB}/mpmath/tests/test_str.pyc<br>+${PYSITELIB}/mpmath/tests/test_=
str.pyo<br> ${PYSITELIB}/mpmath/tests/test_summation.py<br> ${PYSITELIB}/mp=
math/tests/test_summation.pyc<br> ${PYSITELIB}/mpmath/tests/test_summation.=
pyo<br>
${PYSITELIB}/mpmath/tests/test_trig.py<br> ${PYSITELIB}/mpmath/tests/test_=
trig.pyc<br> ${PYSITELIB}/mpmath/tests/test_trig.pyo<br>+${PYSITELIB}/mpmat=
h/tests/test_visualization.py<br>+${PYSITELIB}/mpmath/tests/test_visualizat=
ion.pyc<br>
+${PYSITELIB}/mpmath/tests/test_visualization.pyo<br> ${PYSITELIB}/mpmath/t=
ests/torture.py<br> ${PYSITELIB}/mpmath/tests/torture.pyc<br> ${PYSITELIB}/=
mpmath/tests/torture.pyo<br></pre>
--001636e0a70ff937f3047eedf95d--
Home |
Main Index |
Thread Index |
Old Index