summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2018-03-21 15:48:57 -0700
committerGitHub <noreply@github.com>2018-03-21 15:48:57 -0700
commitbdba2bf65eb2f68daa1a5e488c4e50f5dac1b312 (patch)
tree3f97efe21f089d3abb5d9a2b53c0c7ee63ba06bb /test/regress/regress0/arith
parent966960b424aa5901a03abbfaa1bcdac6e3ed90dc (diff)
Refactor mkoptions (#1631)
This commit refactors code generation for options. It uses a new configuration format for defining options (*.toml) and a new Python script mkoptions.py to generate the source code and option documentation. The option behavior did not change for most of the options, except that for bool --enable-/--disable- long options enable/disable was removed. E.g. --enable-miplib-trick and --disable-miplib-trick got changed to --miplib-trick and --no-miplib-trick. This commit fixes also an issues with set-option/get-option via the SMT2 interface. Before long options were only accessible if the name included the =ARG part.
Diffstat (limited to 'test/regress/regress0/arith')
-rw-r--r--test/regress/regress0/arith/miplib-opt1217--27.smt.expect2
-rw-r--r--test/regress/regress0/arith/miplib-pp08a-3000.smt.expect2
-rw-r--r--test/regress/regress0/arith/miplib.cvc2
-rw-r--r--test/regress/regress0/arith/miplib2.cvc2
-rw-r--r--test/regress/regress0/arith/miplib4.cvc2
5 files changed, 5 insertions, 5 deletions
diff --git a/test/regress/regress0/arith/miplib-opt1217--27.smt.expect b/test/regress/regress0/arith/miplib-opt1217--27.smt.expect
index f0bc97ee5..24c63a495 100644
--- a/test/regress/regress0/arith/miplib-opt1217--27.smt.expect
+++ b/test/regress/regress0/arith/miplib-opt1217--27.smt.expect
@@ -1,2 +1,2 @@
-% COMMAND-LINE: --enable-miplib-trick
+% COMMAND-LINE: --miplib-trick
% EXPECT: unsat
diff --git a/test/regress/regress0/arith/miplib-pp08a-3000.smt.expect b/test/regress/regress0/arith/miplib-pp08a-3000.smt.expect
index f0bc97ee5..24c63a495 100644
--- a/test/regress/regress0/arith/miplib-pp08a-3000.smt.expect
+++ b/test/regress/regress0/arith/miplib-pp08a-3000.smt.expect
@@ -1,2 +1,2 @@
-% COMMAND-LINE: --enable-miplib-trick
+% COMMAND-LINE: --miplib-trick
% EXPECT: unsat
diff --git a/test/regress/regress0/arith/miplib.cvc b/test/regress/regress0/arith/miplib.cvc
index 49c0b61cb..a7ae19b0a 100644
--- a/test/regress/regress0/arith/miplib.cvc
+++ b/test/regress/regress0/arith/miplib.cvc
@@ -1,4 +1,4 @@
-% COMMAND-LINE: --enable-miplib-trick
+% COMMAND-LINE: --miplib-trick
% EXPECT: sat
tmp1, tmp2, tmp3 : INT;
diff --git a/test/regress/regress0/arith/miplib2.cvc b/test/regress/regress0/arith/miplib2.cvc
index 5cd2f545c..ce2e9712e 100644
--- a/test/regress/regress0/arith/miplib2.cvc
+++ b/test/regress/regress0/arith/miplib2.cvc
@@ -1,4 +1,4 @@
-% COMMAND-LINE: --enable-miplib-trick
+% COMMAND-LINE: --miplib-trick
% EXPECT: sat
tmp1, tmp2, tmp3 : INT;
diff --git a/test/regress/regress0/arith/miplib4.cvc b/test/regress/regress0/arith/miplib4.cvc
index 9d7c4592e..722122b38 100644
--- a/test/regress/regress0/arith/miplib4.cvc
+++ b/test/regress/regress0/arith/miplib4.cvc
@@ -1,4 +1,4 @@
-% COMMAND-LINE: --enable-miplib-trick
+% COMMAND-LINE: --miplib-trick
% EXPECT: sat
tmp1 : INT;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback