Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 1d65462a authored by VIGNET Pierre's avatar VIGNET Pierre
Browse files

[cmd] Deactivate all_macs option temporary; It is always activated in the new API

parent 31baa732
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,8 @@ def solutions_search(args):
# Module import
import solution_search
# Temporary fix: all_macs is always activated in the new API
args["all_macs"] = True
solution_search.solutions_search(args) # !
......@@ -308,9 +310,9 @@ def main():
help="Limit the number of solutions.")
# https://docs.python.org/dev/library/argparse.html#action
# all_macs to False by default
parser_input_file.add_argument('--all_macs', action='store_true',
help="Solver will try to search all macs from 0 to the maximum of "
"allowed steps.")
#parser_input_file.add_argument('--all_macs', action='store_true',
# help="Solver will try to search all macs from 0 to the maximum of "
# "allowed steps.")
# continue to False by default
parser_input_file.add_argument('--continue', action='store_true',
help="Resume previous computations; if there is a mac file from a "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment