multiple-integrate 2.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,45 @@
1
+ """multiple_integrate
2
+ ====================
3
+
4
+ Symbolic definite integration for Python, with an emphasis on structured
5
+ multiple integrals.
6
+
7
+ The main public entry point is ``multiple_integrate``.
8
+ """
9
+
10
+ from multiple_integrate.core import Decomposition, multiple_integrate
11
+ from multiple_integrate.regions import (
12
+ AffineSimplexRegion,
13
+ AnnulusRegion,
14
+ BallRegion,
15
+ BoxRegion,
16
+ DiskRegion,
17
+ EllipsoidRegion,
18
+ GraphRegion,
19
+ IteratedRegion,
20
+ Region,
21
+ SimplexRegion,
22
+ SphericalShellRegion,
23
+ UnionRegion,
24
+ boole,
25
+ region_from_ranges,
26
+ )
27
+
28
+ __all__ = [
29
+ "multiple_integrate",
30
+ "Decomposition",
31
+ "Region",
32
+ "AffineSimplexRegion",
33
+ "AnnulusRegion",
34
+ "BallRegion",
35
+ "BoxRegion",
36
+ "DiskRegion",
37
+ "EllipsoidRegion",
38
+ "GraphRegion",
39
+ "IteratedRegion",
40
+ "SimplexRegion",
41
+ "SphericalShellRegion",
42
+ "UnionRegion",
43
+ "boole",
44
+ "region_from_ranges",
45
+ ]