pymcpp 5.0.1__cp310-cp310-win_amd64.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.
- pymcpp-5.0.1.data/platlib/libopenblas-c63be9f939bfce8a1ebc04eac0fa1f13.dll +0 -0
- pymcpp-5.0.1.data/platlib/msvcp140-a4c2229bdc2a2a630acdc095b4d86008.dll +0 -0
- pymcpp-5.0.1.data/platlib/msvcp140_1-226498d4bfcb4f07974757b596ebec45.dll +0 -0
- pymcpp-5.0.1.dist-info/DELVEWHEEL +2 -0
- pymcpp-5.0.1.dist-info/METADATA +58 -0
- pymcpp-5.0.1.dist-info/RECORD +11 -0
- pymcpp-5.0.1.dist-info/WHEEL +5 -0
- pymcpp-5.0.1.dist-info/licenses/LICENSE +2 -0
- pymcpp-5.0.1.dist-info/licenses/THIRD_PARTY_NOTICES.txt +2189 -0
- pymcpp.cp310-win_amd64.pyd +0 -0
- pymcpp.pyi +10160 -0
|
Binary file
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
Version: 1.13.0
|
|
2
|
+
Arguments: ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-or3lv_l0\\cp310-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '--add-path', 'C:/openblas/bin', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-or3lv_l0\\cp310-win_amd64\\repaired_wheel', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-or3lv_l0\\cp310-win_amd64\\built_wheel\\pymcpp-5.0.1-cp310-cp310-win_amd64.whl']
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pymcpp
|
|
3
|
+
Version: 5.0.1
|
|
4
|
+
Summary: Python interface to MC++
|
|
5
|
+
License-File: LICENSE
|
|
6
|
+
License-File: THIRD_PARTY_NOTICES.txt
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# MC++ Toolkit for Construction, Manipulation and Evaluation of Factorable Functions #
|
|
11
|
+
|
|
12
|
+
MC++ provides a collection of classes to support the construction and manipulation of factorable functions and their evaluation using a range of arithmetics. It is primarily written in C++ to promote execution speed, while the module pyMC includes Python binders through [pybind11](https://pybind11.readthedocs.io/en/stable/).
|
|
13
|
+
|
|
14
|
+
Expression trees in MC++ can comprise any finite combination of unary and binary operations from a default library and are described by direct acyclic graphs (DAGs). MC++ also features a mechanism to extend DAGs with external operations, currently including affine and polynomial subexpressions as well as multi-layer perceptrons (MLP) and nested DAGs. Through the library [CRONOS](https://github.com/omega-icl/cronos), MC++ can also be extended with systems of algebraic and differential equations. Expression trees generated with MC++ can be used by the library [CANON](https://github.com/omega-icl/canon) for local and global numerical optimization; and the library [MAGNUS](https://github.com/omega-icl/magnus) for the development and analysis of mathematical models.
|
|
15
|
+
|
|
16
|
+
The present version 5.0 of MC++ has capability for:
|
|
17
|
+
|
|
18
|
+
* Construction and differentiation of expression trees (both forward and reverse accumulation modes)
|
|
19
|
+
* Recursive decomposition of factorable expressions into linear/polynomial subexpressions and transcendental operations
|
|
20
|
+
* Specification of nested expression trees to enable tailored bounding strategies
|
|
21
|
+
|
|
22
|
+
The main bounding components in version 5.0 of MC++ include:
|
|
23
|
+
|
|
24
|
+
* Interval arithmetic
|
|
25
|
+
* Eigenvalue arithmetic
|
|
26
|
+
* Ellipsoidal arithmetic
|
|
27
|
+
* McCormick relaxations
|
|
28
|
+
* Taylor and Chebyshev models
|
|
29
|
+
* Polyhedral relaxations
|
|
30
|
+
* Superposition relaxations
|
|
31
|
+
|
|
32
|
+
A range of python scripts and notebooks are provided in `notebook` subdirectory to illustrate these capabilities.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
### Setting up MC++ ###
|
|
36
|
+
|
|
37
|
+
Refer to [INSTALL.md](./INSTALL.md) for instructions.
|
|
38
|
+
|
|
39
|
+
### Contacts ###
|
|
40
|
+
|
|
41
|
+
* Repo owner: [Benoit C. Chachuat](https://profiles.imperial.ac.uk/b.chachuat)
|
|
42
|
+
* OMEGA Research Group
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
### References ###
|
|
46
|
+
|
|
47
|
+
* Bompadre, A., A. Mitsos, [Convergence rate of McCormick relaxations](http://dx.doi.org/10.1007/s10898-011-9685-2), _Journal of Global Optimization_ **52**(1), 1-28, 2012
|
|
48
|
+
* Bompadre, A., A. Mitsos, B. Chachuat, [Convergence analysis of Taylor models and McCormick-Taylor models](http://dx.doi.org/10.1007/s10898-012-9998-9), _Journal of Global Optimization_, **57**(1), 75-114, 2013
|
|
49
|
+
* Bongartz, D., J. Najman, S. Sass, A. Mitsos, [MAiNGO – McCormick-based Algorithm for mixed-integer Nonlinear Global Optimization](http://permalink.avt.rwth-aachen.de/?id=729717), _Technical Report_, Process Systems Engineering (AVT.SVT), RWTH Aachen University, 2018
|
|
50
|
+
* Chachuat, B, B. Houska, R. Paulen, N. Peric, J. Rajyaguru, M.E. Villanueva, [Set-theoretic approaches in analysis, estimation and control of nonlinear systems](http://dx.doi.org/10.1016/j.ifacol.2015.09.097), _IFAC-PapersOnLine_, **48**(8), 981-995, 2015
|
|
51
|
+
* Karia, T., C.S. Adjiman, B. Chachuat, [Assessment of a two-step approach for global optimization of mixed-integer polynomial programs using quadratic reformulation](https://doi.org/10.1016/j.compchemeng.2022.107909), _Computers & Chemical Engineering_, **165**, 107909, 2022
|
|
52
|
+
* Mitsos, A., B. Chachuat, P.I. Barton, [McCormick-based relaxations of algorithms](http://dx.doi.org/10.1137/080717341), _SIAM Journal on Optimization_, **20**(2):573-601, 2009
|
|
53
|
+
* Rajyaguru, J., Villanueva M.E., Houska B., Chachuat B., [Chebyshev model arithmetic for factorable functions](http://dx.doi.org/10.1007/s10898-016-0474-9), _Journal of Global Optimization_, *68*, 413-438, 2017
|
|
54
|
+
* Tsoukalas, A., A. Mitsos, [Multi-variate McCormick relaxations](https://doi.org/10.1007/s10898-014-0176-0), _Journal of Global Optimization_, **59**(2), 633-662, 2014
|
|
55
|
+
* Villanueva, M.E., [Set-Theoretic Methods for Analysis, Estimation and Control of Nonlinear Systems](https://doi.org/10.25560/32528), PhD Thesis, Department of Chemical Engineering, Imperial College London, 2016
|
|
56
|
+
* Villanueva, M.E., J. Rajyaguru, B. Houska, B. Chachuat, [Ellipsoidal arithmetic for multivariate systems](https://doi.org/10.1016/B978-0-444-63578-5.50123-7), _Computer Aided Chemical Engineering_, **37**, 767-772, 2015
|
|
57
|
+
* Wechsung, A., P.I. Barton, [Global optimization of bounded factorable functions with discontinuities](http://dx.doi.org/10.1007/s10898-013-0060-3), _Journal of Global Optimization_, **58**(1), 1-30, 2014
|
|
58
|
+
* Y Zha, Y., M.E. Villanueva, B. Houska, B. Chachuat [Relaxation via Separable Estimators: Arithmetic and Implementation](https://arxiv.org/abs/2605.10854), arXiv preprint arXiv:2605.10854, 2026
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
pymcpp.cp310-win_amd64.pyd,sha256=jJEYUYwbMMoxGA6jFkBfEuttzTXP_Pkp21KeGnOSWqg,15643136
|
|
2
|
+
pymcpp.pyi,sha256=X1uBHw0nJgy8-DQliW-UDN6U5LP8tEbxG9gXOvwI0NU,376325
|
|
3
|
+
pymcpp-5.0.1.data/platlib/libopenblas-c63be9f939bfce8a1ebc04eac0fa1f13.dll,sha256=xjvp-Tm_zooevATqwPofE7o5_fuYOM4IbD0U6SonqcY,50987903
|
|
4
|
+
pymcpp-5.0.1.data/platlib/msvcp140-a4c2229bdc2a2a630acdc095b4d86008.dll,sha256=pMIim9wqKmMKzcCVtNhgCOXD47x3cxdDVPPaT1vrnN4,575056
|
|
5
|
+
pymcpp-5.0.1.data/platlib/msvcp140_1-226498d4bfcb4f07974757b596ebec45.dll,sha256=V3LU12E4f47V0ox0JghHGdM8D7Igg8383zseb2IYJsE,15360
|
|
6
|
+
pymcpp-5.0.1.dist-info/DELVEWHEEL,sha256=4uSlno0QIpeg4qncjRzGAaYmxEt-N1ExkoicNBhwzfQ,432
|
|
7
|
+
pymcpp-5.0.1.dist-info/METADATA,sha256=4HqBoofwkvUe6TRWCiPduCcwKozyURnoRoMs-Y0T-Mg,4924
|
|
8
|
+
pymcpp-5.0.1.dist-info/RECORD,,
|
|
9
|
+
pymcpp-5.0.1.dist-info/WHEEL,sha256=dLsqnLqoa03X-KKRvIZetJerE-pAfZT9U_wzO7zFOgQ,105
|
|
10
|
+
pymcpp-5.0.1.dist-info/licenses/LICENSE,sha256=0Wvt2w1JUcP4iZ1-eNf4Ee89DO2C9cF6rhyXWA4gspw,109
|
|
11
|
+
pymcpp-5.0.1.dist-info/licenses/THIRD_PARTY_NOTICES.txt,sha256=dxZKv815hKpGSLL_EZ4C3tOiUdy7r1_yvzCZxgrz-Lg,114757
|