initial commit

This commit is contained in:
JKF
2026-08-09 14:08:05 +02:00
commit 6de0df6905
16 changed files with 635 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
- used to verify UNSAT results
- Idea is to derive empty clause
# RUP
- Reverse Unit Propagation
- Proofs only by [Unit propagation](SAT_in_general#Special Case Unit Resolution)
# RAT
- Reverse Asymmetric Tautology
- Idea: If all Resolutions end in Tautologies (or tautology by RUP) clause can be removed
- Supports more than just [UP](SAT_in_general#Special Case Unit Resolution)
- Way to represent [Blocked Clause removal](Preprocessing_Inprocessing#Blocked Clauses / Blocked literal)
- Replace need for tautology with RUP condition
# Redundancy
- A clause in a Formula is redundant
- Simplifying F by setting C to false implies any Formula simplified by another assignment
- $F_\alpha \models F_\omega$ , where $\omega$ satisfies $C$
- The idea of Propagation Redundancy (PR) is more general even than RAT