SAT based property checking Flashcards

1
Q

Define the SAT problem.

A

Find a set of assignments for the variables of a formula
f in CNF such that f = 1
or
prove that no such set exists

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The basic procedure of most modern SAT solvers

A

Assign step by step values 0 or 1 to the variables in the CNF until all clauses are satisfied (evaluate to 1). If a clause evaluates to 0 it is called violated and backtracks are performed based on a decision tree.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which representation of circuits is used in SAT solvers?

A

CNF

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can the SAT solver be optimized?

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How is SAT-based property checking modelled?

A

Compute CNF for transition relation of iterative model: “unrolled transition relation”, initial state and property.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Why is Interval Property Checking more versitile?

A

• can prove properties of type: if certain assumptions hold for t≤ti≤t + k
then a certain commitment will hold for t≤tj≤t + k

e.g., if a request is sent to some resource at time t, then an acknowledge will arrive at the latest at time t+k

• can handle much larger blocks than symbolic model
checking.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Main problem of Bounded model checking.

A
  • bounded model checking only proves property for k clock cycles, 0≤t≤k
  • property is proved for all reachable states if k is chosen large enough, such that k ≥number of cycles to reach every state in the machine at least once (sequential depth of automaton). -> Not always practical
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is Interval Property checking (IPC)?

A

Is a bounded model checking which uses iterative circuit array from i = t to i = t+k.
It means that we prove safety properties by constructing a certain combinational circuit and solve a SAT problem for it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Definition of invariants.

A

A set of states W in a finite state machine M is called invariant if W contains all states being reachable from W
.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How symbolic representation works for model checking.

A

Using boolean representation of states make the representation of states easier and CNF based SAT-solving easier. Calculate characteristic equation, transition function and property function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Which model is used in bounded model checking?

A

Iterative circuit model

How well did you know this?
1
Not at all
2
3
4
5
Perfectly