alonso 0.0.2__tar.gz → 0.0.3__tar.gz
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-0.0.2 → alonso-0.0.3}/PKG-INFO +1 -1
- alonso-0.0.3/alonso/__init__.py +4 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso/app.py +1 -1
- {alonso-0.0.2 → alonso-0.0.3}/alonso/batch.py +1 -1
- {alonso-0.0.2 → alonso-0.0.3}/alonso/test.py +1 -1
- {alonso-0.0.2 → alonso-0.0.3}/alonso.egg-info/PKG-INFO +1 -1
- {alonso-0.0.2 → alonso-0.0.3}/setup.py +1 -1
- alonso-0.0.2/alonso/__init__.py +0 -4
- {alonso-0.0.2 → alonso-0.0.3}/LICENSE +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/README.md +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso/algorithm.py +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso/applogger.py +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso/merge.py +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso/parser.py +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso/partition.py +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso/stable.py +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso/utils.py +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso.egg-info/SOURCES.txt +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso.egg-info/dependency_links.txt +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso.egg-info/entry_points.txt +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso.egg-info/requires.txt +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/alonso.egg-info/top_level.txt +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/pyproject.toml +0 -0
- {alonso-0.0.2 → alonso-0.0.3}/setup.cfg +0 -0
@@ -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.0.3')
|
86
86
|
|
87
87
|
# Initialize the parameters
|
88
88
|
args = helper.parse_args()
|
@@ -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.0.3')
|
40
40
|
|
41
41
|
|
42
42
|
# Initialize the parameters
|
@@ -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.0.3')
|
38
38
|
|
39
39
|
# Initialize the parameters
|
40
40
|
args = helper.parse_args()
|
alonso-0.0.2/alonso/__init__.py
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|