alonso 0.0.5__tar.gz → 0.0.6__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.5 → alonso-0.0.6}/PKG-INFO +1 -1
- {alonso-0.0.5 → alonso-0.0.6}/alonso/algorithm.py +1 -1
- {alonso-0.0.5 → alonso-0.0.6}/alonso/app.py +1 -1
- {alonso-0.0.5 → alonso-0.0.6}/alonso/batch.py +1 -1
- {alonso-0.0.5 → alonso-0.0.6}/alonso/test.py +1 -1
- {alonso-0.0.5 → alonso-0.0.6}/alonso.egg-info/PKG-INFO +1 -1
- {alonso-0.0.5 → alonso-0.0.6}/setup.py +1 -1
- {alonso-0.0.5 → alonso-0.0.6}/LICENSE +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/README.md +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso/__init__.py +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso/applogger.py +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso/merge.py +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso/parser.py +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso/partition.py +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso/stable.py +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso/utils.py +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso.egg-info/SOURCES.txt +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso.egg-info/dependency_links.txt +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso.egg-info/entry_points.txt +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso.egg-info/requires.txt +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/alonso.egg-info/top_level.txt +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/pyproject.toml +0 -0
- {alonso-0.0.5 → alonso-0.0.6}/setup.cfg +0 -0
@@ -12,7 +12,7 @@ from . import merge
|
|
12
12
|
|
13
13
|
def find_vertex_cover(graph):
|
14
14
|
"""
|
15
|
-
Compute an approximate minimum vertex cover set for an undirected graph
|
15
|
+
Compute an approximate minimum vertex cover set for an undirected graph.
|
16
16
|
|
17
17
|
Args:
|
18
18
|
graph (nx.Graph): A NetworkX Graph object representing the input graph.
|
@@ -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.6')
|
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.6')
|
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.6')
|
38
38
|
|
39
39
|
# Initialize the parameters
|
40
40
|
args = helper.parse_args()
|
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
|