johannes kepler universitat linz¨ -...

43
Translating into SAT Armin Biere Johannes Kepler Universit¨ at Linz SAT’16 Industrial Day Universit ´ e de Bordeaux Bordeaux, France Saturday, 9th July, 2016

Upload: others

Post on 25-Apr-2020

5 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Translating into SAT

Armin BiereJohannes Kepler Universitat Linz

SAT’16 Industrial Day

Universite de BordeauxBordeaux, France

Saturday, 9th July, 2016

Page 2: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

SAT Example: Equivalence Checking if-then-else Chains 1

optimization of if-then-else chains

original C code optimized C code

if(!a && !b) h(); if(a) f();else if(!a) g(); else if(b) g();else f(); else h();

⇓ ⇑

if(!a) { if(a) f();if(!b) h(); ⇒ else {else g(); if(!b) h();} else f(); else g(); }

How to check that these two versions are equivalent?

Translating into SAT @ Industrial Day SAT’16

Page 3: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Compilation 2

original ≡ if ¬a∧¬b then h else if ¬a then g else f

≡ (¬a∧¬b)∧h ∨ ¬(¬a∧¬b)∧ if ¬a then g else f

≡ (¬a∧¬b)∧h ∨ ¬(¬a∧¬b)∧ (¬a∧g ∨ a∧ f )

optimized ≡ if a then f else if b then g else h

≡ a∧ f ∨ ¬a∧ if b then g else h

≡ a∧ f ∨ ¬a∧ (b∧g ∨ ¬b∧h)

(¬a∧¬b)∧h ∨ ¬(¬a∧¬b)∧ (¬a∧g ∨ a∧ f ) ⇔ a∧ f ∨ ¬a∧ (b∧g ∨ ¬b∧h)

Translating into SAT @ Industrial Day SAT’16

Page 4: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

How to Check (In)Equivalence? 3

Reformulate it as a satisfiability (SAT) problem:

Is there an assignment to a,b, f ,g,h,which results in different evaluations of original and optimized?

or equivalently:

Is the boolean formula compile(original) 6↔ compile(optimized) satisfiable?

such an assignment would provide an easy to understand counterexample

Note: by concentrating on counterexamples we moved from Co-NP to NP

Note: this is mostly of theoretical interest but in practice there might be big differences ifyou have many problems and average expected result is only one (SAT or UNSAT)

Translating into SAT @ Industrial Day SAT’16

Page 5: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

SAT Example: Circuit Equivalence Checking 4

c

a

b

c

a

b

b ∨ a∧ c (a∨b) ∧ (b∨ c)

equivalent?

b ∨ a∧ c ⇔ (a∨b) ∧ (b∨ c)

Translating into SAT @ Industrial Day SAT’16

Page 6: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

SAT 5

SAT (Satisfiability) the classical NP complete Problem:

Given a propositional formula f over n propositional variables V = {x,y, . . .}.

Is there an assignment σ : V →{0,1} with σ( f ) = 1 ?

SAT belongs to NP

There is a non-deterministic Touring-machine deciding SAT in polynomial time:

guess the assignment σ (linear in n), calculate σ( f ) (linear in | f |)

Note: on a real (deterministic) computer this would still require 2n time

SAT is complete for NP (see complexity / theory class)

Implications for us:general SAT algorithms are probably exponential in time (unless NP = P)

Translating into SAT @ Industrial Day SAT’16

Page 7: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Conjunctive Normal Form 6

Definition

a formula in Conjunctive Normal Form (CNF) is a conjunction of clauses

C1∧C2∧ . . .∧Cn

each clause C is a disjunction of literals

C = L1∨ . . .∨Lm

and each literal is either a plain variable x or a negated variable x.

Example (a∨b∨ c)∧ (a∨b)∧ (a∨ c)

Note 1: two notions for negation: in x and ¬ as in ¬x for denoting negation.

Note 2: the original SAT problem is actually formulated for CNF

Note 3: SAT solvers mostly also expect CNF as input

Translating into SAT @ Industrial Day SAT’16

Page 8: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

CNF Encoding through Negation Normalform 7

NNF: ¬ in front of variables only, arbitrary nested ∧ and ∨

might need to expand non-monotonic operators into ∧ and ∨(a↔ b)≡ (¬a∧¬b)∨ (a∧b)

requires to work with circuit/DAG to avoid exponential explosion

apply De’Morgan rule to push negations down

¬(a∧b)≡ ¬a∨¬b ¬(a∨b)≡ ¬a∧¬b

bottom-up CNF translation

(∧

iCi)∧ (∧

j D j) is already a CNF

(∧

iCi)∨ (∧

j D j)≡∧

i, j(Ci∨D j) “clause distribution” (quadratic)

whole procedure exponential in ∨/∧ alternation depth

but might produce compact CNFs for small formulas

(¬a∧¬b)∨ (a∧b)≡ �������(¬a∨a)∧ (¬a∨b)∧ (¬b∨a)∧�������

(¬b∨b)

NNF to CNF encoding interesting concept but (not really) used in practice

Translating into SAT @ Industrial Day SAT’16

Page 9: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Why are Sharing / Circuits / DAGs important? 8

DAG may be exponentially more succinct than expanded Tree

Examples: adder circuit, parity, mutual exclusion

Translating into SAT @ Industrial Day SAT’16

Page 10: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Parity Example 9

Boole

parity (Boole a, Boole b, Boole c, Boole d, Boole e,

Boole f, Boole g, Boole h, Boole i, Boole j)

{

tmp0 = b ? !a : a;

tmp1 = c ? !tmp0 : tmp0;

tmp2 = d ? !tmp1 : tmp1;

tmp3 = e ? !tmp2 : tmp2;

tmp4 = f ? !tmp3 : tmp3;

tmp5 = g ? !tmp4 : tmp4;

tmp6 = h ? !tmp5 : tmp5;

tmp7 = i ? !tmp6 : tmp6;

return j ? !tmp7 : tmp7;

}

Eliminiate the tmp. . . variables through substitution.

What is the size of the DAG vs the Tree representation?

Translating into SAT @ Industrial Day SAT’16

Page 11: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

How to detect Sharing 10

through caching of results in algorithms operating on formulas(examples: substitution algorithm, generation of NNF for non-monotonic ops)

when modeling a system: variables are introduced for subformulae(then these variables are used multiple times in the toplevel formula)

structural hashing: detects structural identical subformulae(see Signed And Graphs later)

equivalence extraction: e.g. BDD sweeping, Stalmarcks Method

Translating into SAT @ Industrial Day SAT’16

Page 12: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Example of Tseitin Transformation: Circuit to CNF 11

CNF

c

b

a

w

vw

uo

x

y

o ∧(x ↔ a∧ c) ∧(y ↔ b∨ x) ∧(u ↔ a∨b) ∧(v ↔ b∨ c) ∧(w↔ u∧ v) ∧(o ↔ y⊕w)

o∧ (x→ a)∧ (x→ c)∧ (x← a∧ c)∧ . . .

o∧ (x∨a)∧ (x∨ c)∧ (x∨a∨ c)∧ . . .

Translating into SAT @ Industrial Day SAT’16

Page 13: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Tseitin Transformation: Input / Output Constraints 12

Negation: x↔ y ⇔ (x→ y)∧ (y→ x)⇔ (x∨ y)∧ (y∨ x)

Disjunction: x↔ (y∨ z) ⇔ (y→ x)∧ (z→ x)∧ (x→ (y∨ z))⇔ (y∨ x)∧ (z∨ x)∧ (x∨ y∨ z)

Conjunction: x↔ (y∧ z) ⇔ (x→ y)∧ (x→ z)∧ ((y∧ z)→ x)⇔ (x∨ y)∧ (x∨ z)∧ ((y∧ z)∨ x)⇔ (x∨ y)∧ (x∨ z)∧ (y∨ z∨ x)

