Counterexample-Guided Abstraction Refinement

Size: px
Start display at page:

Download "Counterexample-Guided Abstraction Refinement"

Transcription

1 Counterexample-Guided Abstraction Refinement Edmund Clarke Orna Grumberg Somesh Jha Yuan Lu Helmut Veith Seminal Papers in Verification (Reading Group) June 2012 O. Rezine () Verification Reading Group 1 / 33

2 Motivations: Apply model checking to industrial problems. Main challenge: State explosion. How to tackle that: Use BDD (10 20 states), Symmetry Reductions, POR,... Abstraction Techniques. O. Rezine () Verification Reading Group 2 / 33

3 Abstraction Techniques: Idea: Remove details, simplify components that are irrelevant. Concrete model Abstract model. The abstract model is smaller Easier to verify. It comes with an information loss: Over-approximation comes with False negatives. Under-approximation comes with False positives. O. Rezine () Verification Reading Group 3 / 33

4 CounterExample Guided Abstraction Refinement: Integrates: Symbolic model checking. Over-approximation abstraction. It comes with false negatives. Fully automatic, including abstraction refinement. O. Rezine () Verification Reading Group 4 / 33

5 CEGAR general scheme Model extraction: Initial abstraction. Model-Check the Abstract Model. If no bug is found: The concrete Model is safe. If a counterexample is found: Is it a concrete one? Yes. Happy end. No. Refine the abstraction and model-check again. O. Rezine () Verification Reading Group 5 / 33

6 Summary: We talked so far about: Motivations behind CEGAR. General scheme of the approach. Now we will talk about: Abstraction validity. Initial (abstract) model extraction. Algorithms used to: Check validity of the counterexample. Refine the abstraction. Later we will present extensions and use of CEGAR approach. O. Rezine () Verification Reading Group 6 / 33

7 Existential abstraction definition: Formally, a program P can be modeled as a Kripke structure (S, I, R, L) where: S is the set of states. I S is the set of initial states. R S S is the transition relation. L : S 2 Atoms(P) is the state labeling function. Atoms(P) being the set of atomic propositions of the the program P. O. Rezine () Verification Reading Group 7 / 33

8 Existential abstraction definition: An abstraction is a surjection h : D D that induces an equivalence relation: d e iff h(d) = h(e) The corresponding abstract Kripke tructure (Ŝ, Î, R, L) is: Ŝ = h(s). Î ( d) iff d I such that h(d) = d R( d 1, d 2 ) iff d 1, d 2 S such that (h(d 1 ) = d 1 h(d 2 ) = d 2 R(d 1, d 2 )) L( d) = h(d)= d L(d) This is called the Existential Abstraction. O. Rezine () Verification Reading Group 8 / 33

9 Abstraction Validity: An atomic formula f respects an abstraction h iff: d 1, d 2 D we have: d 1 d 2 (d 1 = f d 2 = f ) For an abstract state d we say that L( d) is consistent iff: d D such that h(d) = d we have: d = f L( d) f O. Rezine () Verification Reading Group 9 / 33

10 Abstraction Validity: ACTL is the fragment of CTL that: Contains only A as path operator (no E). The only negations it contains concerns the atomic propositions. Exmaple: A F p. Theorem Let h be an abstraction and ϕ be an ACTL specification where the atomic subformulas respect h. then the following holds: L( d) is consistent for all abstract state d in M. M = ϕ M = ϕ O. Rezine () Verification Reading Group 10 / 33

11 CEGAR general scheme Model extraction: Initial abstraction. Model-Check the Abstract Model. If no bug is found: The concrete Model is safe. If a counterexample is found: Is it a concrete one? Yes. Happy end. No. Refine the abstraction and model-check again. O. Rezine () Verification Reading Group 11 / 33

12 Example: We will model a program P using transition blocks associated to its variables. 1 init (x) := 0; next (x) := case 3 reset = TRUE : 0; x<y : x +1; 5 x=y : 0; else : x; 7 esac ; init (y) := 1; 9 next (y) := case reset = TRUE : 0; 11 (x=y) &&!(y=2) : x +1; x=y : 0; 13 else : y; esac ; O. Rezine () Verification Reading Group 12 / 33

13 Model Extraction: We construct the initial abstraction such that: How to: d 1, d 2 such that d 1 d 2 we have f Atoms(P) d 1 = f d 2 = f Define formula clusters FC i of formulas dealing with the same variable set. Define the corresponding variable clusters VC i. For each variable cluster, define an abstraction whose abstract states are consistent with the cluster formulas. Cross-product all the cluster abstractions to obtain The abstraction. O. Rezine () Verification Reading Group 13 / 33

14 Example: We will model a program P using transition blocks associated to its variables. 1 init (x) := 0; next (x) := case 3 reset = TRUE : 0; x<y : x +1; 5 x=y : 0; else : x; 7 esac ; init (y) := 1; 9 next (y) := case reset = TRUE : 0; 11 (x=y) &&!(y=2) : x +1; x=y : 0; 13 else : y; esac ; O. Rezine () Verification Reading Group 14 / 33

15 Model Extraction: Atoms(P) = {(reset=true), (x=y), (x<y), (y=2)} = FC 1 FC 2. VC 1 = {reset}, VC 2 ={x,y}. FC 1 equivalence classes: FC 2 equivalence classes: {0} {} {1} {reset} {(0, 0), (1, 1)} {(x = y)} {(0, 1)} {(x < y), } {(0, 2), (1, 2)} {(x < y), (y = 2)} {(1, 0), (2, 0), (2, 1)} {} {(2, 2)} {(x = y), (y = 2)} O. Rezine () Verification Reading Group 15 / 33

16 Model Extraction: Concrete State Space X, reset=false X, reset=true Y 1 start 2 O. Rezine () Verification Reading Group 16 / 33

17 Model Extraction: Concrete Transition Relation X, reset=false X, reset=true Y 1 start 2 O. Rezine () Verification Reading Group 17 / 33

