mirror of
https://github.com/Z3Prover/z3
synced 2025-06-21 05:13:39 +00:00
Added missing input format option "-dl"
Signed-off-by: Matthias Schlaipfer <t-matsch@microsoft.com>
This commit is contained in:
parent
d4dd608bad
commit
aee1813056
1 changed files with 3 additions and 0 deletions
|
@ -163,6 +163,9 @@ void parse_cmd_line_args(int argc, char ** argv) {
|
||||||
else if (strcmp(opt_name, "smt2") == 0) {
|
else if (strcmp(opt_name, "smt2") == 0) {
|
||||||
g_input_kind = IN_SMTLIB_2;
|
g_input_kind = IN_SMTLIB_2;
|
||||||
}
|
}
|
||||||
|
else if (strcmp(opt_name, "dl") == 0) {
|
||||||
|
g_input_kind = IN_DATALOG;
|
||||||
|
}
|
||||||
else if (strcmp(opt_name, "in") == 0) {
|
else if (strcmp(opt_name, "in") == 0) {
|
||||||
g_standard_input = true;
|
g_standard_input = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue