Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msakai/tppmark2020
My attempt to solve TPPmark problem of the 16th Theorem Proving and Provers meeting (TPP 2020).
https://github.com/msakai/tppmark2020
qbf sat
Last synced: about 1 month ago
JSON representation
My attempt to solve TPPmark problem of the 16th Theorem Proving and Provers meeting (TPP 2020).
- Host: GitHub
- URL: https://github.com/msakai/tppmark2020
- Owner: msakai
- License: bsd-3-clause
- Created: 2020-11-15T15:09:14.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-20T03:01:14.000Z (about 1 month ago)
- Last Synced: 2024-11-20T04:17:34.251Z (about 1 month ago)
- Topics: qbf, sat
- Language: Haskell
- Homepage:
- Size: 1.08 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TPPmark2020
Attempt for solving TPPmark problem of [the 16th Theorem Proving and Provers meeting (TPP 2020)](https://aabaa.github.io/tpp2020/).
## Explanation
Main program is [TPPmark2020.hs](TPPmark2020.hs).
### 問1.
> 124本のベクトルからなる集合 X = {(x,y,z) | x,y,z ∈ {0,±1,±√2}} \ {(0,0,0)} の各要素を白または黒に塗り分けることを考えます.
> このとき,次の2条件 a), b) を満たすようにベクトルを白または黒に塗り分けることはできないことを証明してください.
> - a) 2つの直交するベクトルのうち,少なくとも1本は黒色である.
> - b) 互いに直交し合う3つのベクトルのうち,少なくとも1本は白色である.
>
> Consider painting each element of the set X = {(x,y,z) | x,y,z ∈ {0,±1,±√2}} \ {(0,0,0)} of 124 vectors white or black.
> Prove that the vectors cannot be painted white or black in such a way that the following two conditions a) and b) are met.
> - a) Whenever two of the vectors are orthogonal, at least one is black.
> - b) Whenever three of the vectors are mutually orthogonal, at least one is white.Xの要素p毎の論理変数 white(p) (真であるときに白、偽であるときに黒であることを表す) と
* ¬white(p1) ∨ ¬white(p2) for p1,p2∈X, p1 and p2 are orthogonal
* white(p1) ∨ white(p2) ∨ white(p3) for p1,p2,p3∈X, p1, p2 and p3 are mutually orthogonalという制約条件からなる命題論理式をSATソルバを用いて解くことで、そのような塗り分けが可能かどうかを判定することができる。
`solveQ1` が論理式を生成してSATソルバで解く関数であり、 [Q1.cnf](Q1.cnf) が得られた論理式である。
SATソルバは一瞬でUNSATという結果を返すため、そのような塗り分けは不可能なことが示せた。### 問2.
> 条件 c) を満たしつつ,条件 a) と b) の少なくとも一方は成り立たないように,ベクトルの集合 X からできるだけ多くの要素を減らしてください. (ヒント: 33本までは減らせることが知られています.)
> - c) 集合内に互いに直交し合う3つのベクトルの集合が少なくとも1つは存在する.
>
> Reduce as many elements as possible from the set of vectors X such that at least one of the conditions a) and b) does not hold while condition c) is satisfied. (Hint: It is known that you can reduce the number to 33.)
> - c) There is at least one set of three mutually orthogonal vectors in the set.#### QBFを用いた解の発見
まず、 X の各要素pが減らした結果の集合 X'⊆X に含まれるか否かを論理変数 X'(p) によって表すこととする。
次に、条件 a), b), c) は以下のような命題論理式で表すことができる。
* a(X', white) := ⋀(p1,p2) ∈ "orthogonal vectors of X" (X'(p1) ∧ X'(p2) → ¬white(p1) ∨ ¬white(p2))
* b(X', white) := ⋀(p1,p2,p3)∈"three mutually orthogonal vectors of X" (X'(p1) ∧ X'(p2) ∧ X'(p3) → white(p1) ∨ white(p2) ∨ white(p3))
* c(X') := ⋁(p1,p2,p3)∈"three mutually orthogonal vectors of X" (X'(p1) ∧ X'(p2) ∧ X'(p3))すると、問題は c(X') ∧ (∀white. ¬a(X', white) ∨ ¬b(X', white)) を満たす X'(p) の割当てのうち、真になっている X'(p) が最小のものを探す問題となる。
また、「33本までは減らせる」ことがヒントとして与えられているので、 基数制約 |X'| ≤ 33 も制約条件に加える。
Totalizer符号化[1]による基数制約の符号化、Tseitin符号化[2][3]、および冠頭標準形への変換を行ってQDIMACS形式の論理式 [Q2_33.qdimacs](Q2_33.qdimacs) を生成し、QBFソルバ[caqe](https://github.com/ltentrup/caqe/tree/0543174f6c8c624ba37db80d13479c0408d7384e/)を用いて解いたところ、|X'| = 33 である以下の解が得られた。
1. (-√2, -1, -1)
2. (-√2, -1, 0)
3. (-√2, -1, 1)
4. (-√2, 0, -√2)
5. (-√2, 0, -1)
6. (-√2, 0, 0)
7. (-√2, 1, -1)
8. (-√2, 1, 0)
9. (-1, -√2, 0)
10. (-1, -1, √2)
11. (-1, 0, -√2)
12. (-1, 0, 1)
13. (-1, 0, √2)
14. (-1, 1, -√2)
15. (-1, 1, √2)
16. (-1, √2, -1)
17. (0, -√2, -√2)
18. (0, -√2, -1)
19. (0, -√2, 1)
20. (0, -1, -√2)
21. (0, -1, 0)
22. (0, -1, 1)
23. (0, 0, 1)
24. (0, 1, -√2)
25. (1, -√2, -1)
26. (1, -√2, 0)
27. (1, 1, 0)
28. (1, 1, √2)
29. (1, √2, -1)
30. (1, √2, 1)
31. (√2, -√2, 0)
32. (√2, -1, -1)
33. (√2, 0, -1)次に基数制約を |X'| ≤ 32 に変更した(QDIMACSファイルは[Q2_32.qdimacs](Q2_32.qdimacs))ところ、数時間程度では解を得ることが出来なかった。
プログラムでは `solveQ2` 関数が該当箇所である。
#### MUSを用いた最適性の証明
以下のような節グループの集まりを考える。
* グループ D = CNF(a(X', white) ∧ b(X', white))
* グループ Gp = {X'(p)} for p ∈ XG = {Gp}p∈X の部分集合 G' ⊆ G で D ∪ ⋃G' が充足不能なものを、この問題の Group oriented Unsatisfiable Subset (GUS) と呼ぶ。
すると、
* {X' ⊆ X | c(X') ∧ (∀white. ¬a(X', white) ∨ ¬b(X', white))}
* = {X' ⊆ X | c(X') ∧ ¬(∃white. a(X', white) ∧ b(X', white))}
* ⊆ {X' ⊆ X | ¬(∃white. a(X', white) ∧ b(X', white))}
* = {X' ⊆ X | ∀X''⊆X. X' ⊆ X'' ⇒ ¬(∃white. a(X'', white) ∧ b(X'', white))}
* = {X' ⊆ X | D ∪ ⋃{Gp}p∈X' is UNSAT}.
* = {X' ⊆ X | {Gp}p∈X' is GUS}.のように、問題の条件を満たす X' の集合は GUS の条件を満たす X' の集合に包含されるため、 GUS のサイズがすべて33以上であれば、上述の |X'| = 33 が最適解であることがわかる。
また、GUS すべてについて確認せずとも、GUS のうち極小なものである Group oriented Minimal Unsatisfiable Subset (GMUS) [4] についてのみ確認すれば十分である。
そこで、まず CAMUS アルゴリズム[5]を用いてすべての MUS のハイパーグラフの横断である MCS (Minimal Correction Subset) を列挙する。
* GCNF形式ファイル: [Q2.gcnf](Q2.gcnf)
* 実行ログ: [Q2_toysat_mcs.txt](Q2_toysat_mcs.txt)その結果、以下のようなベクトルの部分集合(に対応するグループ)の33個のMCSが得られた。
1. {(0, -1, -√2), (0, 1, √2)}
2. {(-√2, 0, -1), (√2, 0, 1)}
3. {(-1, √2, 1), (1, -√2, -1)}
4. {(-√2, -1, 0), (√2, 1, 0)}
5. {(-1, √2, -1), (1, -√2, 1)}
6. {(-1, 1, -√2), (1, -1, √2)}
7. {(-1, -√2, 1), (1, √2, -1)}
8. {(-1, 1, √2), (1, -1, -√2)}
9. {(-√2, -1, -1), (√2, 1, 1)}
10. {(-1, -1, -√2), (1, 1, √2)}
11. {(-1, -√2, -1), (1, √2, 1)}
12. {(-1, -1, √2), (1, 1, -√2)}
13. {(-√2, 1, 1), (√2, -1, -1)}
14. {(-√2, -1, 1), (√2, 1, -1)}
15. {(0, -√2, -1), (0, √2, 1)}
16. {(0, -√2, 1), (0, √2, -1)}
17. {(-√2, 1, -1), (√2, -1, 1)}
18. {(-1, √2, 0), (1, -√2, 0)}
19. {(-1, 0, √2), (1, 0, -√2)}
20. {(-1, 0, -√2), (1, 0, √2)}
21. {(-√2, 0, 1), (√2, 0, -1)}
22. {(0, -1, √2), (0, 1, -√2)}
23. {(-√2, 1, 0), (√2, -1, 0)}
24. {(-1, -√2, 0), (1, √2, 0)}
25. {(0, 0, -√2), (0, 0, -1), (0, 0, 1), (0, 0, √2)}
26. {(0, -√2, 0), (0, -1, 0), (0, 1, 0), (0, √2, 0)}
27. {(-√2, 0, √2), (-1, 0, 1), (1, 0, -1), (√2, 0, -√2)}
28. {(-√2, 0, 0), (-1, 0, 0), (1, 0, 0), (√2, 0, 0)}
29. {(-√2, 0, -√2), (-1, 0, -1), (1, 0, 1), (√2, 0, √2)}
30. {(-√2, √2, 0), (-1, 1, 0), (1, -1, 0), (√2, -√2, 0)}
31. {(0, -√2, -√2), (0, -1, -1), (0, 1, 1), (0, √2, √2)}
32. {(-√2, -√2, 0), (-1, -1, 0), (1, 1, 0), (√2, √2, 0)}
33. {(0, -√2, √2), (0, -1, 1), (0, 1, -1), (0, √2, -√2)}ここで、これらの MCS は互いに素であるため、そのハイパーグラフ横断である各MUSは各MCSから要素を一つづつ集めたものになり、したがってすべて33要素となる。
よって、|X'| = 33 が最適解であることを示せた。
### 問3.
> より一般的に n 次元 (n > 3) の場合に拡張してください.
> このとき問題は,条件 c') を満たしつつ,条件 a) と b') の少なくとも一方は成り立たないように, n 次元ベクトルの集合を見つけることとなります.
> - a) 2つの直交するベクトルのうち,少なくとも1本は黒色である.
> - b') 互いに直交し合うn本のベクトルのうち,少なくとも1本は白色である.
> - c') 集合内に互いに直交し合う n 本のベクトルの集合が少なくとも1つは存在する.
>
> 一般の場合はとても難しいです.特定の n (> 3) に対して,このようなベクトルの集合を構成する回答も歓迎します.
>
> More generally, extend it to the case of n dimensions (n > 3).
> The problem is to find a set of n-dimensional vectors such that at least one of the conditions a) and b') does not hold while condition c') is satisfied.
> - a) Whenever two of the vectors are orthogonal, at least one is black.
> - b') Whenever n vectors are mutually orthogonal, at least one is white.
> - c') There exists at least one set of n vectors in the set that are mutually orthogonal to each other.
>
> The general case is very difficult. The constitution of such a set of vectors for a particular n (> 3) is also welcome.n = 4 の場合について、基数制約は加えずに問2と同様のQBFを用いたアプローチを試みた(QDIMACSファイルは[Q3_4.qdimacs](Q3_4.qdimacs))が、解を得ることが出来なかった。
プログラム中の `solveQ3` 関数が該当箇所である。
# References
* [1] O. Bailleux and Y. Boufkhad, “Efficient cnf encoding of boolean cardinality constraints,” in Principles and Practice of Constraint Programming –
CP 2003, F. Rossi, Ed. Berlin, Heidelberg: Springer Berlin Heidelberg, 2003, pp. 108–122.
* [2] G. Tseitin, “On the complexity of derivation in propositional calculus,” Studies in Constr. Math. and Math. Logic, 1968.
* [3] D. Plaisted and S. Greenbaum, “A Structure-preserving Clause Form Translation,” in Journal on Symbolic Computation, volume 2, 1986.
* [4] Matti Järvisalo, Daniel le Berre and Olivier Roussel, “Rules of the 2011 SAT Competition,” http://www.satcompetition.org/2011/rules.pdf
* [5] M. H. Liffiton, K. A. Sakallah, “Algorithms for computing minimal unsatisfiable subsets of constraints,” Journal of Automated Reasoning 40 (1), 1–33 (Jan 2008)