18 Model Extraction: Abstract State Space X, reset=false X, reset=true Y 1 start 2 O. Rezine () Verification Reading Group 18 / 33

19 Model Extraction: Abstract Transition Relation X, reset=false X, reset=true Y 1 start 2 O. Rezine () Verification Reading Group 19 / 33

20 CEGAR general scheme Model extraction: Initial abstraction. Model-Check the Abstract Model. If no bug is found: The concrete Model is safe. If a counterexample is found: Is it a concrete one? Yes. Happy end. No. Refine the abstraction and model-check again. O. Rezine () Verification Reading Group 20 / 33

21 Checking finite counterexample: s i S i. By the definition of h 1 ( T ), s i+1 Img(s i, R) and s i+1 h 1 (ŝ i+1 ). O. Rezine () Verification Reading Group 21 / 33 Counterexample T = ŝ 1,..., ŝ n. Concrete traces are given by: Counterexample-Guided { s 1,..., s n Abstraction n i=1 h(s i) = Refinement ŝ i I (s 1 ) n 1 i=1 R(s i, s i+1 ) } 773 FIG. 6. An abstract counterexample.

22 Checking finite counterexample: SplitPATH: Symbolic algorithm to compute concrete paths: S := h 1 (ŝ 1 ) I j := 1 while ( S and j < n ) { j := j + 1; S prev := S S := Img(S, R) h 1 (ŝ j ) } if S then output counterexample // > Happy end. else output j,s prev // > Move to the refinement step. O. Rezine () Verification Reading Group 22 / 33

23 Checking infinite counterexample: Counterexample T = ŝ 1,..., ŝ i ŝ i+1,..., ŝ n ω. Example: FIG. 7. SplitPATH checks if an abstract path is spurious. ŝ 1 ŝ 2, ŝ 3 ω Unwinding: For one abstractfig. loop 8. we A loop get: counterexample, and its unwinding. Many concrete loops with different sizes. ŝ n. Since this case is more complicated than the path counterexamples, we first present Different an example start in which points. some of the typical situations occur. Example We consider a loop ŝ 1 ŝ 2, ŝ 3 ω as shown in Figure 8. In order to find out if the abstract loop corresponds to concrete loops, we unwind the O. Rezine () Verification Reading Group 23 / 33

24 Checking infinite counterexample: Also, the unwinding become eventually periodic. Question: How many unwindings are necessary to check the abstract loop? Theorem The following are equivalent: T corresponds to a concrete counterexample. h 1 path ( T unwind ) is not empty. Where: T = ŝ 1,..., ŝ i ŝ i+1,..., ŝ n ω T unwind = ŝ 1,..., ŝ i ŝ i+1,..., ŝ n min min = min i+1 j n h 1 (ŝ j ) We can use SplitPATH to check T unwind O. Rezine () Verification Reading Group 24 / 33

25 CEGAR general scheme Model extraction: Initial abstraction. Model-Check the Abstract Model. If no bug is found: The concrete Model is safe. If a counterexample is found: Is it a concrete one? Yes. Happy end. No. Refine the abstraction and model-check again. O. Rezine () Verification Reading Group 25 / 33

26 Abstraction Refinement: We consider here only finite path counterexample. Let s recall SplitPATH algorithm: S := h 1 (ŝ 1 ) I j := 1 while ( S and j < n ) { j := j + 1; S prev := S S := Img(S, R) h 1 (ŝ j ) } if S then output counterexample // > Happy end. else output j,s prev // > Move to the refinement step. O. Rezine () Verification Reading Group 26 / 33

27 Abstraction Refinement: There exist i, such that S i h 1 (ŝ i ), Img(S i, R) h 1 (ŝ i+1 ) = ands i reachable from h 1 (ŝ 1 ) I We partition h 1 (ŝ i ) into three subsets: S i,0 = S i S i,1 = {s h 1 (ŝ i ) s h 1 (ŝ i+1 ).R(s, s )} Counterexample-Guided S i,x = h 1 (ŝ i )\(SAbstraction i,0 S i,1 ) Refinement 773 FIG. 6. An abstract counterexample. O. Rezine () Verification Reading Group 27 / 33

28 Abstraction Refinement: Abstraction defined by h 1 (ŝ) = E 1... E m, m being the number of variable clusters. We need to separate S i,o and S i,1 by refining our abstraction, i.e. refining the equivalence classes j, 1 j m. Objective: Maintain the smallest possible abstraction. Theorem The problem of finding the coarsest refinement is NP-hard. When S i,x =, the problem can be solved in polynomial time. O. Rezine () Verification Reading Group 28 / 33

29 Abstraction Refinement: Abstraction refining algorithm: for j := 1 to m { j := j for every a, b E j { if proj(s i,0, j, a) proj(s i,0, j, b) then j := j \{(a, b)} } } Where proj(s i,0, j, a) proj(s i,0, j, b) means that: (d 1,..., d j, d j+1,..., d m ) such that: (d 1,..., d j, a, d j+1,..., d m ) S i,0 (d 1,..., d j, b, d j+1,..., d m ) / S i,0 O. Rezine () Verification Reading Group 29 / 33

30 Abstraction Refinement: Abstraction refining algorithm: for j := 1 to m { j := j for every a, b E j { if proj(s i,0, j, a) proj(s i,0, j, b) then j := j \{(a, b)} } } Lemma When S i,x = the relation j computed by PolyRefine is an equivalence relation which refines j and separates S i.0 and S i,1. Furthermore, the equivalence relation j is the coarsest refinement of j O. Rezine () Verification Reading Group 30 / 33

31 Abstraction Refinement: Theorem Given a model M and an ACTL specification ϕ whose counterexample is either path or loop, CEGAR will find a model M such that M = ϕ M = ϕ O. Rezine () Verification Reading Group 31 / 33

32 Extensions and tools: CEGAR has been implemented in many tools such as Blast, Moped.. It has been also enriched with: Use of SAT Solvers instead of OBDD. Use of Inerpolants in order to refine the abstraction. Has been also applied for infinite state systems... O. Rezine () Verification Reading Group 32 / 33

