Add --no-verbose option
The action for "--verbose" has been changed to BooleanOptionalAction, which adds a negative version that may be useful for overriding configuration files.
This commit is contained in:
parent
cae8ac5055
commit
4cf9e4f008
|
@ -105,7 +105,7 @@ solver_options = parser.add_argument_group(
|
||||||
|
|
||||||
solver_options.add_argument(
|
solver_options.add_argument(
|
||||||
"-v", "--verbose",
|
"-v", "--verbose",
|
||||||
action='store_true',
|
action=argparse.BooleanOptionalAction,
|
||||||
default=False,
|
default=False,
|
||||||
help="whether the solver should output search progress rather than showing intermediate solutions",
|
help="whether the solver should output search progress rather than showing intermediate solutions",
|
||||||
dest='verbose'
|
dest='verbose'
|
||||||
|
|
Loading…
Reference in New Issue