Skip to content

Commit

Permalink
Update help text.
Browse files Browse the repository at this point in the history
  • Loading branch information
liffiton committed Jul 8, 2013
1 parent 8c33edb commit 200d407
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions marco.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def parse_args():
parser.add_argument('-s', '--stats', action='store_true',
help="print timing statistics to stderr")
parser.add_argument('-T', '--timeout', type=int, default=None,
help="limit the runtime to N seconds")
help="limit the runtime to TIMEOUT seconds")
parser.add_argument('-l', '--limit', type=int, default=None,
help="limit number of subsets output (counting both MCSes and MUSes)")
parser.add_argument('-b', '--bias', type=str, choices=['high','low'], default='high',
Expand All @@ -36,9 +36,9 @@ def parse_args():
help="only compute a maximal model if the initial seed is SAT / bias is high or seed is UNSAT /bias is low")
type_group = parser.add_mutually_exclusive_group()
type_group.add_argument('--cnf', action='store_true',
help="Treat input as DIMACS CNF format.")
help="assume input is in DIMACS CNF format (autodetected if filename is *.cnf or *.cnf.gz).")
type_group.add_argument('--smt', action='store_true',
help="Treat input as SMT2 format.")
help="assume input is in SMT2 format (autodetected if filename is *.smt2 or *.smt2.gz).")
parser.add_argument('--force-minisat', action='store_true',
help="use Minisat in place of MUSer2 for CNF (NOTE: much slower and usually not worth doing!)")
parser.add_argument('infile', nargs='?', type=argparse.FileType('rb'),
Expand Down

0 comments on commit 200d407

Please sign in to comment.