33 Thanks for your attention. O. Rezine () Verification Reading Group 33 / 33

Counterexample-GuidedAbstraction Refinement

Counterexample-GuidedAbstraction Refinement Counterexample-GuidedAbstraction Refinement Edmund Clarke 1, Orna Grumberg 2, Somesh Jha 1, Yuan Lu 1, and Helmut Veith 1,3 1 Carnegie Mellon University, Pittsburgh, USA 2 Technion, Haifa, Israel 3 Vienna

More information

Software Verification using Predicate Abstraction and Iterative Refinement: Part 1

Software Verification using Predicate Abstraction and Iterative Refinement: Part 1 using Predicate Abstraction and Iterative Refinement: Part 1 15-414 Bug Catching: Automated Program Verification and Testing Sagar Chaki November 28, 2011 Outline Overview of Model Checking Creating Models

More information

Abstractions and Decision Procedures for Effective Software Model Checking

Abstractions and Decision Procedures for Effective Software Model Checking Abstractions and Decision Procedures for Effective Software Model Checking Prof. Natasha Sharygina The University of Lugano, Carnegie Mellon University Microsoft Summer School, Moscow, July 2011 Lecture

More information

3-Valued Abstraction-Refinement

3-Valued Abstraction-Refinement 3-Valued Abstraction-Refinement Sharon Shoham Academic College of Tel-Aviv Yaffo 1 Model Checking An efficient procedure that receives: A finite-state model describing a system A temporal logic formula

More information

Predicate Abstraction: A Tutorial

Predicate Abstraction: A Tutorial Predicate Abstraction: A Tutorial Predicate Abstraction Daniel Kroening May 28 2012 Outline Introduction Existential Abstraction Predicate Abstraction for Software Counterexample-Guided Abstraction Refinement

More information

Progress on the State Explosion Problem in Model Checking

Progress on the State Explosion Problem in Model Checking Progress on the State Explosion Problem in Model Checking Edmund Clarke 1, Orna Grumberg 2, Somesh Jha 3,YuanLu 4, and Helmut Veith 5 1 School of Computer Science, Carnegie Mellon University, USA edmundclarke@cscmuedu

More information

Counterexample-Guided Abstraction Refinement for Symbolic Model Checking

Counterexample-Guided Abstraction Refinement for Symbolic Model Checking Counterexample-Guided Abstraction Refinement for Symbolic Model Checking EDMUND CLARKE Carnegie Mellon University, Pittsburgh, Pennsylvania ORNA GRUMBERG The Technion, Haifa, Israel SOMESH JHA YUAN LU

More information

Model Checking: An Introduction

Model Checking: An Introduction Model Checking: An Introduction Meeting 3, CSCI 5535, Spring 2013 Announcements Homework 0 ( Preliminaries ) out, due Friday Saturday This Week Dive into research motivating CSCI 5535 Next Week Begin foundations

More information

ABSTRACTIONS AND REDUCTIONS IN MODEL CHECKING ORNA GRUMBERG. Computer Science Department. The Technion. Israel

ABSTRACTIONS AND REDUCTIONS IN MODEL CHECKING ORNA GRUMBERG. Computer Science Department. The Technion. Israel ABSTRACTIONS AND REDUCTIONS IN MODEL CHECKING ORNA GRUMBERG Computer Science Department The Technion Haifa 32000 Israel Abstract. We introduce the basic concepts of temporal logic model checking and its

More information

CEGAR:Counterexample-Guided Abstraction Refinement

CEGAR:Counterexample-Guided Abstraction Refinement CEGAR: Counterexample-guided Abstraction Refinement Sayan Mitra ECE/CS 584: Embedded System Verification November 13, 2012 Outline Finite State Systems: Abstraction Refinement CEGAR Validation Refinment

More information

Algorithmic verification

Algorithmic verification Algorithmic verification Ahmed Rezine IDA, Linköpings Universitet Hösttermin 2018 Outline Overview Model checking Symbolic execution Outline Overview Model checking Symbolic execution Program verification

More information

Bounded Model Checking with SAT/SMT. Edmund M. Clarke School of Computer Science Carnegie Mellon University 1/39

Bounded Model Checking with SAT/SMT. Edmund M. Clarke School of Computer Science Carnegie Mellon University 1/39 Bounded Model Checking with SAT/SMT Edmund M. Clarke School of Computer Science Carnegie Mellon University 1/39 Recap: Symbolic Model Checking with BDDs Method used by most industrial strength model checkers:

More information

Learning Abstractions for Model Checking

Learning Abstractions for Model Checking Learning Abstractions for Model Checking Anubhav Gupta June 2006 CMU-CS-06-131 School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213 Submitted in partial fulfillment of the requirements

More information

Lecture 2: Symbolic Model Checking With SAT

