Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
general
albi
Bachelor Mario Surlemont
Commits
64d81ae0
Commit
64d81ae0
authored
May 27, 2020
by
msurl
Browse files
repaired cli file
parent
02b553cf
Changes
1
Show whitespace changes
Inline
Side-by-side
python/conda package/k_hop_dominating_set_gurobi/k_hop_dominating_set_gurobi/cli.py
View file @
64d81ae0
...
...
@@ -19,12 +19,12 @@ def cli(args=None):
help
=
'parameter k of the k hop dominating set'
,
type
=
int
)
p
.
add_argument
(
'-i'
,
'--iterations'
,
help
=
'maximum number of iterations'
,
const
=
float
(
"inf"
),
type
=
float
)
#
p.add_argument(
#
'-i', '--iterations',
#
help='maximum number of iterations',
#
const = float("inf"),
#
type = float
#
)
p
.
add_argument
(
'-g'
,
'--graph'
,
help
=
"input graph as .lp file"
)
...
...
@@ -36,8 +36,8 @@ def cli(args=None):
G
=
lp_to_nx_graph
.
read
(
args
.
graph
)
ds
=
k_hop_dom_set
.
RootedConnectecKHopDominatingSet
(
G
,
args
.
k
)
ds
.
solve_and_draw
(
iterations
=
args
.
iterations
)
#
ds.solve_and_draw(iterations = args.iterations)
ds
.
solve_and_draw
()
# No return value means no error.
# Return a value of 1 or higher to signify an error.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment