Skip to content

Commit 862ddb7

Browse files
committed
1 parent 0c6e88b commit 862ddb7

File tree

143 files changed

+327
-365
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+327
-365
lines changed

en/latest/.buildinfo

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: cee6ca0f70145eeef63a23a2e950d04d
3+
config: 11b387d85116d901d6824567afa7879c
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
-3.97 KB
Binary file not shown.
-66 Bytes
Binary file not shown.
12.3 KB
Binary file not shown.
Binary file not shown.
-66 Bytes
Binary file not shown.
307 Bytes
Binary file not shown.
-66 Bytes
Binary file not shown.

en/latest/_sources/internals/hyperexpand.rst.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ we proceed by computing `f(g(w))` (and simplifying naively)
439439
and indeed get back `w`. (In case of branched functions we have to be
440440
aware of branch cuts. In that case we take `w` to be a positive real
441441
number and check the formula. If what we have found works for positive
442-
`w`, then just replace :func:`~diofant.functions.elementary.exponential.exp` inside any branched function by
442+
`w`, then just replace :func:`~diofant.core.power.exp` inside any branched function by
443443
:func:`~diofant.functions.elementary.exponential.exp\_polar` and what we get is right for `all` `w`.) Hence
444444
we can write the formula as
445445

en/latest/_sources/modules/core.rst.txt

+1-8
Original file line numberDiff line numberDiff line change
@@ -209,16 +209,9 @@ GoldenRatio
209209

210210
power
211211
-----
212-
.. module:: diofant.core.power
213-
214-
Pow
215-
^^^
216-
.. autoclass:: Pow
212+
.. automodule:: diofant.core.power
217213
:members:
218214

219-
integer_nthroot
220-
^^^^^^^^^^^^^^^
221-
.. autofunction:: integer_nthroot
222215

223216
mul
224217
---

en/latest/_sources/modules/functions/elementary.rst.txt

-11
Original file line numberDiff line numberDiff line change
@@ -268,11 +268,6 @@ RoundFunction
268268
diofant.functions.elementary.exponential
269269
========================================
270270

271-
exp
272-
---
273-
274-
.. autofunction:: diofant.functions.elementary.exponential.exp
275-
276271
exp_polar
277272
---------
278273

@@ -285,12 +280,6 @@ LambertW
285280
.. autoclass:: diofant.functions.elementary.exponential.LambertW
286281
:members:
287282

288-
log
289-
---
290-
291-
.. autoclass:: diofant.functions.elementary.exponential.log
292-
:members:
293-
294283

295284
diofant.functions.elementary.piecewise
296285
======================================

en/latest/_sources/release/notes-0.15.rst.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Compatibility breaks
2626
* Removed ``bottom_up()``, ``has_variety()`` and ``has_dups()`` functions, see :pull:`1380`.
2727
* Removed ``diofant.tensor.tensor`` module, see :pull:`1380`.
2828
* Removed ``symarray()`` function, see :pull:`1383`.
29-
* Removed ``base`` kwarg for :func:`~diofant.functions.elementary.exponential.log`, see :pull:`1407`.
30-
* Removed ``ln`` alias for :func:`~diofant.functions.elementary.exponential.log`, see :pull:`1410`.
29+
* Removed ``base`` kwarg for :func:`~diofant.core.power.log`, see :pull:`1407`.
30+
* Removed ``ln`` alias for :func:`~diofant.core.power.log`, see :pull:`1410`.
3131

3232
Minor changes
3333
=============
@@ -109,3 +109,4 @@ These Sympy issues also were addressed:
109109
* :sympyissue:`26566`: wrong result integrating sin(a*(x+pi))**2
110110
* :sympyissue:`26571`: integrate((x**8+1)**(-1/2),x) raises _CoeffExpValueError
111111
* :sympyissue:`26577`: factor should use the same domain for numerator and denominator
112+
* :sympyissue:`26682`: Incorrect behaviour for solve_poly_system

en/latest/_sources/release/notes-0.8.rst.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ New features
99