Lecture 2: Symbolic Model Checking With SAT Lecture 2: Symbolic Model Checking With SAT Edmund M. Clarke, Jr. School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213 (Joint work over several years with: A. Biere, A. Cimatti, Y.

More information

Symbolic Trajectory Evaluation (STE): Orna Grumberg Technion, Israel

Symbolic Trajectory Evaluation (STE): Orna Grumberg Technion, Israel Symbolic Trajectory Evaluation (STE): Automatic Refinement and Vacuity Detection Orna Grumberg Technion, Israel Marktoberdort 2007 1 Agenda Model checking Symbolic Trajectory Evaluation Basic Concepts

More information

Automata-based Verification - III

Automata-based Verification - III COMP30172: Advanced Algorithms Automata-based Verification - III Howard Barringer Room KB2.20: email: howard.barringer@manchester.ac.uk March 2009 Third Topic Infinite Word Automata Motivation Büchi Automata

More information

Formal Verification Techniques. Riccardo Sisto, Politecnico di Torino

Formal Verification Techniques. Riccardo Sisto, Politecnico di Torino Formal Verification Techniques Riccardo Sisto, Politecnico di Torino State exploration State Exploration and Theorem Proving Exhaustive exploration => result is certain (correctness or noncorrectness proof)

More information

Double Header. Model Checking. Model Checking. Overarching Plan. Take-Home Message. Spoiler Space. Topic: (Generic) Model Checking

Double Header. Model Checking. Model Checking. Overarching Plan. Take-Home Message. Spoiler Space. Topic: (Generic) Model Checking Double Header Model Checking #1 Two Lectures Model Checking SoftwareModel Checking SLAM and BLAST Flying Boxes It is traditional to describe this stuff (especially SLAM and BLAST) with high-gloss animation

More information

SAT-based Model Checking: Interpolation, IC3, and Beyond

SAT-based Model Checking: Interpolation, IC3, and Beyond SAT-based Model Checking: Interpolation, IC3, and Beyond Orna GRUMBERG a, Sharon SHOHAM b and Yakir VIZEL a a Computer Science Department, Technion, Haifa, Israel b School of Computer Science, Academic

More information

Undergraduate work. Symbolic Model Checking Using Additive Decomposition by. Himanshu Jain. Joint work with Supratik Chakraborty

Undergraduate work. Symbolic Model Checking Using Additive Decomposition by. Himanshu Jain. Joint work with Supratik Chakraborty Undergraduate work Symbolic Model Checking Using Additive Decomposition by Himanshu Jain Joint work with Supratik Chakraborty Organization of the Talk Basics Motivation Related work Decomposition scheme

More information

Automata-based Verification - III

Automata-based Verification - III CS3172: Advanced Algorithms Automata-based Verification - III Howard Barringer Room KB2.20/22: email: howard.barringer@manchester.ac.uk March 2005 Third Topic Infinite Word Automata Motivation Büchi Automata

More information

Lecture Notes on Software Model Checking

Lecture Notes on Software Model Checking 15-414: Bug Catching: Automated Program Verification Lecture Notes on Software Model Checking Matt Fredrikson André Platzer Carnegie Mellon University Lecture 19 1 Introduction So far we ve focused on

More information

Comp487/587 - Boolean Formulas

Comp487/587 - Boolean Formulas Comp487/587 - Boolean Formulas 1 Logic and SAT 1.1 What is a Boolean Formula Logic is a way through which we can analyze and reason about simple or complicated events. In particular, we are interested

More information

Ranked Predicate Abstraction for Branching Time. Complete, Incremental, and Precise

Ranked Predicate Abstraction for Branching Time. Complete, Incremental, and Precise : Complete, Incremental, and Precise Harald Fecher 1 Michael Huth 2 1 Christian-Albrechts-University at Kiel, Germany 2 Imperial College London, United Kingdom Beijing, ATVA 2006 Main Issues Foundation

More information

Software Verification with Abstraction-Based Methods

Software Verification with Abstraction-Based Methods Software Verification with Abstraction-Based Methods Ákos Hajdu PhD student Department of Measurement and Information Systems, Budapest University of Technology and Economics MTA-BME Lendület Cyber-Physical

More information

Information Flow Analysis via Path Condition Refinement

Information Flow Analysis via Path Condition Refinement Information Flow Analysis via Path Condition Refinement Mana Taghdiri, Gregor Snelting, Carsten Sinz Karlsruhe Institute of Technology, Germany FAST September 16, 2010 KIT University of the State of Baden-Wuerttemberg

More information

ESE601: Hybrid Systems. Introduction to verification

ESE601: Hybrid Systems. Introduction to verification ESE601: Hybrid Systems Introduction to verification Spring 2006 Suggested reading material Papers (R14) - (R16) on the website. The book Model checking by Clarke, Grumberg and Peled. What is verification?

More information

Verification using Satisfiability Checking, Predicate Abstraction, and Craig Interpolation. Himanshu Jain THESIS ORAL TALK

Verification using Satisfiability Checking, Predicate Abstraction, and Craig Interpolation. Himanshu Jain THESIS ORAL TALK Verification using Satisfiability Checking, Predicate Abstraction, and Craig Interpolation Himanshu Jain THESIS ORAL TALK 1 Computer Systems are Pervasive Computer Systems = Software + Hardware Software/Hardware

More information

Computation Tree Logic (CTL) & Basic Model Checking Algorithms

Computation Tree Logic (CTL) & Basic Model Checking Algorithms Computation Tree Logic (CTL) & Basic Model Checking Algorithms Martin Fränzle Carl von Ossietzky Universität Dpt. of Computing Science Res. Grp. Hybride Systeme Oldenburg, Germany 02917: CTL & Model Checking

More information

Chapter 4: Computation tree logic

Chapter 4: Computation tree logic INFOF412 Formal verification of computer systems Chapter 4: Computation tree logic Mickael Randour Formal Methods and Verification group Computer Science Department, ULB March 2017 1 CTL: a specification

More information

MODEL CHECKING. Arie Gurfinkel

MODEL CHECKING. Arie Gurfinkel 1 MODEL CHECKING Arie Gurfinkel 2 Overview Kripke structures as models of computation CTL, LTL and property patterns CTL model-checking and counterexample generation State of the Art Model-Checkers 3 SW/HW

More information

Property Checking of Safety- Critical Systems Mathematical Foundations and Concrete Algorithms

Property Checking of Safety- Critical Systems Mathematical Foundations and Concrete Algorithms Property Checking of Safety- Critical Systems Mathematical Foundations and Concrete Algorithms Wen-ling Huang and Jan Peleska University of Bremen {huang,jp}@cs.uni-bremen.de MBT-Paradigm Model Is a partial

More information

Finite-State Model Checking

Finite-State Model Checking EECS 219C: Computer-Aided Verification Intro. to Model Checking: Models and Properties Sanjit A. Seshia EECS, UC Berkeley Finite-State Model Checking G(p X q) Temporal logic q p FSM Model Checker Yes,

More information

Computation Tree Logic

Computation Tree Logic Computation Tree Logic Hao Zheng Department of Computer Science and Engineering University of South Florida Tampa, FL 33620 Email: zheng@cse.usf.edu Phone: (813)974-4757 Fax: (813)974-5456 Hao Zheng (CSE,

More information

Detecting Spurious Counterexamples Efficiently in Abstract Model Checking

Detecting Spurious Counterexamples Efficiently in Abstract Model Checking Detecting Spurious Counterexamples Efficiently in Abstract Model Checking Cong Tian and Zhenhua Duan ICTT and ISN Laboratory, Xidian University, Xi an, 710071, P.R. China {ctian, zhhduan}@mail.xidian.edu.cn

More information

Temporal Logic. Stavros Tripakis University of California, Berkeley. We have designed a system. We want to check that it is correct.

Temporal Logic. Stavros Tripakis University of California, Berkeley. We have designed a system. We want to check that it is correct. EE 244: Fundamental Algorithms for System Modeling, Analysis, and Optimization Fall 2016 Temporal logic Stavros Tripakis University of California, Berkeley Stavros Tripakis (UC Berkeley) EE 244, Fall 2016

More information

Model Checking Algorithms

Model Checking Algorithms Model Checking Algorithms Bow-Yaw Wang Institute of Information Science Academia Sinica, Taiwan November 14, 2018 Bow-Yaw Wang (Academia Sinica) Model Checking Algorithms November 14, 2018 1 / 56 Outline

More information

The research thesis was done under the supervision of Prof. Orna Grumberg, in the Faculty of Computer Science, the Technion - Israel Institute of Tech

The research thesis was done under the supervision of Prof. Orna Grumberg, in the Faculty of Computer Science, the Technion - Israel Institute of Tech Techniques for increasing Coverage of Formal Verification Research Thesis Submitted in partial fulfillment of the requirements for the degree of Master of Science in Computer Science Sagi Katz Submitted

More information

Overview. overview / 357

Overview. overview / 357 Overview overview6.1 Introduction Modelling parallel systems Linear Time Properties Regular Properties Linear Temporal Logic (LTL) Computation Tree Logic syntax and semantics of CTL expressiveness of CTL

More information

Reducing CTL-live Model Checking to Semantic Entailment in First-Order Logic (Version 1)

Reducing CTL-live Model Checking to Semantic Entailment in First-Order Logic (Version 1) 1 Reducing CTL-live Model Checking to Semantic Entailment in First-Order Logic (Version 1) Amirhossein Vakili and Nancy A. Day Cheriton School of Computer Science University of Waterloo Waterloo, Ontario,

More information

Computation Tree Logic (CTL)

Computation Tree Logic (CTL) Computation Tree Logic (CTL) Fazle Rabbi University of Oslo, Oslo, Norway Bergen University College, Bergen, Norway fazlr@student.matnat.uio.no, Fazle.Rabbi@hib.no May 30, 2015 Fazle Rabbi et al. (UiO,

More information

Linear Temporal Logic and Büchi Automata

Linear Temporal Logic and Büchi Automata Linear Temporal Logic and Büchi Automata Yih-Kuen Tsay Department of Information Management National Taiwan University FLOLAC 2009 Yih-Kuen Tsay (SVVRL @ IM.NTU) Linear Temporal Logic and Büchi Automata

More information

Counterexample-Driven Model Checking

Counterexample-Driven Model Checking Counterexample-Driven Model Checking (Extended Abstract) Natarajan Shankar and Maria Sorea SRI International Computer Science Laboratory 333 Ravenswood Avenue Menlo Park, CA 94025, USA {shankar, sorea}@csl.sri.com

More information

IC3 and Beyond: Incremental, Inductive Verification

IC3 and Beyond: Incremental, Inductive Verification IC3 and Beyond: Incremental, Inductive Verification Aaron R. Bradley ECEE, CU Boulder & Summit Middle School IC3 and Beyond: Incremental, Inductive Verification 1/62 Induction Foundation of verification

More information

State-Space Exploration. Stavros Tripakis University of California, Berkeley

State-Space Exploration. Stavros Tripakis University of California, Berkeley EE 144/244: Fundamental Algorithms for System Modeling, Analysis, and Optimization Fall 2014 State-Space Exploration Stavros Tripakis University of California, Berkeley Stavros Tripakis (UC Berkeley) EE

More information

Formal Verification of Mobile Network Protocols

Formal Verification of Mobile Network Protocols Dipartimento di Informatica, Università di Pisa, Italy milazzo@di.unipi.it Pisa April 26, 2005 Introduction Modelling Systems Specifications Examples Algorithms Introduction Design validation ensuring

More information

Timed Automata. Semantics, Algorithms and Tools. Zhou Huaiyang

Timed Automata. Semantics, Algorithms and Tools. Zhou Huaiyang Timed Automata Semantics, Algorithms and Tools Zhou Huaiyang Agenda } Introduction } Timed Automata } Formal Syntax } Operational Semantics } Verification Problems } Symbolic Semantics & Verification }

