Skip to main content
Top
Published in:
Cover of the book

Open Access 2019 | OriginalPaper | Chapter

Interpolating Strong Induction

Authors : Hari Govind Vediramana Krishnan, Yakir Vizel, Vijay Ganesh, Arie Gurfinkel

Published in: Computer Aided Verification

Publisher: Springer International Publishing

Activate our intelligent search to find suitable subject content or patents.

search-config
loading …

Abstract

The principle of strong induction, also known as k-induction is one of the first techniques for unbounded SAT-based Model Checking (SMC). While elegant and simple to apply, properties as such are rarely k-inductive and when they can be strengthened, there is no effective strategy to guess the depth of induction. It has been mostly displaced by techniques that compute inductive strengthenings based on interpolation and property directed reachability (Pdr). In this paper, we present kAvy, an SMC algorithm that effectively uses k-induction to guide interpolation and Pdr-style inductive generalization. Unlike pure k-induction, kAvy uses Pdr-style generalization to compute and strengthen an inductive trace. Unlike pure Pdr, kAvy uses relative k-induction to construct an inductive invariant. The depth of induction is adjusted dynamically by minimizing a proof of unsatisfiability. We have implemented kAvy within the Avy Model Checker and evaluated it on HWMCC instances. Our results show that kAvy is more effective than both Avy and Pdr, and that using k-induction leads to faster running time and solving more instances. Further, on a class of benchmarks, called shift, kAvy is orders of magnitude faster than AvyPdr and k-induction.

1 Introduction

The principle of strong induction, also known as k-induction, is a generalization of (simple) induction that extends the base- and inductive-cases to k steps of a transition system [27]. A safety property P is k-inductive in a transition system T iff (a) P is true in the first \((k-1)\) steps of T, and (b) if P is assumed to hold for \((k-1)\) consecutive steps, then P holds in k steps of T. Simple induction is equivalent to 1-induction. Unlike induction, strong induction is complete for safety properties: a property P is safe in a transition system T iff there exists a natural number k such that P is k-inductive in T (assuming the usual restriction to simple paths). This makes k-induction a powerful method for unbounded SAT-based Model Checking (SMC).
Unlike other SMC techniques, strong induction reduces model checking to pure SAT that does not require any additional features such as solving with assumptions [12], interpolation [24], resolution proofs [17], Maximal Unsatisfiable Subsets (MUS) [2], etc. It easily integrates with existing SAT-solvers and immediately benefits from any improvements in heuristics [22, 23], pre- and in-processing [18], and parallel solving [1]. The simplicity of applying k-induction made it the go-to technique for SMT-based infinite-state model checking [9, 11, 19]. In that context, it is particularly effective in combination with invariant synthesis [14, 20]. Moreover, for some theories, strong induction is strictly stronger than 1-induction [19]: there are properties that are k-inductive, but have no 1-inductive strengthening.
Notwithstanding all of its advantages, strong induction has been mostly displaced by more recent SMC techniques such as Interpolation [25], Property Directed Reachability [3, 7, 13, 15], and their combinations [29]. In SMC k-induction is equivalent to induction: any k-inductive property P can be strengthened to an inductive property Q [6, 16]. Even though in the worst case Q is exponentially larger than P [6], this is rarely observed in practice [26]. Furthermore, the SAT queries get very hard as k increases and usually succeed only for rather small values of k. A recent work [16] shows that strong induction can be integrated in Pdr. However, [16] argues that k-induction is hard to control in the context of Pdr since choosing a proper value of k is difficult. A wrong choice leads to a form of state enumeration. In [16], k is fixed to 5, and regular induction is used as soon as 5-induction fails.
In this paper, we present kAvy, an SMC algorithm that effectively uses k-induction to guide interpolation and Pdr-style inductive generalization. As many state-of-the-art SMC algorithms, kAvy iteratively constructs candidate inductive invariants for a given safety property P. However, the construction of these candidates is driven by k-induction. Whenever P is known to hold up to a bound N, kAvy searches for the smallest \(k \le N + 1\), such that either P or some of its strengthening is k-inductive. Once it finds the right k and strengthening, it computes a 1-inductive strengthening.
It is convenient to think of modern SMC algorithms (e.g., Pdr and Avy), and k-induction, as two ends of a spectrum. On the one end, modern SMC algorithms fix k to 1 and search for a 1-inductive strengthening of P. While on the opposite end, k-induction fixes the strengthening of P to be P itself and searches for a k such that P is k-inductive. kAvy dynamically explores this spectrum, exploiting the interplay between finding the right k and finding the right strengthening.
As an example, consider a system in Fig. 1 that counts upto 64 and resets. The property, \(p: c < 66\), is 2-inductive. IC3, Pdr and Avy iteratively guess a 1-inductive strengthening of p. In the worst case, they require at least 64 iterations. On the other hand, kAvy determines that p is 2-inductive after 2 iterations, computes a 1-inductive invariant \((c \ne 65) \wedge (c < 66)\), and terminates.
kAvy builds upon the foundations of Avy [29]. Avy first uses Bounded Model Checking [4] (BMC) to prove that the property P holds up to bound N. Then, it uses a sequence interpolant [28] and Pdr-style inductive-generalization [7] to construct 1-inductive strengthening candidate for P. We emphasize that using k-induction to construct 1-inductive candidates allows kAvy to efficiently utilize many principles from Pdr and Avy. While maintaining k-inductive candidates might seem attractive (since they may be smaller), they are also much harder to generalize effectively [7].
We implemented kAvy in the Avy Model Checker, and evaluated it on the benchmarks from the Hardware Model Checking Competition (HWMCC). Our experiments show that kAvy significantly improves the performance of Avy and solves more examples than either of Pdr and Avy. For a specific family of examples from [21], kAvy exhibits nearly constant time performance, compared to an exponential growth of Avy, Pdr, and k-induction (see Fig. 2b in Sect. 5). This further emphasizes the effectiveness of efficiently integrating strong induction into modern SMC.
The rest of the paper is structured as follows. After describing the most relevant related work, we present the necessary background in Sect. 2 and give an overview of SAT-based model checking algorithms in Sect. 3. kAvy is presented in Sect. 4, followed by presentation of results in Sect. 5. Finally, we conclude the paper in Sect. 6.
Related Work. kAvy builds on top of the ideas of IC3 [7] and Pdr [13]. The use of interpolation for generating an inductive trace is inspired by Avy [29]. While conceptually, our algorithm is similar to Avy, its proof of correctness is non-trivial and is significantly different from that of Avy. We are not aware of any other work that combines interpolation with strong induction.
There are two prior attempts enhancing Pdr-style algorithms with k-induction. Pd-Kind [19] is an SMT-based Model Checking algorithm for infinite-state systems inspired by IC3/Pdr. It infers k-inductive invariants driven by the property whereas kAvy infers 1-inductive invariants driven by k-induction. Pd-Kind uses recursive blocking with interpolation and model-based projection to block bad states, and k-induction to propagate (push) lemmas to next level. While the algorithm is very interesting it is hard to adapt it to SAT-based setting (i.e. SMC), and impossible to compare on HWMCC instances directly.
The closest related work is KIC3 [16]. It modifies the counter example queue management strategy in IC3 to utilize k-induction during blocking. The main limitation is that the value for k must be chosen statically (\(k=5\) is reported for the evaluation). kAvy also utilizes k-induction during blocking but computes the value for k dynamically. Unfortunately, the implementation is not available publicly and we could not compare with it directly.

