flowty 2.0a0__py310-none-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.
flowty/__init__.py ADDED
@@ -0,0 +1 @@
1
+ from .flowty import *
flowty/flowty.pyd ADDED
Binary file
@@ -0,0 +1,50 @@
1
+ Community License
2
+
3
+ Copyright 2024 Flowty ApS
4
+ All rights reserved.
5
+
6
+ The community license described in these terms is a license to the general
7
+ community which may have limited features and additional restrictions. For an
8
+ unlimited commercial, academic or trial license contact Flowty at
9
+ <info@flowty.ai>.
10
+
11
+ TERMS AND CONDITIONS
12
+
13
+ 1. The "Program" means the modules of the Flowty network optimization
14
+ optimization software.
15
+ 2. The license is a nonexclusive software end user license, according to which
16
+ the licensee is entitled to use an object code copy of the licensed software
17
+ for commercial as well as non-commercial purposes.
18
+ 3. The licensee acquires the right to use the delivered (downloaded) object
19
+ code copy of the Program only and does not acquire any rights of ownership.
20
+ 4. The licensee shall be prohibited from sublicensing and otherwise letting
21
+ third parties use the Program without prior written consent from the
22
+ licensor.
23
+ 5. The licensee shall not be entitled to modify, reverse engineer, disassemble
24
+ or decompile the Program. The licensee shall only be entitled to make copies
25
+ of the Program for backup purposes.
26
+ 6. The licensee is not required to accept this license, since the licensee has
27
+ not signed it. However, nothing else grants the licensee permission to use
28
+ the Program. These actions are prohibited by law if you do not accept this
29
+ license. Therefore, by using the Program (or any work based on the Program),
30
+ you indicate your acceptance of this license to do so and all its
31
+ terms and conditions for the Program or works based on it.
32
+
33
+ NO WARRANTY
34
+
35
+ 7. Because the program is licensed free of charge, there is no warranty for
36
+ the program to the extent permitted by applicable law. The
37
+ copyright holders provide the program "as is" without warranty of any
38
+ kind, either expressed or implied, including, but not limited to, the
39
+ implied warranties of merchantability and fitness for a particular purpose.
40
+ The entire risk as to the quality and performance of the program is
41
+ with you. Should the program prove defective, you assume the cost of all
42
+ necessary servicing, repair, or correction.
43
+ 8. In no event will any copyright holder, or any other party who may modify
44
+ and/or redistribute the program as permitted above, be liable to
45
+ you for damages, including any general, special, incidental or
46
+ consequential damages arising out of the use or inability to use the
47
+ program (including but not limited to loss of data or data being rendered
48
+ inaccurate or losses sustained by you or third parties or a failure of the
49
+ program to operate with any other programs), even if such holder or other
50
+ party has been advised of the possibility of such damages.
@@ -0,0 +1,83 @@
1
+ Metadata-Version: 2.1
2
+ Name: flowty
3
+ Version: 2.0a0
4
+ Summary: Flowty Network Optimization Solver
5
+ Author-email: Flowty <info@flowty.ai>
6
+ License: Community License
7
+
8
+ Copyright 2024 Flowty ApS
9
+ All rights reserved.
10
+
11
+ The community license described in these terms is a license to the general
12
+ community which may have limited features and additional restrictions. For an
13
+ unlimited commercial, academic or trial license contact Flowty at
14
+ <info@flowty.ai>.
15
+
16
+ TERMS AND CONDITIONS
17
+
18
+ 1. The "Program" means the modules of the Flowty network optimization
19
+ optimization software.
20
+ 2. The license is a nonexclusive software end user license, according to which
21
+ the licensee is entitled to use an object code copy of the licensed software
22
+ for commercial as well as non-commercial purposes.
23
+ 3. The licensee acquires the right to use the delivered (downloaded) object
24
+ code copy of the Program only and does not acquire any rights of ownership.
25
+ 4. The licensee shall be prohibited from sublicensing and otherwise letting
26
+ third parties use the Program without prior written consent from the
27
+ licensor.
28
+ 5. The licensee shall not be entitled to modify, reverse engineer, disassemble
29
+ or decompile the Program. The licensee shall only be entitled to make copies
30
+ of the Program for backup purposes.
31
+ 6. The licensee is not required to accept this license, since the licensee has
32
+ not signed it. However, nothing else grants the licensee permission to use
33
+ the Program. These actions are prohibited by law if you do not accept this
34
+ license. Therefore, by using the Program (or any work based on the Program),
35
+ you indicate your acceptance of this license to do so and all its
36
+ terms and conditions for the Program or works based on it.
37
+
38
+ NO WARRANTY
39
+
40
+ 7. Because the program is licensed free of charge, there is no warranty for
41
+ the program to the extent permitted by applicable law. The
42
+ copyright holders provide the program "as is" without warranty of any
43
+ kind, either expressed or implied, including, but not limited to, the
44
+ implied warranties of merchantability and fitness for a particular purpose.
45
+ The entire risk as to the quality and performance of the program is
46
+ with you. Should the program prove defective, you assume the cost of all
47
+ necessary servicing, repair, or correction.
48
+ 8. In no event will any copyright holder, or any other party who may modify
49
+ and/or redistribute the program as permitted above, be liable to
50
+ you for damages, including any general, special, incidental or
51
+ consequential damages arising out of the use or inability to use the
52
+ program (including but not limited to loss of data or data being rendered
53
+ inaccurate or losses sustained by you or third parties or a failure of the
54
+ program to operate with any other programs), even if such holder or other
55
+ party has been advised of the possibility of such damages.
56
+
57
+ Project-URL: Homepage, https://flowty.ai
58
+ Project-URL: Documentation, https://docs.flowty.ai
59
+ Project-URL: Bug Tracker, https://github.com/flowty/flowty/issues
60
+ Keywords: Optimization,Nework Optimization,Combinatorial Optimization,Linear Programming,Integer Programming,Operations Research,Mathematical Programming
61
+ Classifier: License :: Other/Proprietary License
62
+ Classifier: Programming Language :: Python :: 3.10
63
+ Classifier: Programming Language :: Python :: 3.11
64
+ Classifier: Programming Language :: Python :: 3.12
65
+ Requires-Python: >=3.10
66
+ Description-Content-Type: text/markdown
67
+ License-File: LICENSE
68
+
69
+ # Flowty
70
+
71
+ The Flowty Optimisation Solver is a column generation based solver. It is used to solve mixed integer linear programming models formulated with (resource constrained) paths in specified graphs. The solver is well suited for solving planning & scheduling, routing and multi-commodity flow problems. The solver is written in C++ with a Python interface.
72
+
73
+ ## Installation
74
+
75
+ Install with
76
+
77
+ ```sh
78
+ pip install flowty --pre
79
+ ```
80
+
81
+ ## Contact
82
+
83
+ For license options contact Flowty at [info@flowty.ai](mailto:info@flowty.ai) or visit [flowty.ai](https://flowty.ai) for more information.
@@ -0,0 +1,7 @@
1
+ flowty/__init__.py,sha256=3RmouaGEoeZQfm8NSP4-DbS8DiEwFDuGo6erJgd05eQ,22
2
+ flowty/flowty.pyd,sha256=TsLaqSPv0UA57eSrkHq6-pg724rBDgHJ8g9fStBk4hs,4332032
3
+ flowty-2.0a0.dist-info/LICENSE,sha256=q81CkJoEQuvzIHzM_A-Wpwo4zmXpGVbJVo5kYRwZJiw,2804
4
+ flowty-2.0a0.dist-info/METADATA,sha256=eqKKolPRn258AZmlwd_Ir2-kvVO_8KWKgaWeFDF0SPQ,4563
5
+ flowty-2.0a0.dist-info/WHEEL,sha256=GhivDp0zCu2C-ZzbvB4pEaAGiRFHKt0UHULTeaVHp_k,100
6
+ flowty-2.0a0.dist-info/top_level.txt,sha256=GwgS4NrMQ2SLToW1cmbW-E40jK60tAOMNFTWc7SvxRo,7
7
+ flowty-2.0a0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.42.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py310-none-win_amd64
5
+
@@ -0,0 +1 @@
1
+ flowty