More information

Lecture Notes on Emptiness Checking, LTL Büchi Automata

Lecture Notes on Emptiness Checking, LTL Büchi Automata 15-414: Bug Catching: Automated Program Verification Lecture Notes on Emptiness Checking, LTL Büchi Automata Matt Fredrikson André Platzer Carnegie Mellon University Lecture 18 1 Introduction We ve seen

More information

or simply: IC3 A Simplified Description

or simply: IC3 A Simplified Description Incremental Construction of Inductive Clauses for Indubitable Correctness or simply: IC3 A Simplified Description Based on SAT-Based Model Checking without Unrolling Aaron Bradley, VMCAI 2011 Efficient

More information

Models for Efficient Timed Verification

Models for Efficient Timed Verification Models for Efficient Timed Verification François Laroussinie LSV / ENS de Cachan CNRS UMR 8643 Monterey Workshop - Composition of embedded systems Model checking System Properties Formalizing step? ϕ Model

More information

Understanding IC3. Aaron R. Bradley. ECEE, CU Boulder & Summit Middle School. Understanding IC3 1/55

Understanding IC3. Aaron R. Bradley. ECEE, CU Boulder & Summit Middle School. Understanding IC3 1/55 Understanding IC3 Aaron R. Bradley ECEE, CU Boulder & Summit Middle School Understanding IC3 1/55 Further Reading This presentation is based on Bradley, A. R. Understanding IC3. In SAT, June 2012. http://theory.stanford.edu/~arbrad

