-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added also other orders and namings of "redundant" unsat-core regress…
…ion tests
- Loading branch information
Showing
84 changed files
with
587 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
test/regression/unsatcores/generic/redundant-even-named-mix.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
(set-option :produce-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert b1) | ||
(assert (! b2 :named a2)) | ||
(assert (and b1 b2)) | ||
(assert (! (or b1 b2) :named x2)) | ||
(assert (not b1)) | ||
(assert (! (xor b1 b2) :named x3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
3 changes: 3 additions & 0 deletions
3
test/regression/unsatcores/generic/redundant-even-named-mix.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
unsat | ||
( | ||
) |
17 changes: 17 additions & 0 deletions
17
test/regression/unsatcores/generic/redundant-even-named-mix_min.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
(set-option :produce-unsat-cores true) | ||
(set-option :minimal-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert b1) | ||
(assert (! b2 :named a2)) | ||
(assert (and b1 b2)) | ||
(assert (! (or b1 b2) :named x2)) | ||
(assert (not b1)) | ||
(assert (! (xor b1 b2) :named x3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
3 changes: 3 additions & 0 deletions
3
test/regression/unsatcores/generic/redundant-even-named-mix_min.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
unsat | ||
( | ||
) |
16 changes: 16 additions & 0 deletions
16
test/regression/unsatcores/generic/redundant-even-named-swap.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
(set-option :produce-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert (and b1 b2)) | ||
(assert (! (or b1 b2) :named x2)) | ||
(assert (xor b1 b2)) | ||
(assert (! b1 :named a1)) | ||
(assert b2) | ||
(assert (! (not b1) :named a3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
3 changes: 3 additions & 0 deletions
3
test/regression/unsatcores/generic/redundant-even-named-swap.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
unsat | ||
( | ||
) |
17 changes: 17 additions & 0 deletions
17
test/regression/unsatcores/generic/redundant-even-named-swap_full.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
(set-option :produce-unsat-cores true) | ||
(set-option :print-cores-full true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert (and b1 b2)) | ||
(assert (! (or b1 b2) :named x2)) | ||
(assert (xor b1 b2)) | ||
(assert (! b1 :named a1)) | ||
(assert b2) | ||
(assert (! (not b1) :named a3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
5 changes: 5 additions & 0 deletions
5
test/regression/unsatcores/generic/redundant-even-named-swap_full.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
unsat | ||
( | ||
(and b1 b2) | ||
(xor b1 b2) | ||
) |
17 changes: 17 additions & 0 deletions
17
test/regression/unsatcores/generic/redundant-even-named-swap_min.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
(set-option :produce-unsat-cores true) | ||
(set-option :minimal-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert (and b1 b2)) | ||
(assert (! (or b1 b2) :named x2)) | ||
(assert (xor b1 b2)) | ||
(assert (! b1 :named a1)) | ||
(assert b2) | ||
(assert (! (not b1) :named a3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
3 changes: 3 additions & 0 deletions
3
test/regression/unsatcores/generic/redundant-even-named-swap_min.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
unsat | ||
( | ||
) |
18 changes: 18 additions & 0 deletions
18
test/regression/unsatcores/generic/redundant-even-named-swap_min_full.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
(set-option :produce-unsat-cores true) | ||
(set-option :minimal-unsat-cores true) | ||
(set-option :print-cores-full true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert (and b1 b2)) | ||
(assert (! (or b1 b2) :named x2)) | ||
(assert (xor b1 b2)) | ||
(assert (! b1 :named a1)) | ||
(assert b2) | ||
(assert (! (not b1) :named a3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
5 changes: 5 additions & 0 deletions
5
test/regression/unsatcores/generic/redundant-even-named-swap_min_full.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
unsat | ||
( | ||
(and b1 b2) | ||
(xor b1 b2) | ||
) |
16 changes: 16 additions & 0 deletions
16
test/regression/unsatcores/generic/redundant-even-named.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
(set-option :produce-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert b1) | ||
(assert (! b2 :named a2)) | ||
(assert (not b1)) | ||
(assert (! (and b1 b2) :named x1)) | ||
(assert (or b1 b2)) | ||
(assert (! (xor b1 b2) :named x3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
3 changes: 3 additions & 0 deletions
3
test/regression/unsatcores/generic/redundant-even-named.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
unsat | ||
( | ||
) |
17 changes: 17 additions & 0 deletions
17
test/regression/unsatcores/generic/redundant-even-named_full.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
(set-option :produce-unsat-cores true) | ||
(set-option :print-cores-full true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert b1) | ||
(assert (! b2 :named a2)) | ||
(assert (not b1)) | ||
(assert (! (and b1 b2) :named x1)) | ||
(assert (or b1 b2)) | ||
(assert (! (xor b1 b2) :named x3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
5 changes: 5 additions & 0 deletions
5
test/regression/unsatcores/generic/redundant-even-named_full.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
unsat | ||
( | ||
b1 | ||
(not b1) | ||
) |
17 changes: 17 additions & 0 deletions
17
test/regression/unsatcores/generic/redundant-even-named_min.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
(set-option :produce-unsat-cores true) | ||
(set-option :minimal-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert b1) | ||
(assert (! b2 :named a2)) | ||
(assert (not b1)) | ||
(assert (! (and b1 b2) :named x1)) | ||
(assert (or b1 b2)) | ||
(assert (! (xor b1 b2) :named x3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
3 changes: 3 additions & 0 deletions
3
test/regression/unsatcores/generic/redundant-even-named_min.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
unsat | ||
( | ||
) |
18 changes: 18 additions & 0 deletions
18
test/regression/unsatcores/generic/redundant-even-named_min_full.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
(set-option :produce-unsat-cores true) | ||
(set-option :minimal-unsat-cores true) | ||
(set-option :print-cores-full true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert b1) | ||
(assert (! b2 :named a2)) | ||
(assert (not b1)) | ||
(assert (! (and b1 b2) :named x1)) | ||
(assert (or b1 b2)) | ||
(assert (! (xor b1 b2) :named x3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
5 changes: 5 additions & 0 deletions
5
test/regression/unsatcores/generic/redundant-even-named_min_full.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
unsat | ||
( | ||
b1 | ||
(not b1) | ||
) |
16 changes: 16 additions & 0 deletions
16
test/regression/unsatcores/generic/redundant-half1-named-mix.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
(set-option :produce-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert (! b1 :named a1)) | ||
(assert (! b2 :named a2)) | ||
(assert (! (and b1 b2) :named x1)) | ||
(assert (or b1 b2)) | ||
(assert (not b1)) | ||
(assert (xor b1 b2)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
4 changes: 4 additions & 0 deletions
4
test/regression/unsatcores/generic/redundant-half1-named-mix.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
unsat | ||
( | ||
a1 | ||
) |
17 changes: 17 additions & 0 deletions
17
test/regression/unsatcores/generic/redundant-half1-named-mix_min.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
(set-option :produce-unsat-cores true) | ||
(set-option :minimal-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert (! b1 :named a1)) | ||
(assert (! b2 :named a2)) | ||
(assert (! (and b1 b2) :named x1)) | ||
(assert (or b1 b2)) | ||
(assert (not b1)) | ||
(assert (xor b1 b2)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
4 changes: 4 additions & 0 deletions
4
test/regression/unsatcores/generic/redundant-half1-named-mix_min.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
unsat | ||
( | ||
a1 | ||
) |
16 changes: 16 additions & 0 deletions
16
test/regression/unsatcores/generic/redundant-half2-named-mix.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
(set-option :produce-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert b1) | ||
(assert b2) | ||
(assert (and b1 b2)) | ||
(assert (! (or b1 b2) :named x2)) | ||
(assert (! (not b1) :named a3)) | ||
(assert (! (xor b1 b2) :named x3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
4 changes: 4 additions & 0 deletions
4
test/regression/unsatcores/generic/redundant-half2-named-mix.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
unsat | ||
( | ||
a3 | ||
) |
17 changes: 17 additions & 0 deletions
17
test/regression/unsatcores/generic/redundant-half2-named-mix_min.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
(set-option :produce-unsat-cores true) | ||
(set-option :minimal-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert b1) | ||
(assert b2) | ||
(assert (and b1 b2)) | ||
(assert (! (or b1 b2) :named x2)) | ||
(assert (! (not b1) :named a3)) | ||
(assert (! (xor b1 b2) :named x3)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
4 changes: 4 additions & 0 deletions
4
test/regression/unsatcores/generic/redundant-half2-named-mix_min.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
unsat | ||
( | ||
a3 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
(set-option :produce-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert b1) | ||
(assert b2) | ||
(assert (not b1)) | ||
(assert (and b1 b2)) | ||
(assert (or b1 b2)) | ||
(assert (xor b1 b2)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
3 changes: 3 additions & 0 deletions
3
test/regression/unsatcores/generic/redundant-mix.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
unsat | ||
( | ||
) |
17 changes: 17 additions & 0 deletions
17
test/regression/unsatcores/generic/redundant-mix_full.smt2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
(set-option :produce-unsat-cores true) | ||
(set-option :print-cores-full true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert b1) | ||
(assert b2) | ||
(assert (not b1)) | ||
(assert (and b1 b2)) | ||
(assert (or b1 b2)) | ||
(assert (xor b1 b2)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
5 changes: 5 additions & 0 deletions
5
test/regression/unsatcores/generic/redundant-mix_full.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
unsat | ||
( | ||
b1 | ||
(not b1) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
(set-option :produce-unsat-cores true) | ||
(set-option :minimal-unsat-cores true) | ||
|
||
(set-logic QF_UF) | ||
|
||
(declare-const b1 Bool) | ||
(declare-const b2 Bool) | ||
|
||
(assert b1) | ||
(assert b2) | ||
(assert (not b1)) | ||
(assert (and b1 b2)) | ||
(assert (or b1 b2)) | ||
(assert (xor b1 b2)) | ||
|
||
(check-sat) | ||
(get-unsat-core) |
Empty file.
3 changes: 3 additions & 0 deletions
3
test/regression/unsatcores/generic/redundant-mix_min.smt2.expected.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
unsat | ||
( | ||
) |
Oops, something went wrong.