alonso 0.0.9__py3-none-any.whl → 0.1.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.
- alonso/app.py +1 -1
- alonso/batch.py +1 -1
- alonso/test.py +1 -1
- {alonso-0.0.9.dist-info → alonso-0.1.0.dist-info}/METADATA +5 -5
- {alonso-0.0.9.dist-info → alonso-0.1.0.dist-info}/RECORD +9 -9
- {alonso-0.0.9.dist-info → alonso-0.1.0.dist-info}/WHEEL +0 -0
- {alonso-0.0.9.dist-info → alonso-0.1.0.dist-info}/entry_points.txt +0 -0
- {alonso-0.0.9.dist-info → alonso-0.1.0.dist-info}/licenses/LICENSE +0 -0
- {alonso-0.0.9.dist-info → alonso-0.1.0.dist-info}/top_level.txt +0 -0
alonso/app.py
CHANGED
@@ -82,7 +82,7 @@ def main():
|
|
82
82
|
helper.add_argument('-c', '--count', action='store_true', help='calculate the size of the vertex cover')
|
83
83
|
helper.add_argument('-v', '--verbose', action='store_true', help='anable verbose output')
|
84
84
|
helper.add_argument('-l', '--log', action='store_true', help='enable file logging')
|
85
|
-
helper.add_argument('--version', action='version', version='%(prog)s 0.0
|
85
|
+
helper.add_argument('--version', action='version', version='%(prog)s 0.1.0')
|
86
86
|
|
87
87
|
# Initialize the parameters
|
88
88
|
args = helper.parse_args()
|
alonso/batch.py
CHANGED
@@ -36,7 +36,7 @@ def main():
|
|
36
36
|
helper.add_argument('-c', '--count', action='store_true', help='calculate the size of the vertex cover')
|
37
37
|
helper.add_argument('-v', '--verbose', action='store_true', help='anable verbose output')
|
38
38
|
helper.add_argument('-l', '--log', action='store_true', help='enable file logging')
|
39
|
-
helper.add_argument('--version', action='version', version='%(prog)s 0.0
|
39
|
+
helper.add_argument('--version', action='version', version='%(prog)s 0.1.0')
|
40
40
|
|
41
41
|
|
42
42
|
# Initialize the parameters
|
alonso/test.py
CHANGED
@@ -34,7 +34,7 @@ def main():
|
|
34
34
|
helper.add_argument('-w', '--write', action='store_true', help='write the generated random matrix to a file in the current directory')
|
35
35
|
helper.add_argument('-v', '--verbose', action='store_true', help='anable verbose output')
|
36
36
|
helper.add_argument('-l', '--log', action='store_true', help='enable file logging')
|
37
|
-
helper.add_argument('--version', action='version', version='%(prog)s 0.0
|
37
|
+
helper.add_argument('--version', action='version', version='%(prog)s 0.1.0')
|
38
38
|
|
39
39
|
# Initialize the parameters
|
40
40
|
args = helper.parse_args()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: alonso
|
3
|
-
Version: 0.0
|
3
|
+
Version: 0.1.0
|
4
4
|
Summary: Compute an Approximate Vertex Cover for undirected graph encoded in DIMACS format.
|
5
5
|
Home-page: https://github.com/frankvegadelgado/alonso
|
6
6
|
Author: Frank Vega
|
@@ -12,17 +12,17 @@ Classifier: Topic :: Scientific/Engineering
|
|
12
12
|
Classifier: Topic :: Software Development
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
14
14
|
Classifier: License :: OSI Approved :: MIT License
|
15
|
-
Classifier: Programming Language :: Python :: 3.
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
16
16
|
Classifier: Environment :: Console
|
17
17
|
Classifier: Intended Audience :: Developers
|
18
18
|
Classifier: Intended Audience :: Education
|
19
19
|
Classifier: Intended Audience :: Information Technology
|
20
20
|
Classifier: Intended Audience :: Science/Research
|
21
21
|
Classifier: Natural Language :: English
|
22
|
-
Requires-Python: >=3.
|
22
|
+
Requires-Python: >=3.12
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
License-File: LICENSE
|
25
|
-
Requires-Dist: mendive>=0.0.
|
25
|
+
Requires-Dist: mendive>=0.0.7
|
26
26
|
Dynamic: author
|
27
27
|
Dynamic: author-email
|
28
28
|
Dynamic: classifier
|
@@ -117,7 +117,7 @@ Vertex Cover Found `3, 4, 5`: Nodes `3`, `4`, and `5` constitute an optimal solu
|
|
117
117
|
|
118
118
|
## Prerequisites
|
119
119
|
|
120
|
-
- Python ≥ 3.
|
120
|
+
- Python ≥ 3.12
|
121
121
|
|
122
122
|
## Installation
|
123
123
|
|
@@ -1,17 +1,17 @@
|
|
1
1
|
alonso/__init__.py,sha256=xFbWJ7kskxYZCWD3QWtJ6d9uGnDlqhJyFJDCVuqG7hE,207
|
2
2
|
alonso/algorithm.py,sha256=QqSdBTIPtLxAVoCtCmlTTlflJafjsbA00AKMRehKoOE,5241
|
3
|
-
alonso/app.py,sha256=
|
3
|
+
alonso/app.py,sha256=pJvRZcUM_OlJvTFK1Roa7ZHoYRgTeWPK5rrynPv8itU,4320
|
4
4
|
alonso/applogger.py,sha256=fQBo51-TboX1DBqfSxX2P2eKJ5CcyiCq_IVlJTHjxAE,2624
|
5
|
-
alonso/batch.py,sha256=
|
5
|
+
alonso/batch.py,sha256=WCGb0GjW0G8b_gRjTZYFl4oWDD6Jd-4CIN3O2AcFnHs,2305
|
6
6
|
alonso/merge.py,sha256=dWhF9t_2bFp4HT1NCzjhrSlhm8CkJQ4pwBHOhHSkezQ,4257
|
7
7
|
alonso/parser.py,sha256=Ib4TnWdkQb6A6FA3HHEjZDBb7uD0v9Gabwewqfu4XpQ,2549
|
8
8
|
alonso/partition.py,sha256=i6Q4rKN6ftETncaEyUVXJCIdRaNpGacrDmdd8iQETO4,7643
|
9
9
|
alonso/stable.py,sha256=IwINwjd3F7dfoISXlWsNWRkVJzItEojgMyNwzMM7nYc,6577
|
10
|
-
alonso/test.py,sha256=
|
10
|
+
alonso/test.py,sha256=nAbAqooCQUJDt6S5J1yV-PZDMoMosOqkgQEyqR37nOw,5472
|
11
11
|
alonso/utils.py,sha256=RmctLB8oDtjf0wKcKFaRvXiRgmtegqfbB1HFFzlpsvE,7674
|
12
|
-
alonso-0.0.
|
13
|
-
alonso-0.0.
|
14
|
-
alonso-0.0.
|
15
|
-
alonso-0.0.
|
16
|
-
alonso-0.0.
|
17
|
-
alonso-0.0.
|
12
|
+
alonso-0.1.0.dist-info/licenses/LICENSE,sha256=nUDh1nfa7rfEv1HocpoqPu0JaFnZKpIVh9eM0MgozpM,1067
|
13
|
+
alonso-0.1.0.dist-info/METADATA,sha256=y3BB3PH9WZ8K0v9knuby2qhePsKhfmqdaDZPDSO7ZRw,9293
|
14
|
+
alonso-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
15
|
+
alonso-0.1.0.dist-info/entry_points.txt,sha256=JSod2CWtklhiaOFW3masqrgqhXIpVRsbIiprSmS1P7g,98
|
16
|
+
alonso-0.1.0.dist-info/top_level.txt,sha256=rOo7SlpYGdic6g55rHDus2d5N2t74H9qamX4yi6z5vw,7
|
17
|
+
alonso-0.1.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|