More information

Pushing to the Top FMCAD 15. Arie Gurfinkel Alexander Ivrii

Pushing to the Top FMCAD 15. Arie Gurfinkel Alexander Ivrii Pushing to the Top FMCAD 15 Arie Gurfinkel Alexander Ivrii Safety Verification Consider a verification problem (Init, Tr, Bad) The problem is UNSAFE if and only if there exists a path from an Init-state

More information

A Game-Theoretic Approach to Simulation of Data-Parameterized Systems

A Game-Theoretic Approach to Simulation of Data-Parameterized Systems A Game-Theoretic Approach to Simulation of Data-Parameterized Systems Orna Grumberg 1, Orna Kupferman 2, and Sarai Sheinvald 2 1 Department of Computer Science, The Technion, Haifa 32000, Israel 2 School

More information

Tecniche di Specifica e di Verifica. Automata-based LTL Model-Checking

Tecniche di Specifica e di Verifica. Automata-based LTL Model-Checking Tecniche di Specifica e di Verifica Automata-based LTL Model-Checking Finite state automata A finite state automaton is a tuple A = (S,S,S 0,R,F) S: set of input symbols S: set of states -- S 0 : set of

More information

Model checking the basic modalities of CTL with Description Logic

Model checking the basic modalities of CTL with Description Logic Model checking the basic modalities of CTL with Description Logic Shoham Ben-David Richard Trefler Grant Weddell David R. Cheriton School of Computer Science University of Waterloo Abstract. Model checking

More information

Model Checking. Temporal Logic. Fifth International Symposium in Programming, volume. of concurrent systems in CESAR. In Proceedings of the

Model Checking. Temporal Logic. Fifth International Symposium in Programming, volume. of concurrent systems in CESAR. In Proceedings of the Sérgio Campos, Edmund Why? Advantages: No proofs Fast Counter-examples No problem with partial specifications can easily express many concurrency properties Main Disadvantage: State Explosion Problem Too

More information

Tutorial 1: Modern SMT Solvers and Verification

Tutorial 1: Modern SMT Solvers and Verification University of Illinois at Urbana-Champaign Tutorial 1: Modern SMT Solvers and Verification Sayan Mitra Electrical & Computer Engineering Coordinated Science Laboratory University of Illinois at Urbana

More information

Reasoning about Time and Reliability

Reasoning about Time and Reliability Reasoning about Time and Reliability Probabilistic CTL model checking Daniel Bruns Institut für theoretische Informatik Universität Karlsruhe 13. Juli 2007 Seminar Theorie und Anwendung von Model Checking

More information

CSE 20 DISCRETE MATH. Winter

CSE 20 DISCRETE MATH. Winter CSE 20 DISCRETE MATH Winter 2017 http://cseweb.ucsd.edu/classes/wi17/cse20-ab/ Today's learning goals Evaluate which proof technique(s) is appropriate for a given proposition Direct proof Proofs by contraposition

More information

SAT based Abstraction-Refinement using ILP and Machine Learning Techniques

SAT based Abstraction-Refinement using ILP and Machine Learning Techniques SAT based Abstraction-Refinement using ILP and Machine Learning Techniques 1 SAT based Abstraction-Refinement using ILP and Machine Learning Techniques Edmund Clarke James Kukula Anubhav Guta Ofer Strichman

More information

Temporal logics and explicit-state model checking. Pierre Wolper Université de Liège

Temporal logics and explicit-state model checking. Pierre Wolper Université de Liège Temporal logics and explicit-state model checking Pierre Wolper Université de Liège 1 Topics to be covered Introducing explicit-state model checking Finite automata on infinite words Temporal Logics and

More information

Model for reactive systems/software

Model for reactive systems/software Temporal Logics CS 5219 Abhik Roychoudhury National University of Singapore The big picture Software/ Sys. to be built (Dream) Properties to Satisfy (caution) Today s lecture System Model (Rough Idea)

More information

Static Program Analysis

Static Program Analysis Static Program Analysis Lecture 16: Abstract Interpretation VI (Counterexample-Guided Abstraction Refinement) Thomas Noll Lehrstuhl für Informatik 2 (Software Modeling and Verification) noll@cs.rwth-aachen.de

More information

Symmetry Reductions. A. Prasad Sistla University Of Illinois at Chicago

Symmetry Reductions. A. Prasad Sistla University Of Illinois at Chicago Symmetry Reductions. A. Prasad Sistla University Of Illinois at Chicago Model-Checking Concurrent PGM Temporal SPEC Model Checker Yes/No Counter Example Approach Build the global state graph Algorithm

More information

FAIRNESS FOR INFINITE STATE SYSTEMS

FAIRNESS FOR INFINITE STATE SYSTEMS FAIRNESS FOR INFINITE STATE SYSTEMS Heidy Khlaaf University College London 1 FORMAL VERIFICATION Formal verification is the process of establishing whether a system satisfies some requirements (properties),

More information

LTL with Arithmetic and its Applications in Reasoning about Hierarchical Systems

LTL with Arithmetic and its Applications in Reasoning about Hierarchical Systems This space is reserved for the EPiC Series header, do not use it LTL with Arithmetic and its Applications in Reasoning about Hierarchical Systems Rachel Faran and Orna Kupferman The Hebrew University,

More information

Propositional logic. First order logic. Alexander Clark. Autumn 2014

Propositional logic. First order logic. Alexander Clark. Autumn 2014 Propositional logic First order logic Alexander Clark Autumn 2014 Formal Logic Logical arguments are valid because of their form. Formal languages are devised to express exactly that relevant form and

More information

Selected problems from past exams