1010
* MrvAsympt algorithm to find asymptotic expansion, see :func:`~diofant.core.expr.Expr.aseries` method and :pull:`6`. Thanks to Avichal Dayal.
1111
* :func:`~diofant.concrete.summations.Sum.findrecur` method to find recurrence relations (with Sister Celine's algorithm), see :pull:`15`.
12-
* Support for :class:`~diofant.core.power.Pow`/:class:`~diofant.functions.elementary.exponential.log` branch-cuts in limits, see :pull:`140`.
12+
* Support for :class:`~diofant.core.power.Pow`/:class:`~diofant.core.power.log` branch-cuts in limits, see :pull:`140`.
1313
* Added basic optimization package, see :func:`~diofant.calculus.optimization.minimize` and :pull:`108`.
1414
* Cartesian product of iterables using Cantor pairing, see :func:`~diofant.utilities.iterables.cantor_product` and :pull:`276`.
1515
* :class:`~diofant.sets.fancysets.Rationals` set, :pull:`255`.

en/latest/_static/documentation_options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const DOCUMENTATION_OPTIONS = {
2-
VERSION: '0.15.0a1.dev116+g8be7b0da4',
2+
VERSION: '0.15.0a1.dev119+ge3a262b61',
33
LANGUAGE: 'en',
44
COLLAPSE_INDEX: false,
55
BUILDER: 'html',

en/latest/aboutus.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>About &mdash; Diofant 0.15.0a1.dev116+g8be7b0da4 documentation</title>
7+
<title>About &mdash; Diofant 0.15.0a1.dev119+ge3a262b61 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/graphviz.css?v=fd3f3429" />
@@ -18,7 +18,7 @@
1818

1919
<script src="_static/jquery.js?v=5d32c60e"></script>
2020
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
21-
<script src="_static/documentation_options.js?v=b625be9b"></script>
21+
<script src="_static/documentation_options.js?v=1147e9ef"></script>
2222
<script src="_static/doctools.js?v=9a2dae69"></script>
2323
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
2424
<script src="_static/js/theme.js"></script>

en/latest/cli.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Command-Line Usage &mdash; Diofant 0.15.0a1.dev116+g8be7b0da4 documentation</title>
7+
<title>Command-Line Usage &mdash; Diofant 0.15.0a1.dev119+ge3a262b61 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/graphviz.css?v=fd3f3429" />
@@ -18,7 +18,7 @@
1818

1919
<script src="_static/jquery.js?v=5d32c60e"></script>
2020
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
21-
<script src="_static/documentation_options.js?v=b625be9b"></script>
21+
<script src="_static/documentation_options.js?v=1147e9ef"></script>
2222
<script src="_static/doctools.js?v=9a2dae69"></script>
2323
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
2424
<script src="_static/js/theme.js"></script>

en/latest/genindex.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Index &mdash; Diofant 0.15.0a1.dev116+g8be7b0da4 documentation</title>
6+
<title>Index &mdash; Diofant 0.15.0a1.dev119+ge3a262b61 documentation</title>
77
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
88
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
99
<link rel="stylesheet" type="text/css" href="_static/graphviz.css?v=fd3f3429" />
@@ -17,7 +17,7 @@
1717

1818
<script src="_static/jquery.js?v=5d32c60e"></script>
1919
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
20-
<script src="_static/documentation_options.js?v=b625be9b"></script>
20+
<script src="_static/documentation_options.js?v=1147e9ef"></script>
2121
<script src="_static/doctools.js?v=9a2dae69"></script>
2222
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
2323
<script src="_static/js/theme.js"></script>
@@ -667,14 +667,14 @@ <h2 id="A">A</h2>
667667
<li><a href="modules/core.html#diofant.core.expr.Expr.as_real_imag">(diofant.core.expr.Expr method)</a>
668668
</li>
669669
<li><a href="modules/core.html#diofant.core.mul.Mul.as_real_imag">(diofant.core.mul.Mul method)</a>
670+
</li>
671+
<li><a href="modules/core.html#diofant.core.power.log.as_real_imag">(diofant.core.power.log method)</a>
670672
</li>
671673
<li><a href="modules/core.html#diofant.core.power.Pow.as_real_imag">(diofant.core.power.Pow method)</a>
672674
</li>
673675
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.complexes.im.as_real_imag">(diofant.functions.elementary.complexes.im method)</a>
674676
</li>
675677
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.complexes.re.as_real_imag">(diofant.functions.elementary.complexes.re method)</a>
676-
</li>
677-
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.exponential.log.as_real_imag">(diofant.functions.elementary.exponential.log method)</a>
678678
</li>
679679
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.hyperbolic.sinh.as_real_imag">(diofant.functions.elementary.hyperbolic.sinh method)</a>
680680
</li>
@@ -2743,7 +2743,7 @@ <h2 id="E">E</h2>
27432743
<li><a href="modules/matrices/matrices.html#diofant.matrices.matrices.MatrixBase.exp">exp() (diofant.matrices.matrices.MatrixBase method)</a>
27442744

27452745
<ul>
2746-
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.exponential.exp">(in module diofant.functions.elementary.exponential)</a>
2746+
<li><a href="modules/core.html#diofant.core.power.exp">(in module diofant.core.power)</a>
27472747
</li>
27482748
</ul></li>
27492749
<li><a href="modules/core.html#diofant.core.numbers.Exp1">Exp1 (class in diofant.core.numbers)</a>
@@ -2889,11 +2889,11 @@ <h2 id="F">F</h2>
28892889
<li><a href="modules/core.html#diofant.core.function.Function.fdiff">fdiff() (diofant.core.function.Function method)</a>
28902890

28912891
<ul>
2892+
<li><a href="modules/core.html#diofant.core.power.log.fdiff">(diofant.core.power.log method)</a>
2893+
</li>
28922894
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.complexes.Abs.fdiff">(diofant.functions.elementary.complexes.Abs method)</a>
28932895
</li>
28942896
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.exponential.LambertW.fdiff">(diofant.functions.elementary.exponential.LambertW method)</a>
2895-
</li>
2896-
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.exponential.log.fdiff">(diofant.functions.elementary.exponential.log method)</a>
28972897
</li>
28982898
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.hyperbolic.csch.fdiff">(diofant.functions.elementary.hyperbolic.csch method)</a>
28992899
</li>
@@ -3440,7 +3440,7 @@ <h2 id="I">I</h2>
34403440
</li>
34413441
<li><a href="modules/matrices/expressions.html#diofant.matrices.expressions.Inverse">Inverse (class in diofant.matrices.expressions)</a>
34423442
</li>
3443-
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.exponential.log.inverse">inverse() (diofant.functions.elementary.exponential.log method)</a>
3443+
<li><a href="modules/core.html#diofant.core.power.log.inverse">inverse() (diofant.core.power.log method)</a>
34443444

34453445
<ul>
34463446
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.hyperbolic.acosh.inverse">(diofant.functions.elementary.hyperbolic.acosh method)</a>
@@ -4002,7 +4002,7 @@ <h2 id="L">L</h2>
40024002
<li><a href="modules/polys.html#diofant.polys.polytools.LM">(in module diofant.polys.polytools)</a>
40034003
</li>
40044004
</ul></li>
4005-
<li><a href="modules/functions/elementary.html#diofant.functions.elementary.exponential.log">log (class in diofant.functions.elementary.exponential)</a>
4005+
<li><a href="modules/core.html#diofant.core.power.log">log (class in diofant.core.power)</a>
40064006
</li>
40074007
<li><a href="modules/simplify/simplify.html#diofant.simplify.simplify.logcombine">logcombine() (in module diofant.simplify.simplify)</a>
40084008
</li>

en/latest/guide.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Development &mdash; Diofant 0.15.0a1.dev116+g8be7b0da4 documentation</title>
7+
<title>Development &mdash; Diofant 0.15.0a1.dev119+ge3a262b61 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/graphviz.css?v=fd3f3429" />
@@ -18,7 +18,7 @@
1818

1919
<script src="_static/jquery.js?v=5d32c60e"></script>
2020
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
21-
<script src="_static/documentation_options.js?v=b625be9b"></script>
21+
<script src="_static/documentation_options.js?v=1147e9ef"></script>
2222
<script src="_static/doctools.js?v=9a2dae69"></script>
2323
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
2424
<script src="_static/js/theme.js"></script>

en/latest/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta content="MJQX0mr79AK_SDl4JzriJBKrebj_maVDMKFTpsPhGiU" name="google-site-verification" />
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>Diofant’s documentation &mdash; Diofant 0.15.0a1.dev116+g8be7b0da4 documentation</title>
8+
<title>Diofant’s documentation &mdash; Diofant 0.15.0a1.dev119+ge3a262b61 documentation</title>
99
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
1010
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1111
<link rel="stylesheet" type="text/css" href="_static/graphviz.css?v=fd3f3429" />
@@ -19,7 +19,7 @@
1919

2020
<script src="_static/jquery.js?v=5d32c60e"></script>
2121
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
22-
<script src="_static/documentation_options.js?v=b625be9b"></script>
22+
<script src="_static/documentation_options.js?v=1147e9ef"></script>
2323
<script src="_static/doctools.js?v=9a2dae69"></script>
2424
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
2525
<script>window.MathJax = {"CommonHTML": {"linebreaks": {"automatic": true}}, "HTML-CSS": {"linebreaks": {"automatic": true}}, "SVG": {"linebreaks": {"automatic": true}}}</script>

en/latest/install.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Installation &mdash; Diofant 0.15.0a1.dev116+g8be7b0da4 documentation</title>
7+
<title>Installation &mdash; Diofant 0.15.0a1.dev119+ge3a262b61 documentation</title>
88
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="_static/graphviz.css?v=fd3f3429" />
@@ -18,7 +18,7 @@
1818

1919
<script src="_static/jquery.js?v=5d32c60e"></script>
2020
<script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
21-
<script src="_static/documentation_options.js?v=b625be9b"></script>
21+
<script src="_static/documentation_options.js?v=1147e9ef"></script>
2222
<script src="_static/doctools.js?v=9a2dae69"></script>
2323
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
2424
<script src="_static/js/theme.js"></script>

en/latest/internals/evalf.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Numerical evaluation &mdash; Diofant 0.15.0a1.dev116+g8be7b0da4 documentation</title>
7+
<title>Numerical evaluation &mdash; Diofant 0.15.0a1.dev119+ge3a262b61 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css?v=fd3f3429" />
@@ -18,7 +18,7 @@
1818

1919
<script src="../_static/jquery.js?v=5d32c60e"></script>
2020
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
21-
<script src="../_static/documentation_options.js?v=b625be9b"></script>
21+
<script src="../_static/documentation_options.js?v=1147e9ef"></script>
2222
<script src="../_static/doctools.js?v=9a2dae69"></script>
2323
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2424
<script>window.MathJax = {"CommonHTML": {"linebreaks": {"automatic": true}}, "HTML-CSS": {"linebreaks": {"automatic": true}}, "SVG": {"linebreaks": {"automatic": true}}}</script>

en/latest/internals/g-functions.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Computing Integrals using Meijer G-Functions &mdash; Diofant 0.15.0a1.dev116+g8be7b0da4 documentation</title>
7+
<title>Computing Integrals using Meijer G-Functions &mdash; Diofant 0.15.0a1.dev119+ge3a262b61 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css?v=fd3f3429" />
@@ -18,7 +18,7 @@
1818

1919
<script src="../_static/jquery.js?v=5d32c60e"></script>
2020
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
21-
<script src="../_static/documentation_options.js?v=b625be9b"></script>
21+
<script src="../_static/documentation_options.js?v=1147e9ef"></script>
2222
<script src="../_static/doctools.js?v=9a2dae69"></script>
2323
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2424
<script>window.MathJax = {"CommonHTML": {"linebreaks": {"automatic": true}}, "HTML-CSS": {"linebreaks": {"automatic": true}}, "SVG": {"linebreaks": {"automatic": true}}}</script>

en/latest/internals/gruntz.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>The Gruntz Algorithm &mdash; Diofant 0.15.0a1.dev116+g8be7b0da4 documentation</title>
7+
<title>The Gruntz Algorithm &mdash; Diofant 0.15.0a1.dev119+ge3a262b61 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=80d5e7a1" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css?v=fd3f3429" />
@@ -18,7 +18,7 @@
1818

1919
<script src="../_static/jquery.js?v=5d32c60e"></script>
2020
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
21-
<script src="../_static/documentation_options.js?v=b625be9b"></script>
21+
<script src="../_static/documentation_options.js?v=1147e9ef"></script>
2222
<script src="../_static/doctools.js?v=9a2dae69"></script>
2323
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2424
<script>window.MathJax = {"CommonHTML": {"linebreaks": {"automatic": true}}, "HTML-CSS": {"linebreaks": {"automatic": true}}, "SVG": {"linebreaks": {"automatic": true}}}</script>

0 commit comments

Comments
 (0)