2 Background

In this section, we present notations and background that is required for the description of our algorithm.
Safety Verification. A symbolic transition system T is a tuple \((\bar{v}, Init , Tr , Bad )\), where \(\bar{v}\) is a set of Boolean state variables. A state of the system is a complete valuation to all variables in \(\bar{v}\) (i.e., the set of states is \(\{0,1\}^{|\bar{v}|}\)). We write \(\bar{v}' = \{v' \mid v \in \bar{v}\}\) for the set of primed variables, used to represent the next state. \( Init \) and \( Bad \) are formulas over \(\bar{v}\) denoting the set of initial states and bad states, respectively, and \( Tr \) is a formula over \(\bar{v}\cup \bar{v}'\), denoting the transition relation. With abuse of notation, we use formulas and the sets of states (or transitions) that they represent interchangeably. In addition, we sometimes use a state s to denote the formula (cube) that characterizes it. For a formula \(\varphi \) over \(\bar{v}\), we use \(\varphi (\bar{v}')\), or \(\varphi '\) in short, to denote the formula in which every occurrence of \(v \in \bar{v}\) is replaced by \(v' \in \bar{v}'\). For simplicity of presentation, we assume that the property \(P=\lnot Bad \) is true in the initial state, that is \( Init \Rightarrow P\).
Given a formula \(\varphi (\bar{v})\), an M-to-N-unrolling of T, where \(\varphi \) holds in all intermediate states is defined by the formula:
$$\begin{aligned} Tr [\varphi ]_M^N = \bigwedge _{i=M}^{N-1} \varphi (\bar{v}_i)\wedge Tr (\bar{v}_i, \bar{v}_{i+1}) \end{aligned}$$
(1)
We write \( Tr [\varphi ]^N\) when \(M=0\) and \( Tr _M^N\) when \(\varphi = \top \).
A transition system T is UNSAFE iff there exists a state \(s\in Bad \) s.t. s is reachable, and is SAFE otherwise. Equivalently, T is UNSAFE iff there exists a number N such that the following unrolling formula is satisfiable:
$$\begin{aligned} Init (\bar{v}_0) \wedge Tr ^N \wedge Bad (\bar{v}_N) \end{aligned}$$
(2)
T is SAFE if no such N exists. Whenever T is UNSAFE and \(s_N\in Bad \) is a reachable state, the path from \(s_0\in Init \) to \(s_N\) is called a counterexample.
An inductive invariant is a formula \( Inv \) that satisfies:
$$\begin{aligned} Init (\bar{v})&\Rightarrow Inv(\bar{v})&Inv (\bar{v}) \wedge Tr (\bar{v},\bar{v}')&\Rightarrow Inv (\bar{v}') \end{aligned}$$
(3)
A transition system T is SAFE iff there exists an inductive invariant \( Inv \) s.t. \(Inv(\bar{v})\Rightarrow P(\bar{v})\). In this case we say that \( Inv \) is a safe inductive invariant.
The safety verification problem is to decide whether a transition system T is SAFE or UNSAFE, i.e., whether there exists a safe inductive invariant or a counterexample.
Strong Induction. Strong induction (or k-induction) is a generalization of the notion of an inductive invariant that is similar to how “simple” induction is generalized in mathematics. A formula \( Inv \) is k-invariant in a transition system T if it is true in the first k steps of T. That is, the following formula is valid: \( Init (\bar{v}_0)\wedge Tr ^k\Rightarrow \left( \bigwedge _{i=0}^{k} Inv (\bar{v}_i)\right) \). A formula \( Inv \) is a k-inductive invariant iff \( Inv \) is a \((k-1)\)-invariant and is inductive after k steps of T, i.e., the following formula is valid: \( Tr [ Inv ]^k \Rightarrow Inv (\bar{v}_{k})\). Compared to simple induction, k-induction strengthens the hypothesis in the induction step: \( Inv \) is assumed to hold between steps 0 to \(k-1\) and is established in step k. Whenever \( Inv \Rightarrow P\), we say that \( Inv \) is a safe k-inductive invariant. An inductive invariant is a 1-inductive invariant.
Theorem 1
Given a transition system T. There exists a safe inductive invariant w.r.t. T iff there exists a safe k-inductive invariant w.r.t. T.
Theorem 1 states that k-induction principle is as complete as 1-induction. One direction is trivial (since we can take \(k=1\)). The other can be strengthened further: for every k-inductive invariant \( Inv _k\) there exists a 1-inductive strengthening \( Inv _1\) such that \( Inv _1 \Rightarrow Inv _k\). Theoretically \( Inv _1\) might be exponentially bigger than \( Inv _k\) [6]. In practice, both invariants tend to be of similar size.
We say that a formula \(\varphi \) is k-inductive relative to F if it is a \((k-1)\)-invariant and \( Tr [\varphi \wedge F]^k \Rightarrow \varphi (\bar{v}_k)\).
Craig Interpolation [10]. We use an extension of Craig Interpolants to sequences, which is common in Model Checking. Let \(\varvec{A}=[A_1,\ldots ,A_N]\) such that \(A_1 \wedge \cdots \wedge A_N\) is unsatisfiable. A sequence interpolant \(\varvec{I}= \textsc {seqItp}(\varvec{A})\) for \(\varvec{A}\) is a sequence of formulas \(\varvec{I}= [I_2,\ldots ,I_{N}]\) such that (a) \(A_1 \Rightarrow I_2\), (b) \(\forall 1< i < N \cdot I_{i} \wedge A_i \Rightarrow I_{i+1} \), (c) \(I_{N} \wedge A_N \Rightarrow \bot \), and (d) \(I_i\) is over variables that are shared between the corresponding prefix and suffix of \(\varvec{A}\).

3 SAT-Based Model Checking

In this section, we give a brief overview of SAT-based Model Checking algorithms: IC3/Pdr [7, 13], and Avy [29]. While these algorithms are well-known, we give a uniform presentation and establish notation necessary for the rest of the paper. We fix a symbolic transition system \(T = (\bar{v}, Init , Tr , Bad )\).
The main data-structure of these algorithms is a sequence of candidate invariants, called an inductive trace. An inductive trace, or simply a trace, is a sequence of formulas \(\varvec{F}=[F_0,\ldots ,F_N] \) that satisfy the following two properties:
$$\begin{aligned} Init (\bar{v})&= F_0(\bar{v})&\forall 0 \le i < N \cdot F_i(\bar{v}) \wedge Tr (\bar{v},\bar{v}') \Rightarrow F_{i+1}(\bar{v}') \end{aligned}$$
(4)
An element \(F_i\) of a trace is called a frame. The index of a frame is called a level. \(\varvec{F}\) is clausal when all its elements are in CNF. For convenience, we view a frame as a set of clauses, and assume that a trace is padded with \(\top \) until the required length. The size of \(\varvec{F}= [F_0,\ldots ,F_N] \) is \(|\varvec{F}| = N\). For \(k\le N\), we write \(\varvec{F}^k=[F_k,\dots ,F_N]\) for the k-suffix of \(\varvec{F}\).
A trace \(\varvec{F}\) of size N is stronger than a trace \(\varvec{G}\) of size M iff \(\forall 0 \le i \le \min (N,M) \cdot F_i(\bar{v}) \Rightarrow G_i(\bar{v})\). A trace is safe if each \(F_i\) is safe: \(\forall i \cdot F_i \Rightarrow \lnot Bad \); monotone if \(\forall 0 \le i < N \cdot F_i \Rightarrow F_{i+1}\). In a monotone trace, a frame \(F_i\) over-approximates the set of states reachable in up to i steps of the \( Tr \). A trace is closed if \(\exists 1 \le i \le N \cdot F_i \Rightarrow \left( \bigvee _{j=0}^{i-1} F_j \right) \).
We define an unrolling formula of a k-suffix of a trace \(\varvec{F}= [F_0, \ldots , F_N]\) as :
$$\begin{aligned} Tr [\varvec{F}^k] = \bigwedge _{i=k}^{|F|} F_i(\bar{v}_i)\wedge Tr (\bar{v}_i, \bar{v}_{i+1}) \end{aligned}$$
(5)
We write \( Tr [\varvec{F}]\) to denote an unrolling of a 0-suffix of \(\varvec{F}\) (i.e \(\varvec{F}\) itself). Intuitively, \( Tr [\varvec{F}^k]\) is satisfiable iff there is a k-step execution of the \( Tr \) that is consistent with the k-suffix \(\varvec{F}^k\). If a transition system T admits a safe trace \(\varvec{F}\) of size \(|\varvec{F}| = N\), then T does not admit counterexamples of length less than N. A safe trace \(\varvec{F}\), with \(|\varvec{F}| = N\) is extendable with respect to level \(0\le i\le N\) iff there exists a safe trace \(\varvec{G}\) stronger than \(\varvec{F}\) such that \(|\varvec{G}| > N\) and \(F_i \wedge Tr \Rightarrow G_{i+1}\). \(\varvec{G}\) and the corresponding level i are called an extension trace and an extension level of \(\varvec{F}\), respectively. SAT-based model checking algorithms work by iteratively extending a given safe trace \(\varvec{F}\) of size N to a safe trace of size \(N+1\).
An extension trace is not unique, but there is a largest extension level. We denote the set of all extension levels of \(\varvec{F}\) by \(\mathcal {W}(\varvec{F})\). The existence of an extension level i implies that an unrolling of the i-suffix does not contain any \( Bad \) states:
Proposition 1
Let \(\varvec{F}\) be a safe trace. Then, i, \(0 \le i \le N\), is an extension level of \(\varvec{F}\) iff the formula \( Tr [\varvec{F}^i] \wedge Bad (\bar{v}_{N+1})\) is unsatisfiable.
Example 1
For Fig. 1, \(\varvec{F}= [c = 0, c < 66]\) is a safe trace of size 1. The formula \((c< 66) \wedge Tr \wedge \lnot ( c' < 66 )\) is satisfiable. Therefore, there does not exists an extension trace at level 1. Since \(( c = 0 ) \wedge Tr \wedge ( c' < 66 ) \wedge Tr' \wedge ( c'' \ge 66 )\) is unsatisfiable, the trace is extendable at level 0. For example, a valid extension trace at level 0 is \(\varvec{G}= [c = 0, c< 2, c < 66]\).
Both Pdr and Avy iteratively extend a safe trace either until the extension is closed or a counterexample is found. However, they differ in how exactly the trace is extended. In the rest of this section, we present Avy and Pdr through the lens of extension level. The goal of this presentation is to make the paper self-contained. We omit many important optimization details, and refer the reader to the original papers [7, 13, 29].
Pdr maintains a monotone, clausal trace \(\varvec{F}\) with \( Init \) as the first frame (\(F_0\)). The trace \(\varvec{F}\) is extended by recursively computing and blocking (if possible) states that can reach \( Bad \) (called bad states). A bad state is blocked at the largest level possible. Algorithm 1 shows PdrBlock, the backward search procedure that identifies and blocks bad states. PdrBlock maintains a queue of states and the levels at which they have to be blocked. The smallest level at which blocking occurs is tracked in order to show the construction of the extension trace. For each state s in the queue, it is checked whether s can be blocked by the previous frame \(F_{d-1}\) (line 5). If not, a predecessor state t of s that satisfies \(F_{d-1}\) is computed and added to the queue (line 7). If a predecessor state is found at level 0, the trace is not extendable and an empty trace is returned. If the state s is blocked at level d, PdrIndGen, is called to generate a clause that blocks s and possibly others. The clause is then added to all the frames at levels less than or equal to d. PdrIndGen is a crucial optimization to Pdr. However, we do not explain it for the sake of simplicity. The procedure terminates whenever there are no more states to be blocked (or a counterexample was found at line 4). By construction, the output trace \(\varvec{G}\) is an extension trace of \(\varvec{F}\) at the extension level w. Once Pdr extends its trace, \(\textsc {PdrPush} \) is called to check if the clauses it learnt are also true at higher levels. Pdr terminates when the trace is closed.
Avy, shown in Algorithm 2, is an alternative to Pdr that combines interpolation and recursive blocking. Avy starts with a trace \(\varvec{F}\), with \(F_0 = Init \), that is extended in every iteration of the main loop. A counterexample is returned whenever \(\varvec{F}\) is not extendable (line 3). Otherwise, a sequence interpolant is extracted from the unsatisfiability of \( Tr [\varvec{F}^{\max (\mathcal {W})}] \wedge Bad (\bar{v}_{N+1})\). A longer trace \(\varvec{G}= [G_0, \ldots , G_N,G_{N+1}]\) is constructed using the sequence interpolant (line 7). Observe that \(\varvec{G}\) is an extension trace of \(\varvec{F}\). While \(\varvec{G}\) is safe, it is neither monotone nor clausal. A helper routine \(\textsc {AvyMkTrace} \) is used to convert \(\varvec{G}\) to a proper Pdr trace on line 8 (see [29] for the details on \(\textsc {AvyMkTrace} \)). Avy converges when the trace is closed.

4 Interpolating k-Induction

In this section, we present kAvy, an SMC algorithm that uses the principle of strong induction to extend an inductive trace. The section is structured as follows. First, we introduce a concept of extending a trace using relative k-induction. Second, we present kAvy and describe the details of how k-induction is used to compute an extended trace. Third, we describe two techniques for computing maximal parameters to apply strong induction. Unless stated otherwise, we assume that all traces are monotone.
A safe trace \(\varvec{F}\), with \(|\varvec{F}| = N\), is strongly extendable with respect to (ik), where \(1\le {k} \le {i}+1 \le N+1\), iff there exists a safe inductive trace \(\varvec{G}\) stronger than \(\varvec{F}\) such that \(|\varvec{G}| > N\) and \( Tr [F_i]^k \Rightarrow G_{i+1}\). We refer to the pair (ik) as a strong extension level (SEL), and to the trace \(\varvec{G}\) as an (i, k)-extension trace, or simply a strong extension trace (SET) when (ik) is not important. Note that for \(k=1\), \(\varvec{G}\) is just an extension trace.
Example 2
For Fig. 1, the trace \(\varvec{F}= [c = 0, c < 66]\) is strongly extendable at level 1. A valid (1, 2)-extension trace is \( \varvec{G}= [c = 0, ( c \ne 65 ) \wedge ( c< 66 ), c < 66]\). Note that \(( c < 66 )\) is 2-inductive relative to \(F_1\), i.e. \( Tr [F_1]^2\Rightarrow ( c'' < 66 )\).
We write \(\mathcal {K}(\varvec{F})\) for the set of all SELs of \(\varvec{F}\). We define an order on SELs by: \((i_1,k_1) \preceq (i_2, k_2)\) iff (i) \(i_1 < i_2\); or (ii) \(i_1 = i_2\wedge k_1 > k_2\). The maximal SEL is \(\text {max}(\mathcal {K}(\varvec{F}))\).
Note that the existence of a SEL (ik) means that an unrolling of the i-suffix with \(F_i\) repeated k times does not contain any bad states. We use https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-25543-5_21/487309_1_En_21_IEq161_HTML.gif to denote this characteristic formula for SEL (ik):
https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-25543-5_21/MediaObjects/487309_1_En_21_Equ6_HTML.png
(6)
Proposition 2
Let \(\varvec{F}\) be a safe trace, where \(|\varvec{F}| = N\). Then, (ik), \(1\le {k} \le {i}+1 \le N+1\), is an SEL of \(\varvec{F}\) iff the formula https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-25543-5_21/487309_1_En_21_IEq166_HTML.gif is unsatisfiable.
The level i in the maximal SEL (ik) of a given trace \(\varvec{F}\) is greater or equal to the maximal extension level of \(\varvec{F}\):
Lemma 1
Let \((i, k) = \max (\mathcal {K}(\varvec{F}))\), then \(i \ge \max (\mathcal {W}(\varvec{F}))\).
Hence, extensions based on maximal SEL are constructed from frames at higher level compared to extensions based on maximal extension level.
Example 3
For Fig. 1, the trace \([c = 0, c < 66]\) has a maximum extension level of 0. Since \((c < 66)\) is 2-inductive, the trace is strongly extendable at level 1 (as was seen in Example 2).
kAvy Algorithm. kAvy is shown in Fig. 3. It starts with an inductive trace \(\varvec{F}=[Init]\) and iteratively extends \(\varvec{F}\) using SELs. A counterexample is returned if the trace cannot be extended (line 4). Otherwise, kAvy computes the largest extension level (line 5) (described in Sect. 4.2). Then, it constructs a strong extension trace using kAvyExtend (line 6) (described in Sect. 4.1). Finally, PdrPush is called to check whether the trace is closed. Note that \(\varvec{F}\) is a monotone, clausal, safe inductive trace throughout the algorithm.

4.1 Extending a Trace with Strong Induction

In this section, we describe the procedure kAvyExtend (shown in Algorithm 4) that given a trace \(\varvec{F}\) of size \(|\varvec{F}| = N\) and an (ik) SEL of \(\varvec{F}\) constructs an (ik)-extension trace \(\varvec{G}\) of size \(|\varvec{G}| = N + 1\). The procedure itself is fairly simple, but its proof of correctness is complex. We first present the theoretical results that connect sequence interpolants with strong extension traces, then the procedure, and then details of its correctness. Through the section, we fix a trace \(\varvec{F}\) and its SEL (ik).
Sequence Interpolation for SEL. Let (ik) be an SEL of \(\varvec{F}\). By Proposition 2, \(\varPsi = Tr \llbracket {\varvec{F}}^{i}\rrbracket ^{k}\wedge Bad (\bar{v}_{N+1})\) is unsatisfiable. Let \(\mathcal {A}= \{A_{i-k+1}, \dots , A_{N+1}\}\) be a partitioning of \(\varPsi \) defined as follows:
$$ A_j = {\left\{ \begin{array}{ll} F_i(\bar{v}_{j})\wedge Tr (\bar{v}_j,\bar{v}_{j+1}) &{} \text {if } i-k+1\le j \le i\\ F_j(\bar{v}_{j})\wedge Tr (\bar{v}_j,\bar{v}_{j+1}) &{} \text {if } i< j \le N \\ Bad (\bar{v}_{N+1}) &{} \text {if } j = N+1 \end{array}\right. } $$
Since \(( \wedge \mathcal {A}) = \varPsi \), \(\mathcal {A}\) is unsatisfiable. Let \(\varvec{I}=[I_{i-k+2},\ldots ,I_{N+1}]\) be a sequence interpolant corresponding to \(\mathcal {A}\). Then, \(\varvec{I}\) satisfies the following properties:
$$\begin{aligned} F_i\wedge Tr&\Rightarrow I'_{i-k+2}&\forall i-k+2 \le j \le i\cdot (F_i\wedge I_{j})\wedge Tr&\Rightarrow I'_{j+1} \quad \quad (\heartsuit ) \\ I_{N+1}&\Rightarrow \lnot Bad&\forall i < j \le N\cdot (F_j\wedge I_j)\wedge Tr&\Rightarrow I'_{j+1} \end{aligned}$$
Note that in (\(\heartsuit \)), both i and k are fixed—they are the (ik)-extension level. Furthermore, in the top row \(F_i\) is fixed as well.
The conjunction of the first k interpolants in \(\varvec{I}\) is k-inductive relative to the frame \(F_i\):
Lemma 2
The formula \(F_{i+1}\wedge \left( \bigwedge \limits _{m=i-k+2}^{i+1} I_m\right) \) is k-inductive relative to \(F_i\).
Proof
Since \(F_i\) and \(F_{i+1}\) are consecutive frames of a trace, \(F_i\wedge Tr \Rightarrow F_{i+1}'\). Thus, \(\forall i-k+2\le j\le i\cdot Tr [F_i]_{i-k+2}^{j}\Rightarrow F_{i+1}(\bar{v}_{j+1})\). Moreover, by (\(\heartsuit \)), \(F_i\wedge Tr \Rightarrow I_{i-k+2}'\) and \(\forall i-k+2\le j\le i+1\cdot (F_i\wedge I_j)\wedge Tr \Rightarrow I_{j+1}'\). Equivalently, \(\forall i-k+2\le j\le i+1\cdot Tr [F_i]_{i-k+2}^{j}\Rightarrow I_{j+1}(\bar{v}_{j+1})\). By induction over the difference between \((i+1)\) and \((i-k+2)\), we show that \( Tr [F_i]_{i-k+2}^{i+1}\Rightarrow (F_{i+1}\wedge \bigwedge _{m=i-k+2}^{i+1}I_{m})(\bar{v}_{i+1})\), which concludes the proof.   \(\square \)
We use Lemma 2 to define a strong extension trace \(\varvec{G}\):
Lemma 3
Let \(\varvec{G}= [G_0,\ldots ,G_{N+1}]\), be an inductive trace defined as follows:
$$ G_j = {\left\{ \begin{array}{ll} F_j &{} \text {if } 0\le j< i-k+2 \\ F_{j}\wedge \left( \bigwedge \limits _{m=i-k+2}^{j} I_m\right) &{} \text {if } i-k+2\le j< i+2 \\ (F_{j}\wedge I_{j}) &{}\text {if }i+2\le j< N+1 \\ I_{N+1} &{} \text {if j = (N+1)} \\ \end{array}\right. } $$
Then, \(\varvec{G}\) is an (ik)-extension trace of \(\varvec{F}\) (not necessarily monotone).
Proof
By Lemma 2, \(G_{i+1}\) is k-inductive relative to \(F_i\). Therefore, it is sufficient to show that \(\varvec{G}\) is a safe inductive trace that is stronger than \(\varvec{F}\). By definition, \(\forall 0\le j \le N\cdot G_j\Rightarrow F_j\). By (\(\heartsuit \)), \(F_i\wedge Tr \Rightarrow I_{i-k+2}'\) and \(\forall i-k+2\le j < i+2\cdot (F_i\wedge I_j)\wedge Tr \Rightarrow I_{j+1}'\). By induction over j, \(\left( (F_i\wedge \bigwedge _{m=i-k+2}^{j}I_m)\wedge Tr \right) \Rightarrow \bigwedge _{m=i-k+2}^{j+1}I_{m}'\) for all \(i-k+2\le j < i + 2\). Since \(\varvec{F}\) is monotone, \(\forall i - k + 2 \le j < i+2 \cdot \left( (F_j\wedge \bigwedge _{m=i-k+2}^{j}I_m)\wedge Tr \right) \Rightarrow \bigwedge _{m=i-k+2}^{j+1}I_{m}'\).
By (\(\heartsuit \)), \(\forall i < j \le N\cdot (F_j\wedge I_j)\wedge Tr \Rightarrow I_{j+1}'\). Again, since \(\varvec{F}\) is a trace, we conclude that \(\forall i< j < N\cdot (F_j\wedge I_j)\wedge Tr \Rightarrow (F_{j+1}\wedge I_{j+1})'\). Combining the above, \(G_j\wedge Tr \Rightarrow G_{j+1}'\) for \(0\le j\le N\). Since \(\varvec{F}\) is safe and \(I_{N+1}\Rightarrow \lnot Bad \), then \(\varvec{G}\) is safe and stronger than \(\varvec{F}\).    \(\square \)
Lemma 3 defines an obvious procedure to construct an (ik)-extension trace \(\varvec{G}\) for \(\varvec{F}\). However, such \(\varvec{G}\) is neither monotone nor clausal. In the rest of this section, we describe the procedure kAvyExtend that starts with a sequence interpolant (as in Lemma 3), but uses PdrBlock to systematically construct a safe monotone clausal extension of \(\varvec{F}\).
The procedure kAvyExtend is shown in Algorithm 4. For simplicity of the presentation, we assume that \(\textsc {PdrBlock} \) does not use inductive generalization. The invariants marked by \(^\dagger \) rely on this assumption. We stress that the assumption is for presentation only. The correctness of kAvyExtend is independent of it.
kAvyExtend starts with a sequence interpolant according to the partitioning \(\mathcal {A}\). The extension trace \(\varvec{G}\) is initialized to \(\varvec{F}\) and \(G_{N+1}\) is initialized to \(\top \) (line 2). The rest proceeds in three phases: Phase 1 (lines 3–5) computes the prefix \(G_{i-k+2},\ldots ,G_{i+1}\) using the first \(k-1\) elements of \(\varvec{I}\); Phase 2 (line 8) computes \(G_{i+1}\) using \(I_{i+1}\); Phase 3 (lines 9–12) computes the suffix \(\varvec{G}^{i+2}\) using the last \(( N-i )\) elements of \(\varvec{I}\). During this phase, \(\textsc {PdrPush} \) (line 12) pushes clauses forward so that they can be used in the next iteration. The correctness of the phases follows from the invariants shown in Algorithm 4. We present each phase in turn.
Recall that PdrBlock takes a trace \(\varvec{F}\) (that is safe up to the last frame) and a transition system, and returns a safe strengthening of \(\varvec{F}\), while ensuring that the result is monotone and clausal. This guarantee is maintained by Algorithm 4, by requiring that any clause added to any frame \(G_i\) of \(\varvec{G}\) is implicitly added to all frames below \(G_i\).
Phase 1. By Lemma 2, the first k elements of the sequence interpolant computed at line 1 over-approximate states reachable in \(i+1\) steps of \( Tr \). Phase 1 uses this to strengthen \(G_{i+1}\) using the first k elements of \(\varvec{I}\). Note that in that phase, new clauses are always added to frame \(G_{i+1}\), and all frames before it!
Correctness of Phase 1 (line 5) follows from the loop invariant \(\texttt {Inv}_2\). It holds on loop entry since \(G_i\,\wedge \, Tr \Rightarrow I_{i-k+2}\) (since \(G_i = F_i\) and (\(\heartsuit \))) and \(G_i\,\wedge \, Tr \Rightarrow G_{i+1}\) (since \(\varvec{G}\) is initially a trace). Let \(G_i\) and \(G_i^*\) be the \(i^{th}\) frame before and after execution of iteration j of the loop, respectively. PdrBlock blocks \(\lnot P_j\) at iteration j of the loop. Assume that \(\texttt {Inv}_2\) holds at the beginning of the loop. Then, \(G_i^* \Rightarrow G_i \wedge P_j\) since PdrBlock strengthens \(G_i\). Since \(G_j \Rightarrow G_i\) and \(G_i \Rightarrow G_{i+1}\), this simplifies to \(G_i^* \Rightarrow G_j \vee ( G_i \wedge I_{j+1} )\). Finally, since \(\varvec{G}\) is a trace, \(\texttt {Inv}_2\) holds at the end of the iteration.
\(\texttt {Inv}_2\) ensures that the trace given to PdrBlock at line 5 can be made safe relative to \(P_j\). From the post-condition of PdrBlock, it follows that at iteration j, \(G_{i+1}\) is strengthened to \(G_{i+1}^*\) such that \(G_{i+1}^* \Rightarrow P_j\) and \(\varvec{G}\) remains a monotone clausal trace. At the end of Phase 1, \([G_0,\ldots ,G_{i+1}]\) is a clausal monotone trace.
Interestingly, the calls to PdrBlock in this phase do not satisfy an expected pre-condition: the frame \(G_i\) in \([ Init ,G_i,G_{i+1}] \) might not be safe for property \(P_j\). However, we can see that \( Init \Rightarrow P_j\) and from \(\texttt {Inv}_2\), it is clear that \(P_j\) is inductive relative to \(G_i\). This is a sufficient precondition for PdrBlock.
Phase 2. This phase strengthens \(G_{i+1}\) using the interpolant \(I_{i+1}\). After Phase 2, \(G_{i+1}\) is k-inductive relative to \(F_i\).
Phase 3. Unlike Phase 1, \(G_{j+1}\) is computed at the \(j^{th}\) iteration. Because of this, the property \(P_j\) in this phase is slightly different than that of Phase 1. Correctness follows from invariant \(\texttt {Inv}_6\) that ensures that at iteration j, \(G_{j+1}\) can be made safe relative to \(P_j\). From the post-condition of PdrBlock, it follows that \(G_{j+1}\) is strengthened to \(G_{j+1}^*\) such that \(G_{j+1}^* \Rightarrow P_j\) and \(\varvec{G}\) is a monotone clausal trace. The invariant implies that at the end of the loop \(G_{N+1} \Rightarrow G_{N} \vee I_{N+1}\), making \(\varvec{G}\) safe. Thus, at the end of the loop \(\varvec{G}\) is a safe monotone clausal trace that is stronger than \(\varvec{F}\). What remains is to show is that \(G_{i+1}\) is k-inductive relative to \(F_i\).
Let \(\varphi \) be the formula from Lemma 2. Assuming that \(\textsc {PdrBlock} \) did no inductive generalization, Phase 1 maintains \(\texttt {Inv}^\dagger _3\), which states that at iteration j, PdrBlock strengthens frames \(\{G_m\}\), \(j < m \le (i+1)\). \(\texttt {Inv}^\dagger _3\) holds on loop entry, since initially \(\varvec{G}=\varvec{F}\). Let \(G_{m}\), \(G_{m}^*\) ( \(j < m \le (i+1)\) ) be frame m at the beginning and at the end of the loop iteration, respectively. In the loop, PdrBlock adds clauses that block \(\lnot P_j\). Thus, \(G_{m}^* \equiv G_{m} \wedge P_j \). Since \(G_j \Rightarrow G_{m}\), this simplifies to \(G^*_{m} \equiv G_{m} \wedge (G_{j} \vee I_{j+1})\). Expanding \(G_{m}\), we get \(G^*_{m} \equiv F_{m} \wedge \bigwedge _{\ell =i-k+1}^{j} \left( G_\ell \vee I_{\ell +1} \right) \). Thus, \(\texttt {Inv}^\dagger _3\) holds at the end of the loop.
In particular, after line 8, \(G_{i+1} \equiv F_{i+1} \wedge \bigwedge _{\ell =i-k+1}^{i} \left( G_\ell \vee I_{\ell +1} \right) \). Since \(\varphi \Rightarrow G_{i+1}\), \(G_{i+1}\) is k-inductive relative to \(F_i\).
Theorem 2
Given a safe trace \(\varvec{F}\) of size N and an SEL (ik) for \(\varvec{F}\), kAvyExtend returns a clausal monotone extension trace \(\varvec{G}\) of size \(N+1\). Furthermore, if \(\textsc {PdrBlock} \) does no inductive generalization then \(\varvec{G}\) is an (ik)-extension trace.
Of course, assuming that PdrBlock does no inductive generalization is not realistic. kAvyExtend remains correct without the assumption: it returns a trace \(\varvec{G}\) that is a monotone clausal extension of \(\varvec{F}\). However, \(\varvec{G}\) might be stronger than any (ik)-extension of \(\varvec{F}\). The invariants marked with \(^\dagger \) are then relaxed to their unmarked versions. Overall, inductive generalization improves kAvyExtend since it is not restricted to only a k-inductive strengthening.
Importantly, the output of kAvyExtend is a regular inductive trace. Thus, kAvyExtend is a procedure to strengthen a (relatively) k-inductive certificate to a (relatively) 1-inductive certificate. Hence, after kAvyExtend, any strategy for further generalization or trace extension from IC3, Pdr, or Avy is applicable.

4.2 Searching for the Maximal SEL

In this section, we describe two algorithms for computing the maximal SEL. Both algorithms can be used to implement line 5 of Algorithm 3. They perform a guided search for group minimal unsatisfiable subsets. They terminate when having fewer clauses would not increase the SEL further. The first, called top-down, starts from the largest unrolling of the \( Tr \) and then reduces the length of the unrolling. The second, called bottom-up, finds the largest (regular) extension level first, and then grows it using strong induction.
Top-Down SEL. A pair (ik) is the maximal SEL iff
$$\begin{aligned} i&= \max \; \{j \mid 0 \le j \le N \cdot Tr \llbracket {\varvec{F}}^{j}\rrbracket ^{j+1}\wedge Bad (\bar{v}_{N+1}) \Rightarrow \bot \} \\ k&= \min \; \{ \ell \mid 1 \le \ell \le (i+1) \cdot Tr \llbracket {\varvec{F}}^{i}\rrbracket ^{\ell }\wedge Bad (\bar{v}_{N+1}) \Rightarrow \bot \} \end{aligned}$$
Note that k depends on i. For a SEL \((i,k)\in \mathcal {K}(\varvec{F})\), we refer to the formula \( Tr [\varvec{F}^i]\) as a suffix and to number k as the depth of induction. Thus, the search can be split into two phases: (a) find the smallest suffix while using the maximal depth of induction allowed (for that suffix), and (b) minimizing the depth of induction k for the value of i found in step (a). This is captured in Algorithm 5. The algorithm requires at most \(( N+1 )\) sat queries. One downside, however, is that the formulas constructed in the first phase (line 3) are large because the depth of induction is the maximum possible.
Bottom-Up SEL. Algorithm 6 searches for a SEL by first finding a maximal regular extension level (line 2) and then searching for larger SELs (lines 6 to 10). Observe that if \((j,\ell ) \not \in \mathcal {K}(\varvec{F})\), then \(\forall p > j \cdot (p,\ell )\not \in \mathcal {K}(\varvec{F})\). This is used at line 7 to increase the depth of induction once it is known that \((j,\ell )\not \in \mathcal {K}(\varvec{F})\). On the other hand, if \((j,\ell )\in \mathcal {K}(\varvec{F})\), there might be a larger SEL \((j+1,\ell )\). Thus, whenever a SEL \((j,\ell )\) is found, it is stored in (ik) and the search continues (line 10). The algorithm terminates when there are no more valid SEL candidates and returns the last valid SEL. Note that \(\ell \) is incremented only when there does not exists a larger SEL with the current value of \(\ell \). Thus, for each valid level j, if there exists SELs with level j, the algorithm is guaranteed to find the largest such SEL. Moreover, the level is increased at every possible opportunity. Hence, at the end \((i,k) = \max \mathcal {K}(\varvec{F})\).
In the worst case, Algorithm 6 makes at most 3N sat queries. However, compared to Algorithm 5, the queries are smaller. Moreover, the computation is incremental and can be aborted with a sub-optimal solution after execution of line 5 or line 9. Note that at line 5, i is a regular extension level (i.e., as in Avy), and every execution of line 9 results in a larger SEL.

5 Evaluation

We implemented kAvy on top of the Avy Model Checker1. For line 5 of Algorithm 3 we used Algorithm 5. We evaluated kAvy ’s performance against a version of Avy [29] from the Hardware Model Checking Competition 2017 [5], and the Pdr engine of ABC [13]. We have used the benchmarks from HWMCC’14, ’15, and ’17. Benchmarks that are not solved by any of the solvers are excluded from the presentation. The experiments were conducted on a cluster running Intel E5-2683 V4 CPUs at 2.1 GHz with 8 GB RAM limit and 30 min time limit.
The results are summarized in Table 1. The HWMCC has a wide variety of benchmarks. We aggregate the results based on the competition, and also benchmark origin (based on the name). Some named categories (e.g., intel) include benchmarks that have not been included in any competition. The first column in Table 1 indicates the category. Total is the number of all available benchmarks, ignoring duplicates. That is, if a benchmark appeared in multiple categories, it is counted only once. Numbers in brackets indicate the number of instances that are solved uniquely by the solver. For example, kAvy solves 14 instances in oc8051 that are not solved by any other solver. The VBS column indicates the Virtual Best Solver—the result of running all the three solvers in parallel and stopping as soon as one solver terminates successfully.
Overall, kAvy solves more safe instances than both Avy and Pdr, while taking less time than Avy  (we report time for solved instances, ignoring timeouts). The VBS column shows that kAvy is a promising new strategy, significantly improving overall performance. In the rest of this section, we analyze the results in more detail, provide detailed run-time comparison between the tools, and isolate the effect of the new k-inductive strategy.
Table 1.
Summary of instances solved by each tool. Timeouts were ignored when computing the time column.
BENCHMARKS
kAvy
Avy
Pdr
VBS
safe
unsafe
Time(m)
safe
unsafe
Time(m)
safe
unsafe
Time(m)
safe
unsafe
HWMCC’ 17
137 (16)
38
499
128 (3)
38
406
109 (6)
40 (5)
174
150
44
HWMCC’ 15
193 (4)
84
412
191 (3)
92 (6)
597
194 (16)
67 (12)
310
218
104
HWMCC’ 14
49
27 (1)
124
58 (4)
26
258
55 (6)
19 (2)
172
64
29
intel
32 (1)
9
196
32 (1)
9
218
19
5 (1)
40
33
10
6s
73 (2)
20
157
81 (4)
21 (1)
329
67 (3)
14
51
86
21
nusmv
13
0
5
14
0
29
16 (2)
0
38
16
0
bob
30
5
21
30
6 (1)
30
30 (1)
8 (3)
32
31
9
pdt
45
1
54
45 (1)
1
57
47 (3)
1
62
49
1
oski
26
89 (1)
174
28 (2)
92 (4)
217
20
53
63
28
93
beem
10
1
49
10
2
32
20 (8)
7 (5)
133
20
7
oc8051
34 (14)
0
286
20
0
99
6 (1)
1 (1)
77
35
1
power
4
0
25
3
0
3
8 (4)
0
31
8
0
shift
5 (2)
0
1
1
0
18
3
0
1
5
0
necla
5
0
4
7 (1)
0
1
5 (1)
0
4
8
0
prodcell
0
0
0
0
1
28
0
4 (3)
2
0
4
bc57
0
0
0
0
0
0
0
4 (4)
9
0
4
Total
326 (19)
141 (1)
957
319 (8)
148 (6)
1041
304 (25)
117 (17)
567
370
167
To compare the running time, we present scatter plots comparing kAvy and Avy (Fig. 3a), and kAvy and Pdr (Fig. 3b). In both figures, kAvy is at the bottom. Points above the diagonal are better for kAvy. Compared to Avy, whenever an instance is solved by both solvers, kAvy is often faster, sometimes by orders of magnitude. Compared to Pdr, kAvy and Pdr perform well on very different instances. This is similar to the observation made by the authors of the original paper that presented Avy [29]. Another indicator of performance is the depth of convergence. This is summarized in Fig. 3d and e. kAvy often converges much sooner than Avy. The comparison with Pdr is less clear which is consistent with the difference in performance between the two. To get the whole picture, Fig. 2a presents a cactus plot that compares the running times of the algorithms on all these benchmarks.
To isolate the effects of k-induction, we compare kAvy to a version of kAvy with k-induction disabled, which we call vanilla. Conceptually, vanilla is similar to Avy since it extends the trace using a 1-inductive extension trace, but its implementation is based on kAvy. The results for the running time and the depth of convergence are shown in Fig. 3c and f, respectively. The results are very clear—using strong extension traces significantly improves performance and has non-negligible affect on depth of convergence.
Finally, we discovered one family of benchmarks, called shift, on which kAvy performs orders of magnitude better than all other techniques. The benchmarks come from encoding bit-vector decision problem into circuits [21, 30]. The shift family corresponds to deciding satisfiability of \((x+y)=(x<< 1)\) for two bit-vecors x and y. The family is parameterized by bit-width. The property is k-inductive, where k is the bit-width of x. The results of running Avy, Pdr, k-induction2, and kAvy are shown in Fig. 2b. Except for kAvy, all techniques exhibit exponential behavior in the bit-width, while kAvy remains constant. Deeper analysis indicates that kAvy finds a small inductive invariant while exploring just two steps in the execution of the circuit. At the same time, neither inductive generalization nor k-induction alone are able to consistently find the same invariant quickly.

6 Conclusion

In this paper, we present kAvy—an SMC algorithm that effectively uses k-inductive reasoning to guide interpolation and inductive generalization. kAvy searches both for a good inductive strengthening and for the most effective induction depth k. We have implemented kAvy on top of Avy Model Checker. The experimental results on HWMCC instances show that our approach is effective.
The search for the maximal SEL is an overhead in kAvy. There could be benchmarks in which this overhead outweighs its benefits. However, we have not come across such benchmarks so far. In such cases, kAvy can choose to settle for a sub-optimal SEL as mentioned in Sect. 4.2. Deciding when and how much to settle for remains a challenge.

Acknowledgements

We thank the anonymous reviewers and Oded Padon for their thorough review and insightful comments. This research was enabled in part by support provided by Compute Ontario (https://​computeontario.​ca/​), Compute Canada (https://​www.​computecanada.​ca/​) and the grants from Natural Sciences and Engineering Research Council Canada.
Open Access This chapter is licensed under the terms of the Creative Commons Attribution 4.0 International License (http://creativecommons.org/licenses/by/4.0/), which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license and indicate if changes were made.
The images or other third party material in this chapter are included in the chapter's Creative Commons license, unless indicated otherwise in a credit line to the material. If material is not included in the chapter's Creative Commons license and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder.
Footnotes
1
All code, benchmarks, and results are available at https://​arieg.​bitbucket.​io/​avy/​.
 
2
We used the k-induction engine ind in Abc [8].
 
Literature
2.
go back to reference Belov, A., Marques-Silva, J.: MUSer2: an efficient MUS extractor. JSAT 8(3/4), 123–128 (2012)MATH Belov, A., Marques-Silva, J.: MUSer2: an efficient MUS extractor. JSAT 8(3/4), 123–128 (2012)MATH
3.
go back to reference Berryhill, R., Ivrii, A., Veira, N., Veneris, A.G.: Learning support sets in IC3 and Quip: the good, the bad, and the ugly. In: 2017 Formal Methods in Computer Aided Design, FMCAD 2017, Vienna, Austria, 2–6 October 2017, pp. 140–147 (2017) Berryhill, R., Ivrii, A., Veira, N., Veneris, A.G.: Learning support sets in IC3 and Quip: the good, the bad, and the ugly. In: 2017 Formal Methods in Computer Aided Design, FMCAD 2017, Vienna, Austria, 2–6 October 2017, pp. 140–147 (2017)
5.
go back to reference Biere, A., van Dijk, T., Heljanko, K.: Hardware model checking competition 2017. In: Stewart, D., Weissenbacher, G. (eds.) 2017 Formal Methods in Computer Aided Design, FMCAD 2017, Vienna, Austria, 2–6 October 2017, p. 9. IEEE (2017) Biere, A., van Dijk, T., Heljanko, K.: Hardware model checking competition 2017. In: Stewart, D., Weissenbacher, G. (eds.) 2017 Formal Methods in Computer Aided Design, FMCAD 2017, Vienna, Austria, 2–6 October 2017, p. 9. IEEE (2017)
6.
10.
go back to reference Craig, W.: Three uses of the Herbrand-Gentzen theorem in relating model theory and proof theory. J. Symb. Log. 22(3), 269–285 (1957)MathSciNetCrossRef Craig, W.: Three uses of the Herbrand-Gentzen theorem in relating model theory and proof theory. J. Symb. Log. 22(3), 269–285 (1957)MathSciNetCrossRef
12.
go back to reference Eén, N., Mishchenko, A., Amla, N.: A single-instance incremental SAT formulation of proof- and counterexample-based abstraction. In: Proceedings of 10th International Conference on Formal Methods in Computer-Aided Design, FMCAD 2010, Lugano, Switzerland, 20–23 October, pp. 181–188 (2010) Eén, N., Mishchenko, A., Amla, N.: A single-instance incremental SAT formulation of proof- and counterexample-based abstraction. In: Proceedings of 10th International Conference on Formal Methods in Computer-Aided Design, FMCAD 2010, Lugano, Switzerland, 20–23 October, pp. 181–188 (2010)
13.
go back to reference Eén, N., Mishchenko, A., Brayton, R.K.: Efficient implementation of property directed reachability. In: International Conference on Formal Methods in Computer-Aided Design, FMCAD 2011, Austin, TX, USA, October 30–02 November 2011, pp. 125–134 (2011) Eén, N., Mishchenko, A., Brayton, R.K.: Efficient implementation of property directed reachability. In: International Conference on Formal Methods in Computer-Aided Design, FMCAD 2011, Austin, TX, USA, October 30–02 November 2011, pp. 125–134 (2011)
15.
go back to reference Gurfinkel, A., Ivrii, A.: Pushing to the top. In: Formal Methods in Computer-Aided Design, FMCAD 2015, Austin, Texas, USA, 27–30 September 2015, pp. 65–72 (2015) Gurfinkel, A., Ivrii, A.: Pushing to the top. In: Formal Methods in Computer-Aided Design, FMCAD 2015, Austin, Texas, USA, 27–30 September 2015, pp. 65–72 (2015)
16.
go back to reference Gurfinkel, A., Ivrii, A.: \(K\)-induction without unrolling. In: 2017 Formal Methods in Computer Aided Design, FMCAD 2017, Vienna, Austria, 2–6 October 2017, pp. 148–155 (2017) Gurfinkel, A., Ivrii, A.: \(K\)-induction without unrolling. In: 2017 Formal Methods in Computer Aided Design, FMCAD 2017, Vienna, Austria, 2–6 October 2017, pp. 148–155 (2017)
17.
go back to reference Heule, M., Hunt Jr., W.A., Wetzler, N.: Trimming while checking clausal proofs. In: Formal Methods in Computer-Aided Design, FMCAD 2013, Portland, OR, USA, 20–23 October 2013, pp. 181–188 (2013) Heule, M., Hunt Jr., W.A., Wetzler, N.: Trimming while checking clausal proofs. In: Formal Methods in Computer-Aided Design, FMCAD 2013, Portland, OR, USA, 20–23 October 2013, pp. 181–188 (2013)
19.
go back to reference Jovanovic, D., Dutertre, B.: Property-directed \(k\)-induction. In: 2016 Formal Methods in Computer-Aided Design, FMCAD 2016, Mountain View, CA, USA, 3–6 October 2016, pp. 85–92 (2016) Jovanovic, D., Dutertre, B.: Property-directed \(k\)-induction. In: 2016 Formal Methods in Computer-Aided Design, FMCAD 2016, Mountain View, CA, USA, 3–6 October 2016, pp. 85–92 (2016)
21.
go back to reference Kovásznai, G., Fröhlich, A., Biere, A.: Complexity of fixed-size bit-vector logics. Theory Comput. Syst. 59(2), 323–376 (2016)MathSciNetCrossRef Kovásznai, G., Fröhlich, A., Biere, A.: Complexity of fixed-size bit-vector logics. Theory Comput. Syst. 59(2), 323–376 (2016)MathSciNetCrossRef
25.
go back to reference McMillan, K.L.: Interpolation and model checking. In: Clarke, E., Henzinger, T., Veith, H., Bloem, R. (eds.) Handbook of Model Checking, pp. 421–446. Springer, Cham (2018)CrossRef McMillan, K.L.: Interpolation and model checking. In: Clarke, E., Henzinger, T., Veith, H., Bloem, R. (eds.) Handbook of Model Checking, pp. 421–446. Springer, Cham (2018)CrossRef
26.
go back to reference Mebsout, A., Tinelli, C.: Proof certificates for SMT-based model checkers for infinite-state systems. In: 2016 Formal Methods in Computer-Aided Design, FMCAD 2016, Mountain View, CA, USA, 3–6 October 2016, pp. 117–124 (2016) Mebsout, A., Tinelli, C.: Proof certificates for SMT-based model checkers for infinite-state systems. In: 2016 Formal Methods in Computer-Aided Design, FMCAD 2016, Mountain View, CA, USA, 3–6 October 2016, pp. 117–124 (2016)
28.
go back to reference Vizel, Y., Grumberg, O.: Interpolation-sequence based model checking. In: Proceedings of 9th International Conference on Formal Methods in Computer-Aided Design, FMCAD 2009, 15–18 November 2009, Austin, Texas, USA, pp. 1–8 (2009) Vizel, Y., Grumberg, O.: Interpolation-sequence based model checking. In: Proceedings of 9th International Conference on Formal Methods in Computer-Aided Design, FMCAD 2009, 15–18 November 2009, Austin, Texas, USA, pp. 1–8 (2009)
30.
go back to reference Vizel, Y., Nadel, A., Malik, S.: Solving linear arithmetic with SAT-based model checking. In: 2017 Formal Methods in Computer Aided Design, FMCAD 2017, Vienna, Austria, 2–6 October 2017, pp. 47–54 (2017) Vizel, Y., Nadel, A., Malik, S.: Solving linear arithmetic with SAT-based model checking. In: 2017 Formal Methods in Computer Aided Design, FMCAD 2017, Vienna, Austria, 2–6 October 2017, pp. 47–54 (2017)
Metadata
Title
Interpolating Strong Induction
Authors
Hari Govind Vediramana Krishnan
Yakir Vizel
Vijay Ganesh
Arie Gurfinkel
Copyright Year
2019
DOI
https://doi.org/10.1007/978-3-030-25543-5_21

Premium Partner