source: papers/FDL2012/framework.tex @ 76

Last change on this file since 76 was 76, checked in by ema, 12 years ago
File size: 11.9 KB
Line 
1The model-checking technique we propose is based on the Counterexample-guided
2Abstraction Refinement (CEGAR) methodology \cite{clarke00cegar}. The overall
3description of our methodology is shown in figure \ref{cegar}.
4We take into account the structure of the system as a set of synchronous components,
5each of which has been previously verified and a set of CTL properties is attached to each component. This set refers to the specification of the component. We would like to verify whether a concrete model, $M$ presumedly huge sized and composed of several components, satisfies a global ACTL property $\Phi$. Due to state space combinatorial explosion phenomenon that occurs when verifying huge and complex systems, an abstraction or approximation of the concrete model has to be done in order to be able to verify the system with model-checking techniques. Instead of building the product of the concrete components, we replace each concrete component by an abstraction of its behavior derived from a subset of the CTL properties it satisfies. Each abstract component represents an over-approximation of the set of behaviors of its related concrete component \cite{braunstein07ctl_abstraction}.
6
7%\subsection{Overall Description of our methodology}
8In CEGAR loop methodology, in order to verify a global property $\Phi$ on a
9concrete model $M$, an abstraction of the concrete model $\widehat{M}$ is
10generated and tested in the model-checker. As the abstract model is an
11over-approximation of the concrete model and the global property $\Phi$ is in the ACTL fragment, if $\Phi$ holds on the the abstract model then it holds in the concrete model as well \cite{clarke94model}. However, if $\Phi$ does not hold in the abstract model then one cannot conclude anything regarding the concrete model until the counterexample, $\sigma$, given by the model-checker has been analyzed.
12In this last case, the test of spurious counter-example is translated into a SAT problem \TODO{citer ref SAT spurious}. When a counterexample is proven to be spurious, the refinement phase occurs, injecting more preciseness into the (abstract) model to be analyzed.
13
14%\bigskip
15%\begin{definition}
16%The property to be verified, $\Phi$ is an ACTL formula. ACTL formulas
17%are CTL formulas with only universal path quantifiers: AX, AF, AG and AU.
18%\end{definition}
19
20%\begin{definition}
21%Given $\widehat{M} = (\widehat{AP}, \widehat{S}, \widehat{S}_0, \widehat{L}, \widehat{R}, \widehat{F})$ an abstract model of a concrete model, $M$ and $\Phi$, a global property to be verified on $M$, the model-checking result can be interpreted as follows:
22%
23%\begin{itemize}
24%\item{$\widehat{M} \vDash \Phi \Rightarrow M \vDash \Phi$ : verification completed }
25%\item{$\widehat{M} \nvDash \Phi$  and  $\exists \sigma$ : counterexample analysis required in order to determine whether $M \nvDash \Phi$ or $\widehat{M}$ is too coarse. }
26%\end{itemize}
27%\end{definition}
28
29%\bigskip
30%We can conclude that the property $\Phi$ doesn't hold in the concrete model $M$ if the counterexample path is possible in M. Otherwise the abstract model at step $i : \widehat{M}_i$, has to be refined if $\widehat{M}_i \nvDash \Phi$ and the counterexample obtained during model-checking was proven to be \emph{spurious}.
31
32\begin{figure}[h!]
33%   \centering
34%   \includegraphics[width=1.2\textwidth]{our_CEGAR_Loop_Enhanced_2S_PNG}
35%     \hspace*{-5mm}
36     \includegraphics{our_CEGAR_Loop_Enhanced_2S_PNG}
37   \caption{\label{cegar} Verification Process }
38\end{figure}
39
40\subsection{Concrete system definition}
41As mention earlier, in our verification methodology, we have a concrete model which consists of several components and each component comes with its specification or more precisely, properties that hold in the component. Given a global property $\Phi$, the property to be verified by the composition of the concrete components model, an abstract model is generated by selecting some of the properties of the components which are relevant to $\Phi$.
42
43
44The concrete system is a synchronous composition of components, each of which
45described as a Moore machine.
46\begin{definition}
47A \emph{Moore machine} $C$ is defined by a tuple $\langle I, O, R,$ $\delta, \lambda, \mathbf{R}_0 \rangle$, where,
48\begin{itemize}
49\item $I$ is a finite set of boolean inputs signals.
50\item $O$ is a finite set of boolean outputs signals.
51\item $R$ is a finite set of boolean sequential elements (registers).
52\item $\delta : 2^I \times 2^R \rightarrow 2^R$ is the transition function.
53\item $\lambda : 2^R \rightarrow 2^O$ is the output function.
54\item $\mathbf{R}_0 \subseteq 2^R$ is the set of initial states.
55\end{itemize}
56\end{definition}
57
58\emph{States} (or configurations) of the circuit correspond to boolean configurations of all the sequential elements.
59
60\begin{definition}
61A \emph{Concrete system} $M$ is obtained by synchronous composition of the
62component.\\
63$M = C_1 \parallel C_2 \parallel \ldots \parallel C_n$,where each $C_i$ is a
64Moore machine with a specification associated $\varphi_i = \{\varphi_i^1 \ldots
65\varphi_i^k\}$ Each $\varphi_i^j$ is a CTL$\setminus$X formula whose
66propositions $AP$ belong to $\{I_i\cup O_i\cup R_i\}$ .
67\end{definition}
68
69\subsection{Abstraction definition}
70
71Our abstraction consists in reducing the size of the representation model by
72letting free some of its variables. The point is to determine the good set of variable
73to be freed and when to free them. We take advantage of the CTL specification
74of each component: a CTL property may be seen as a partial view of the tree of
75behaviors of its variables. All the variables not specified by the property
76can be freed. We introduced the Abstract Kripke Structure (AKS for short) which exactly
77specifies when the variable of the property can be freed.
78The abstraction of a component is represented by an AKS,
79derived from a subset of the CTL properties the component satisfies.
80Roughly speaking, AKS($\varphi$), the AKS derived from a CTL property
81$\varphi$, simulates all execution trees whose initial state satisfies
82$\varphi$. In AKS($\varphi$), states are tagged with the truth values of
83$\varphi$'s atomic propositions, among the four truth values of Belnap's logic \cite{belnap77}: inconsistent ($\bot$),
84false ($\mathbf{f}$), true ($\mathbf{t}$) and unknown ($\top$)).
85States with inconsistent truth values are not represented since they refer to non possible
86assignments of the atomic propositions. A set of fairness constraints eliminates non-progress cycles.
87
88
89%Assume that we have an abstract Kripke structure (AKS) representing the abstract model $\widehat{M}$ of the concrete model of the system M with regard to the property to be verified, $\Phi$. The abstraction method is based on the work described in \cite{ braunstein07ctl_abstraction}.
90
91\begin{definition}{\label{def-aks}}
92Given a CTL$\setminus$X property $\varphi$ whose set of atomic propositions is
93$AP$, An \emph{Abstract Kripke Structure}, $AKS(\varphi) =(AP, \widehat{S}, \widehat{S}_0, \widehat{L}, \widehat{R}, \widehat{F})$ is a 6-tuple consisting of:
94
95\begin{itemize}
96\item { $AP$ : The finite set of atomic propositions of property $\varphi$ }   
97\item { $\widehat{S}$ : a finite set of states}
98\item { $\widehat{S}_0 \subseteq \widehat{S}$ : a set of initial states}
99\item { $\widehat{L} : \widehat{S} \rightarrow \cal{B}^{\mid AP \mid}$ with $\cal{B} = \{\bot, \mathbf{f}, \mathbf{t},\top\}$: a labeling function which labels each state with configuration of current value of each atomic proposition.}
100\item { $\widehat{R} \subseteq \widehat{S} \times \widehat{S}$ : a transition relation where $ \forall s \in \widehat{S}, \exists s' \in \widehat{S}$ such that $(s,s') \in \widehat{R}$ }
101\item { $\widehat{F}$ : a set of fairness constraints (generalized B\"uchi
102acceptance condition)}
103\end{itemize}
104\end{definition}
105%\bigskip
106
107We denote by $\widehat{L}(s)$ the configuration of atomic propositions in state $s$ and by $\widehat{L}(s)[p]$ the projection of configuration $\widehat{L}(s)$ according to atomic proposition $p$.
108
109As the abstract model $\widehat{M}$ is generated from the conjunction of verified properties of the components in the concrete model $M$, it can be seen as the composition of the AKS of each property.
110The AKS composition has been defined in \cite{braunstein_phd07}; it extends
111the classical synchronous composition of Moore machine to deal with
112four-valued variables.
113%\bigskip
114
115\begin{definition} An \emph{Abstract model} $\widehat{M}$is obtained by
116synchronous composition of components abstractions. Let $n$ be the number of components in the model and $m$ be the number of selected verified properties of a component;
117let $C_j$ be a component of the concrete model $M$ and $\varphi_{j}^k$ is a CTL formula describing a satisfied property of component $C_j$. Let $AKS (\varphi_{C_j^k})$ the AKS generated from $\varphi_j^k$. We have $\forall j \in [1,n]$ and $\forall k \in [1,m]$:
118
119\begin{itemize}
120\item{$ \widehat{C}_j = AKS (\varphi_{C_j^1}) ~||~ AKS (\varphi_{C_j^2} ) ~||~...~||~ AKS (\varphi_{C_j^k}) ~||$\\ $ ...~||~ AKS (\varphi_{C_j^m}) $}
121\item{$ \widehat{M} = \widehat{C}_1 ~||~ \widehat{C}_2 ~||~ ... ~||~ \widehat{C}_j ~||~... ~||~ \widehat{C}_n $}
122\end{itemize}
123
124\end{definition}
125
126
127The generation of an abstract model in the form of AKS from CTL formulas is described in \cite{braunstein07ctl_abstraction} and has been implemented (\cite{bara08abs_composant}).
128
129
130%\subsection{Characterization of AKS}
131
132In an abstract Kripke structure a state where a variable $p$ is {\it unknown}
133can simulate all states in which $p$ is either true or false. It
134is a concise representation of the set of more concrete states in which $p$
135is either true or false.  A state $s$ is said to be an \emph{abstract state}
136if one its variable $p$ is {\it unknown}.
137
138%\begin{definition}
139%A state $s$ is an {\emph abstract state} if one its variable $p$ is {\it unknown}.
140%\end{definition}
141
142\begin{definition}[]
143The \emph {concretization} of an abstract state $s$ with respect to the variable $p$
144({\it unknown} in that state), assigns either true or false to $p$.
145
146The \emph {abstraction} of a state $s$ with respect to the variable $p$
147(either true or false in that state), assigns  {\it unknown} to $p$.
148\end{definition}
149
150\begin{property}
151Let $A_i$ and $A_j$ two abstractions such that $A_j$ is obtained by concretizing one abstract variable of $A_i$ (resp $A_i$ is obtained by abstracting one variable in $A_j$). Then $A_i$ simulates $A_j$, denoted by $A_j \sqsubseteq A_i$.
152\end{property}
153\begin{proof}
154As the concretization of state reduces the set of concrete configuration the
155abstract state represents but does not affect the transition relation of the
156AKS. The unroll execution tree of $A_j$ is a subtree of the one of $A_i$. Then  $A_i$ simulates $A_j$.
157\end{proof}
158
159\TODO{Name the simulation/concretization relation}
160
161\subsection{Initial abstraction}
162We suppose that our concrete model is a composition of several components and
163each component has been previously verified. Hence, we have a set of verified
164properties for each component of the concrete model. The main idea of this
165technique is that we would like to make use of these properties to generate a
166better abstract model. Properties of the components that appear to be related
167to the global property to be verified, $\Phi$ are selected to generate the
168abstract model $\widehat{M}_i$. This method is particularly interesting as it
169gives a possibility to converge quicker to an abstract model that is
170sufficient to satisfy the global property $\Phi$.
171In the following, we will name primary variables the set of variable that
172appears in the global property.
173
174In the initial abstraction generation, all primary variables have to be
175represented. Therefore the properties in the specification of each component
176where the primary variables are present will be used to generate the initial
177abstraction, $\widehat{M}_0$ and we will verify the satisfiability of the
178global property $\Phi$ on this abstract model. If the model-checking failed and the counterexample given is found to be spurious, we will then proceed with the refinement process.
179
180
Note: See TracBrowser for help on using the repository browser.