Equivalence: x↔ (y↔ z) ⇔ (x→ (y↔ z))∧ ((y↔ z)→ x)⇔ (x→ ((y→ z)∧ (z→ y))∧ ((y↔ z)→ x)⇔ (x→ (y→ z))∧ (x→ (z→ y))∧ ((y↔ z)→ x)⇔ (x∨ y∨ z)∧ (x∨ z∨ y)∧ ((y↔ z)→ x)⇔ (x∨ y∨ z)∧ (x∨ z∨ y)∧ (((y∧ z)∨ (y∧ z))→ x)⇔ (x∨ y∨ z)∧ (x∨ z∨ y)∧ ((y∧ z)→ x)∧ ((y∧ z)→ x)⇔ (x∨ y∨ z)∧ (x∨ z∨ y)∧ (y∨ z∨ x)∧ (y∨ z∨ x)

Translating into SAT @ Industrial Day SAT’16

Page 14: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Optimizations for Tseitin Transformation 13

goal is smaller CNF (less variables, less clauses)

extract multi argument operands (removes variables for intermediate nodes)

half of AND, OR node constraints can be removed for unnegated nodes

a node occurs negated if it has an ancestor which is a negation

half of the constraints determine parent assignment from child assignment

those are unnecessary if node is not used negated[PlaistedGreenbaum’86] and then [ChambersManoliosVroon’09]

structural circuit optimizations like in the ABC tool from Berkeley

however might be simulated on CNF levelsee [JarvisaloBiereHeule-TACAS’10] and our later discussion on blocked clauses

compact technology mapping based encoding [EenMishchenkoSorensson’07]

Translating into SAT @ Industrial Day SAT’16

Page 15: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Buggy Program 14

int middle (int x, int y, int z) {int m = z;if (y < z) {if (x < y)m = y;

else if (x < z)m = y;

} else {if (x > y)m = y;

else if (x > z)m = x;

}return m;}

this program is supposed to return the middle (median) of three numbers

Translating into SAT @ Industrial Day SAT’16

Page 16: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Test Suite for Buggy Program 15

middle (1, 2, 3) = 2

middle (1, 3, 2) = 2

middle (2, 1, 3) = 1

middle (2, 3, 1) = 2

middle (3, 1, 2) = 2

middle (3, 2, 1) = 2

middle (1, 1, 1) = 1

middle (1, 1, 2) = 1

middle (1, 2, 1) = 1

middle (2, 1, 1) = 1

middle (1, 2, 2) = 2

middle (2, 1, 2) = 2

middle (2, 2, 1) = 2

This black box test suite has to be generated manually.

How to ensure that it covers all cases?

Need to check outcome of each run individually and deter-mine correct result.

Difficult for large programs.

Better use specification and check it.

Translating into SAT @ Industrial Day SAT’16

Page 17: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Specification for Middle 16

let a be an array of size 3 indexed from 0 to 2

a[i] = x∧a[ j] = y∧a[k] = z∧

a[0]≤ a[1]∧a[1]≤ a[2]∧

i 6= j∧ i 6= k∧ j 6= k→

m = a[1]

median obtained by sorting and taking middle element in the ordercoming up with this specification is a manual process

Translating into SAT @ Industrial Day SAT’16

Page 18: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Encoding of Middle Program in Logic 17

int m = z;if (y < z) {if (x < y)m = y;

else if (x < z)m = y;

} else {if (x > y)m = y;

else if (x > z)m = x;

}return m;}

(y < z∧ x < y→ m = y)∧

(y < z∧ x≥ y∧ x < z→ m = y)∧

(y < z∧ x≥ y∧ x≥ z→ m = z)∧

(y≥ z∧ x > y→ m = y)∧

(y≥ z∧ x≤ y∧ x > z→ m = x)∧

(y≥ z∧ x≤ y∧ x≤ z→ m = z)

this formula can be generated automatically by a compiler

Translating into SAT @ Industrial Day SAT’16

Page 19: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Checking Specification as SMT Problem 18

let P be the encoding of the program, and S of the specificationprogram is correct if “P→ S” is validprogram has a bug if “P→ S” is invalidprogram has a bug if negation of “P→ S” is satisfiable (has a model)program has a bug if “P∧¬S” is satisfiable (has a model)

(y < z∧ x < y→ m = y) ∧(y < z∧ x≥ y∧ x < z→ m = y) ∧(y < z∧ x≥ y∧ x≥ z→ m = z) ∧(y≥ z∧ x > y→ m = y) ∧(y≥ z∧ x≤ y∧ x > z→ m = x) ∧(y≥ z∧ x≤ y∧ x≤ z→ m = z) ∧a[i] = x∧a[ j] = y∧a[k] = z ∧a[0]≤ a[1]∧a[1]≤ a[2] ∧i 6= j∧ i 6= k∧ j 6= k ∧m 6= a[1]

Translating into SAT @ Industrial Day SAT’16

Page 20: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Encoding with Bit-Vector Logic in SMTLIB2 19

(set-logic QF AUFBV)(declare-fun x () ( BitVec 32)) (declare-fun y () ( BitVec 32))(declare-fun z () ( BitVec 32)) (declare-fun m () ( BitVec 32))(assert (=> (and (bvult y z) (bvult x y) ) (= m y)))(assert (=> (and (bvult y z) (bvuge x y) (bvult x z)) (= m y))) ; fix last ’y’->’x’(assert (=> (and (bvult y z) (bvuge x y) (bvuge x z)) (= m z)))(assert (=> (and (bvuge y z) (bvugt x y) ) (= m y)))(assert (=> (and (bvuge y z) (bvule x y) (bvugt x z)) (= m x)))(assert (=> (and (bvuge y z) (bvule x y) (bvule x z)) (= m z)))(declare-fun i ()( BitVec 2)) (declare-fun j ()( BitVec 2)) (declare-fun k ()( BitVec 2))(declare-fun a ()(Array ( BitVec 2) ( BitVec 32)))(assert (and (bvule #b00 i) (bvule i #b10) (bvule #b00 j) (bvule j #b10)))(assert (and (bvule #b00 k) (bvule k #b10)))(assert (and (= (select a i) x) (= (select a j) y) (= (select a k) z)))(assert (bvule (select a #b00) (select a #b01)))(assert (bvule (select a #b01) (select a #b10)))(assert (distinct i j k))(assert (distinct m (select a #b01)))(check-sat)(get-model)(exit)

Translating into SAT @ Industrial Day SAT’16

Page 21: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

$ boolector -m middle32-buggy.smt2sat(model(define-fun x () ( BitVec 32) #b01100101100011101000011000011001)(define-fun y () ( BitVec 32) #b01100001101010111000011000010101)(define-fun z () ( BitVec 32) #b11101011110110111000110100010110)(define-fun m () ( BitVec 32) #b01100001101010111000011000010101)(define-fun i () ( BitVec 2) #b01)(define-fun j () ( BitVec 2) #b00)(define-fun k () ( BitVec 2) #b10)(define-fun a ((a x0 ( BitVec 2))) ( BitVec 32)(ite (= a x0 #b00) #b01100001101010111000011000010101(ite (= a x0 #b01) #b01100101100011101000011000011001(ite (= a x0 #b10) #b11101011110110111000110100010110

#b00000000000000000000000000000000)))))2 01100101100011101000011000011001 x3 01100001101010111000011000010101 y4 11101011110110111000110100010110 z5 01100001101010111000011000010101 m28 01 i29 00 j30 10 k31[00] 01100001101010111000011000010101 a31[01] 01100101100011101000011000011001 a31[10] 11101011110110111000110100010110 a$ boolector middle32-fixed.smt2unsat

Page 22: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Intermediate Representations 21

encoding directly into CNF is hard, so we use intermediate levels:

1. application level

2. bit-precise semantics world-level operations: bit-vector theory

3. bit-level representations such as AIGs or vectors of AIGs

4. CNF

encoding application level formulas into word-level: as generating machine code

word-level to bit-level: bit-blasting similar to hardware synthesis

encoding “logical” constraints is another story

Translating into SAT @ Industrial Day SAT’16

Page 23: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Bit-Blasting Equality 22

equality check of 4-bit numbers x,y with one bit result e

e↔ (x = y)

[e0]1 ↔([x3,x2,x1,x0]4 = [y3,y2,y1,y0]4

)

e0↔3∧

i=0(xi↔ yi)

e0↔((x3↔ y3)∧ (x2↔ y2)∧ (x1↔ y1)∧ (x0↔ y0)

)

Translating into SAT @ Industrial Day SAT’16

Page 24: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Bit-Blasting Inequality 23

(strict unsigned) inequality check of 4-bit numbers x,y with one bit result c

c↔ (x < y)

[c0]1 ↔([x3,x2,x1,x0]4 < [y3,y2,y1,y0]4

)

c0↔ LessThan(3,x,y)

with

LessThan(−1,x,y) = ⊥

LessThan( i,x,y) = (¬xi∧ yi)∨((xi↔ yi)∧LessThan(i−1,x,y)

)if i≤ 0

c0 ↔ x3y3∨ (x3 = y3)(x2y2∨ (x2 = y2)(x1y1∨ (x1 = y1)x1y1))

Translating into SAT @ Industrial Day SAT’16

Page 25: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Bit-Blasting Addition 24

addition of 4-bit numbers x,y with result s also 4-bit

s = x+ y

[s3,s2,s1,s0]4 = [x3,x2,x1,x0]4+[y3,y2,y1,y0]4

[s3, · ]2 = FullAdder(x3,y3,c2)

[s2,c2]2 = FullAdder(x2,y2,c1)

[s1,c1]2 = FullAdder(x1,y1,c0)

[s0,c0]2 = FullAdder(x0,y0, false)

where

[ s , o ]2 = FullAdder(x,y, i) with

s ↔ x xor y xor i

o ↔ (x∧ y)∨ (x∧ i)∨ (y∧ i) = ((x+ y+ i)≥ 2)

Translating into SAT @ Industrial Day SAT’16

Page 26: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

And-Inverter-Graphs (AIG) 25

widely adopted bit-level intermediate representation

see for instance our AIGER format http://fmv.jku.at/aiger

used in Hardware Model Checking Competition (HWMCC)

also used in the structural track in SAT competitions

many companies use similar techniques

basic logical operators: conjunction and negation

DAGs: nodes are conjunctions, negation/sign as edge attributebit stuffing: signs are compactly stored as LSB in pointer

automatic sharing of isomorphic graphs, constant time (peep hole) simplifications

or even SAT sweeping, full reduction, etc . . . see ABC system from Berkeley

Translating into SAT @ Industrial Day SAT’16

Page 27: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

XOR as AIG 26

yx

negation/sign are edge attributesnot part of node

x xor y ≡ (x∧ y)∨ (x∧ y) ≡ (x∧ y)∧ (x∧ y)

Translating into SAT @ Industrial Day SAT’16

Page 28: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Bit-Stuffing Techniques for AIGs in C 27

typedef struct AIG AIG;

struct AIG

{

enum Tag tag; /* AND, VAR */

void *data[2];

int mark, level; /* traversal */

AIG *next; /* hash collision chain */

};

#define sign_aig(aig) (1 & (unsigned) aig)

#define not_aig(aig) ((AIG*)(1 ^ (unsigned) aig))

#define strip_aig(aig) ((AIG*)(~1 & (unsigned) aig))

#define false_aig ((AIG*) 0)

#define true_aig ((AIG*) 1)

assumption for correctness:sizeof(unsigned) == sizeof(void*)

Translating into SAT @ Industrial Day SAT’16

Page 29: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

2

1[1]

4

2[1]

6

1[2]

8

2[2]

1 0

1[3]

1 2

2[3]

1 4

1[0]

1 6

2[0]1 8

20

22

24

26

28

30

32

34

36

38

4042

44

46 48

50

52

54

56

58

60

62

O0

O1

O2

O3

��FMX�EHHIV

2

1[1]

4

2[1]

6

1[2]

8

2[2]

1 0

1[3]

1 2

2[3]

1 4

1[4]

1 6

2[4]

1 8

1[5]

2 0

2[5]

2 2

1[6]

2 4

2[6]

2 6

1[7]

2 8

2[7]

3 0

1[0]

3 2

2[0]3 4

36

38

40

42

44

46

48

50

52

54

56

58

60

62

64

66

68

70

72

74

76

78

80

82

84

86

88

90

92

94

9698

100

102 104

106

108

110

112

114

116

118

120

122

124

126

128

130

132

134

O0

O1

O2

O3

O4

O5

O6

O7

��FMX�EHHIV

Page 30: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

2

2[0]

4

2[1]

6

2[2]

8

1[0]

1 0

2[3]

1 2

1[1]

1 4

1[2]

1 6

1[3]

1 8

1[4]

2 0

1[5]

2 2

1[6]

2 4

1[7]

2 6

1[8]

2 8

1[9]

3 0

1[10]

32

1[11]

34

1[12]

36

1[13]

38

1[14]

40

1[15]

42 44

46

48

50 52

54

56

58

60

62 64

66

68

7072

74

76

78

80

82

84

86 88

90

92

94 96

98

100

102

104

106 108

110

112

114 116

118

120

122

124

126

128

130

132 134

136

138

140 142

144

146

148

150

152 154

156

158

160 162

164

166

168

170

172

174

176 178

180

182

184 186

188

190

192

194

196 198

200

202

204

206

208

210

212

214

216

218 220

222

224

226 228

230

232

234

236

238 240

242

244

246

248

250

252

254

256 258

260

262

264 266

268

270

272

274

276 278

280

282

284

286

288

290

292

294 296

298

300

302

304

306

308 310

312

314

316

318

320

322 324

326

328

330

332

334

336 338

340

342

344

346

348

350 352 354 356358 360362 364

O0 O1 O2 O3O4 O5O6 O7

O8 O9 O10 O11O12 O13O14 O15

bit-vector of length 16 shifted by bit-vector of length 4

Page 31: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

2

1[6]

4

2[7]

6

1[7]8

2[6]

1 0

1[5]

1 2

2[5]

1 4

1[4]

1 6

2[4]

1 8

1[3]

2 0

2[3]

2 2

1[2]

2 4

2[2]

2 6

1[1]

2 8

2[1]

3 0

1[0]

3 2

2[0]

3 4

36

38

40 42

44 46

48

50 52

54

56

58

60

62

64

66 68

70

72 74

76 78

80 82

84

86 88

90

92

94

96

98

100

102

104 106

108

110 112

114 116

118 120

122

124 126

128 130

132 134

136

138 140

142

144

146

148

150

152

154

156

158 160

162

164 166

168 170

172 174

176

178 180

182 184

186 188

190

192 194

196 198

200 202

204

206 208

210

212

214

216

218

220

222

224

226

228 230

232

234 236

238 240

242 244

246

248 250

252 254

256 258

260

262 264

266 268

270 272

274

276 278

280 282

284 286

288

290 292

294 296

298

300

302

304

306

308

310 312

314 316

318

320322

324 326

328 330

332

334 336

338340

342344

346

348350

352 354

356 358

360

362 364

366 368

370 372

374

376378

380 382

384386

388

390392

394 396

398400

402

404

406

408

410

412

414

416

418

420

422

424

426

428

O0

O1

O2

O3

O4

O5

O6

O7

Page 32: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Structural Hashing and Hyper-Binary Resolution 31

[HeuleJarvisaloBiere-CPAIOR’13]

a ↔ x∧ y b ↔ x∧ ya↔ b

(a∨ x)(a∨ y)(a∨ x∨ y)(b∨ x)(b∨ y)(b∨ x∨ y)

hyper-binary resolve in multiple binary clauses in “parallel”:

a∨ x a∨ y b∨ x∨ ya∨b

b∨ x b∨ y a∨ x∨ ya∨ b

thus “in principle” hyper-binary resolution can simulate structural hashing, however . . .

Translating into SAT @ Industrial Day SAT’16

Page 33: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

● ●

0 200 400 600 800 1000

020

040

060

080

010

00

Lingeling versus Splatz

Lingeling

Spl

atz

● ●●

●● ●●

●●●●●●●●●●●●●●●

●●●

●●

●●●

● ●●

●●●

2d−strip−packingargumentationbiocrypto−aescrypto−descrypto−goscrypto−md5crypto−shacrypto−vpmcdiagnosisfpga−routinghardware−bmchardware−bmc−ibmhardware−cechardware−manolioshardware−velevplanningschedulingscheduling−pespsoftware−bit−verifsoftware−bmcsymbolic−simulationtermination

Page 34: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Boolector Architecture 33

Expr

SAT Solver

BTOR

SMT2 Expr

parse O2

subst

norm

slice

O3

synthesize

AIG(Vec)

CNF

O1 = bottom up simplification

O3 = normalizing (often non−linear) [default]

O1

rewrite

encode

Lingeling / PicoSAT / MiniSAT

SMT1

O2 = global but almost linear

Translating into SAT @ Industrial Day SAT’16

Page 35: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Encoding Logical Constraints 34

Tseitin’s construction suitable for most kinds of “model constraints”

assuming simple operational semantics: encode an interpreter

small domains: one-hot encoding large domains: binary encoding

harder to encode properties or additional constraints

temporal logic / fix-points

environment constraints

example for fix-points / recursive equations: x = (a∨ y), y = (b∨ x)

has unique least fix-point x = y = (a∨b)

and unique largest fix-point x = y = true but unfortunately

only largest fix-point can be (directly) encoded in SAT otherwise need ASP

Translating into SAT @ Industrial Day SAT’16

Page 36: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Example of Logical Constraints: Cardinality Constraints 35

given a set of literals {l1, . . . ln}constraint the number of literals assigned to true

|{l1, . . . , ln}| ≥ k or |{l1, . . . , ln}| ≤ k or |{l1, . . . , ln}|= k

multiple encodings of cardinality constraints

naıve encoding exponential: at-most-two quadratic, at-most-three cubic, etc.

quadratic O(k ·n) encoding goes back to Shannon

linear O(n) parallel counter encoding [Sinz’05]

for an O(n · logn) encoding see Prestwich’s chapter in our Handbook of SAT

generalization Pseudo-Boolean constraints (PB), e.g. 2 ·a+b+ c+d +2 · e ≥ 3actually used to handle MaxSAT in SAT4J for configuration in Eclipse

Translating into SAT @ Industrial Day SAT’16

Page 37: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

BDD based Encoding of Cardinality Constraints 36

2≤ |{l1, . . . , l9}| ≤ 3

l1

l2

l2

l3

l3

l4

l4

l5

l6

l6

l5

l7

l7

l8

l8

l9

l9

l3

l4

l5

l6

l7

l8

l9

l4

l5

l6

l7

l8

l9

1

0

0

0 00 0 0 0

1

“then” edge downward, “else” edge to the right

Translating into SAT @ Industrial Day SAT’16

Page 38: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Bounded Variable Elimination (BVE) 37

[DavisPutnam60] [EenBiere SAT’05]

considered to be the most effective preprocessing technique

works particularly well on “industrial” formulas

usually removes 80% variables and a similar number of clauses

bounded: eliminate variable if resulting CNF does not have more clauses

replace ∧i(x∨Ci)∧

∧j(¬x∨D j)

by ∧i, j(Ci∨D j)

ignore tautological Ci∨D j

always for 0, or 1 positive/negative occurrences

same for 2 positive and 2 negative occurrences

combined with subsumption and strengthening

simulates NNF compact encodings “at the leafs”

Translating into SAT @ Industrial Day SAT’16

Page 39: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Blocked Clauses 38

[Kullman’99]

fix a CNF F

blocked clause C ∈ F all clauses in F with l

(l∨ a∨ c)

(a∨b∨ l)

(l∨ b∨d)

since all resolvents of C on l are tautological C can be removed

Proof

assignment σ satisfying F\C but not C

can be extended to a satisfying assignment of F by flipping value of l

Translating into SAT @ Industrial Day SAT’16

Page 40: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Blocked Clauses and Encoding / Preprocessing Techniques 39

[JarvisaloBiereHeule-TACAS’10]

COI Cone-of-Influence reduction

MIR Monontone-Input-Reduction

NSI Non-Shared Inputs reduction

PG Plaisted-Greenbaum polarity based encoding

TST standard Tseitin encoding

(B)VE (Bounded) Variable-Elimination as in DP / Quantor / SATeLite

BCE Blocked-Clause-Elimination

Translating into SAT @ Industrial Day SAT’16

Page 41: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Plaisted−Greenbaum encoding

Circuit−

level sim

plif

ication

Tseitin encoding

CN

F−

level sim

plif

ication [BCE+VE](PG)

VE(PG) BCE(PG)

PL(PG)

PG(MIR)PG(COI)

PG

PG(NSI) COI MIR NSI

VE

BCE+VE

BCE

PL

TST

Page 42: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Inprocessing: Interleaving Preprocessing and Search 41

PrecoSAT [Biere’09], Lingeling [Biere’10], also in CryptoMiniSAT [Soos’09]

preprocessing can be extremely beneficial

most SAT competition solvers use bounded variable elimination (BVE)[EenBiere SAT’05]

equivalence / XOR reasoning

probing / failed literal preprocessing / hyper binary resolution

however, even though polynomial, can not be run until completion

simple idea to benefit from full preprocessing without penalty

“preempt” preprocessors after some time

resume preprocessing between restarts

limit preprocessing time in relation to search time

Translating into SAT @ Industrial Day SAT’16

Page 43: Johannes Kepler Universitat Linz¨ - JKUfmv.jku.at/biere/talks/Biere-SAT16IndustrialDay-talk.pdfTranslating into SAT Armin Biere Johannes Kepler Universitat Linz¨ SAT’16 Industrial

Benefits of Inprocessing 42

special case incremental preprocessing:

preprocessing during incremental SAT solving

allows to use costly preprocessors

without increasing run-time “much” in the worst-case

still useful for benchmarks where these costly techniques help

good examples: probing and distillation even BVE can be costly

additional benefit:

makes units / equivalences learned in search available to preprocessing

particularly interesting if preprocessing simulates encoding optimizations

danger of hiding “bad” implementation though . . .

. . . and hard(er) to debug and get right [JarvisaloHeuleBiere-IJCAR’12]

more complex API: lglfreeze, lglmelt . . .

Translating into SAT @ Industrial Day SAT’16