Selected problems from past exams Discrete Structures CS2800 Prelim 1 s Selected problems from past exams 1. True/false. For each of the following statements, indicate whether the statement is true or false. Give a one or two sentence

More information

Overview. Discrete Event Systems Verification of Finite Automata. What can finite automata be used for? What can finite automata be used for?

Overview. Discrete Event Systems Verification of Finite Automata. What can finite automata be used for? What can finite automata be used for? Computer Engineering and Networks Overview Discrete Event Systems Verification of Finite Automata Lothar Thiele Introduction Binary Decision Diagrams Representation of Boolean Functions Comparing two circuits

More information

TIMED automata, introduced by Alur and Dill in [3], have

TIMED automata, introduced by Alur and Dill in [3], have 1 Language Inclusion Checking of Timed Automata with Non-Zenoness Xinyu Wang, Jun Sun, Ting Wang, and Shengchao Qin Abstract Given a timed automaton P modeling an implementation and a timed automaton S

More information

Tecniche di Specifica e di Verifica. Automata-based LTL Model-Checking

Tecniche di Specifica e di Verifica. Automata-based LTL Model-Checking Tecniche di Specifica e di Verifica Automata-based LTL Model-Checking Finite state automata A finite state automaton is a tuple A = (Σ,S,S 0,R,F) Σ: set of input symbols S: set of states -- S 0 : set of

More information

SAT-Based Verification with IC3: Foundations and Demands

SAT-Based Verification with IC3: Foundations and Demands SAT-Based Verification with IC3: Foundations and Demands Aaron R. Bradley ECEE, CU Boulder & Summit Middle School SAT-Based Verification with IC3:Foundations and Demands 1/55 Induction Foundation of verification

More information

A Counterexample Guided Abstraction-Refinement Framework for Markov Decision Processes

A Counterexample Guided Abstraction-Refinement Framework for Markov Decision Processes A Counterexample Guided Abstraction-Refinement Framework for Markov Decision Processes ROHIT CHADHA and MAHESH VISWANATHAN Dept. of Computer Science, University of Illinois at Urbana-Champaign The main

More information

Automated Circular Assume-Guarantee Reasoning with N-way Decomposition and Alphabet Refinement

Automated Circular Assume-Guarantee Reasoning with N-way Decomposition and Alphabet Refinement Automated Circular Assume-Guarantee Reasoning with N-way Decomposition and Alphabet Refinement Karam Abd Elkader 1, Orna Grumberg 1, Corina S. Păsăreanu 2, and Sharon Shoham 3 1 Technion Israel Institute

More information

KE/Tableaux. What is it for?

KE/Tableaux. What is it for? CS3UR: utomated Reasoning 2002 The term Tableaux refers to a family of deduction methods for different logics. We start by introducing one of them: non-free-variable KE for classical FOL What is it for?

More information

CS357: CTL Model Checking (two lectures worth) David Dill

CS357: CTL Model Checking (two lectures worth) David Dill CS357: CTL Model Checking (two lectures worth) David Dill 1 CTL CTL = Computation Tree Logic It is a propositional temporal logic temporal logic extended to properties of events over time. CTL is a branching

More information

Lecture 9: The Splitting Method for SAT

Lecture 9: The Splitting Method for SAT Lecture 9: The Splitting Method for SAT 1 Importance of SAT Cook-Levin Theorem: SAT is NP-complete. The reason why SAT is an important problem can be summarized as below: 1. A natural NP-Complete problem.

More information

Model Checking with CTL. Presented by Jason Simas

Model Checking with CTL. Presented by Jason Simas Model Checking with CTL Presented by Jason Simas Model Checking with CTL Based Upon: Logic in Computer Science. Huth and Ryan. 2000. (148-215) Model Checking. Clarke, Grumberg and Peled. 1999. (1-26) Content

More information

Complexity. Complexity Theory Lecture 3. Decidability and Complexity. Complexity Classes

Complexity. Complexity Theory Lecture 3. Decidability and Complexity. Complexity Classes Complexity Theory 1 Complexity Theory 2 Complexity Theory Lecture 3 Complexity For any function f : IN IN, we say that a language L is in TIME(f(n)) if there is a machine M = (Q, Σ, s, δ), such that: L

More information

Sequential Equivalence Checking - I

Sequential Equivalence Checking - I Sequential Equivalence Checking - I Virendra Singh Associate Professor Computer Architecture and Dependable Systems Lab. Dept. of Electrical Engineering Indian Institute of Technology Bombay viren@ee.iitb.ac.in

More information

A Brief Introduction to Model Checking

A Brief Introduction to Model Checking A Brief Introduction to Model Checking Jan. 18, LIX Page 1 Model Checking A technique for verifying finite state concurrent systems; a benefit on this restriction: largely automatic; a problem to fight:

More information

Counterexample Guided Abstraction Refinement Algorithm for Propositional Circumscription

Counterexample Guided Abstraction Refinement Algorithm for Propositional Circumscription Counterexample Guided Abstraction Refinement Algorithm for Propositional Circumscription Mikoláš Janota 1, Radu Grigore 2, and Joao Marques-Silva 3 1 INESC-ID, Lisbon, Portugal 2 Queen Mary, University

More information

Proofs. Joe Patten August 10, 2018

Proofs. Joe Patten August 10, 2018 Proofs Joe Patten August 10, 2018 1 Statements and Open Sentences 1.1 Statements A statement is a declarative sentence or assertion that is either true or false. They are often labelled with a capital

More information

Alan Bundy. Automated Reasoning LTL Model Checking

Alan Bundy. Automated Reasoning LTL Model Checking Automated Reasoning LTL Model Checking Alan Bundy Lecture 9, page 1 Introduction So far we have looked at theorem proving Powerful, especially where good sets of rewrite rules or decision procedures have

More information

Homework 2: Temporal logic

Homework 2: Temporal logic ICS-E5010 Computer-Aided Verification and Synthesis, Spring 2016 Stavros Tripakis Homework 2: Temporal logic Assigned: January 20, 2016 Due: February 1, 2016 Total: 235 points. 1. (20 points) Two formulae

More information

PSPACE-completeness of LTL/CTL model checking

PSPACE-completeness of LTL/CTL model checking PSPACE-completeness of LTL/CTL model checking Peter Lohmann April 10, 2007 Abstract This paper will give a proof for the PSPACE-completeness of LTLsatisfiability and for the PSPACE-completeness of the

More information

Temporal Logic. M φ. Outline. Why not standard logic? What is temporal logic? LTL CTL* CTL Fairness. Ralf Huuck. Kripke Structure

Temporal Logic. M φ. Outline. Why not standard logic? What is temporal logic? LTL CTL* CTL Fairness. Ralf Huuck. Kripke Structure Outline Temporal Logic Ralf Huuck Why not standard logic? What is temporal logic? LTL CTL* CTL Fairness Model Checking Problem model, program? M φ satisfies, Implements, refines property, specification

More information

Topics in Verification AZADEH FARZAN FALL 2017

Topics in Verification AZADEH FARZAN FALL 2017 Topics in Verification AZADEH FARZAN FALL 2017 Last time LTL Syntax ϕ ::= true a ϕ 1 ϕ 2 ϕ ϕ ϕ 1 U ϕ 2 a AP. ϕ def = trueu ϕ ϕ def = ϕ g intuitive meaning of and is obt Limitations of LTL pay pay τ τ soda

More information

CSE 20 DISCRETE MATH WINTER

CSE 20 DISCRETE MATH WINTER CSE 20 DISCRETE MATH WINTER 2016 http://cseweb.ucsd.edu/classes/wi16/cse20-ab/ Today's learning goals Evaluate which proof technique(s) is appropriate for a given proposition Direct proof Proofs by contraposition

More information

CSE 20 DISCRETE MATH SPRING

CSE 20 DISCRETE MATH SPRING CSE 20 DISCRETE MATH SPRING 2016 http://cseweb.ucsd.edu/classes/sp16/cse20-ac/ Today's learning goals Evaluate which proof technique(s) is appropriate for a given proposition Direct proof Proofs by contraposition

More information

Local and global deadlock-detection in component-based systems are NP-hard

Local and global deadlock-detection in component-based systems are NP-hard Information Processing Letters 103 (2007) 105 111 www.elsevier.com/locate/ipl Local and global deadlock-detection in component-based systems are NP-hard Christoph Minnameier Institut für Informatik, Universität

More information

Chapter 6: Computation Tree Logic

Chapter 6: Computation Tree Logic Chapter 6: Computation Tree Logic Prof. Ali Movaghar Verification of Reactive Systems Outline We introduce Computation Tree Logic (CTL), a branching temporal logic for specifying system properties. A comparison

More information

Lecture 2: Model Checking My 30 Year Quest to Conquer the State Explosion Problem

Lecture 2: Model Checking My 30 Year Quest to Conquer the State Explosion Problem Lecture 2: Model Checking My 30 Year Quest to Conquer the State Explosion Problem Edmund M. Clarke School of Computer Science Carnegie Mellon University Intel Pentium FDIV Bug Try 4195835 4195835 / 3145727

More information

Algorithmic Verification of Stability of Hybrid Systems

Algorithmic Verification of Stability of Hybrid Systems Algorithmic Verification of Stability of Hybrid Systems Pavithra Prabhakar Kansas State University University of Kansas February 24, 2017 1 Cyber-Physical Systems (CPS) Systems in which software "cyber"

More information

Closure Properties of Regular Languages. Union, Intersection, Difference, Concatenation, Kleene Closure, Reversal, Homomorphism, Inverse Homomorphism

Closure Properties of Regular Languages. Union, Intersection, Difference, Concatenation, Kleene Closure, Reversal, Homomorphism, Inverse Homomorphism Closure Properties of Regular Languages Union, Intersection, Difference, Concatenation, Kleene Closure, Reversal, Homomorphism, Inverse Homomorphism Closure Properties Recall a closure property is a statement

More information

NP-Complete Problems. Complexity Class P. .. Cal Poly CSC 349: Design and Analyis of Algorithms Alexander Dekhtyar..

NP-Complete Problems. Complexity Class P. .. Cal Poly CSC 349: Design and Analyis of Algorithms Alexander Dekhtyar.. .. Cal Poly CSC 349: Design and Analyis of Algorithms Alexander Dekhtyar.. Complexity Class P NP-Complete Problems Abstract Problems. An abstract problem Q is a binary relation on sets I of input instances

More information

EECS 144/244: Fundamental Algorithms for System Modeling, Analysis, and Optimization

EECS 144/244: Fundamental Algorithms for System Modeling, Analysis, and Optimization EECS 144/244: Fundamental Algorithms for System Modeling, Analysis, and Optimization Discrete Systems Lecture: State-Space Exploration Stavros Tripakis University of California, Berkeley Stavros Tripakis:

More information

Sanjit A. Seshia EECS, UC Berkeley

Sanjit A. Seshia EECS, UC Berkeley EECS 219C: Computer-Aided Verification Explicit-State Model Checking: Additional Material Sanjit A. Seshia EECS, UC Berkeley Acknowledgments: G. Holzmann Checking if M satisfies : Steps 1. Compute Buchi

More information

Introduction to Temporal Logic. The purpose of temporal logics is to specify properties of dynamic systems. These can be either

Introduction to Temporal Logic. The purpose of temporal logics is to specify properties of dynamic systems. These can be either Introduction to Temporal Logic The purpose of temporal logics is to specify properties of dynamic systems. These can be either Desired properites. Often liveness properties like In every infinite run action

More information

Ivy: Safety Verification by Interactive Generalization

Ivy: Safety Verification by Interactive Generalization Ivy: Safety Verification by Interactive Generalization Oded Padon Verification Day 1-June-2016 [PLDI 16] Oded Padon, Kenneth McMillan, Aurojit Panda, Mooly Sagiv, Sharon Shoham. Ivy: Safety Verification

More information