Model Checking of Software
|
|
|
- Edwina Armstrong
- 9 years ago
- Views:
Transcription
1 Model Checking of Software Patrice Godefroid Bell Laboratories, Lucent Technologies SpecNCheck Page 1 August 2001
2 A Brief History of Model Checking Prehistory: transformational programs and theorem proving Early 80 s: foundations (the pioneers) Late 80 s: first tools (the first champions) Early 90 s: reality check: state spaces explode! (the engineers) Late 90 s: the boom then reality check (the entrepreneurs) Next: can model checking be applied to software? Challenges and approaches currently being investigated SpecNCheck Page 2 August 2001
3 Preliminaries: Formal Verification + Disclaimer What is Verification? 4 elements define a verification framework: Specification (what we want) Design Verification Implementation (what we get) Verification: to check if all possible behaviors of the implementation are compatible with the specification While testing can only find errors, verification can also prove their absence (=exhaustive testing). Disclaimer: emphasis on technical ideas, not references SpecNCheck Page 3 August 2001
4 Prehistory (70 s and before) Transformational programs: Most early computer programs were designed to compute something. Examples: accounting, scientific computing, etc. Transformation from initial to final state. Specification= pre-condition/post-condition Formal verification: Paper and pencil. Using Theorem Proving (first CAV tools) SpecNCheck Page 4 August 2001
5 Theorem Proving Goal: automate mathematical (logical) reasoning. Verification using theorem proving: Implementation represented by a logic formula I (ex: Hoare s logic). Specification represented by a logic formula S. Does I implies S hold? Proof is carried out at syntactic level. This approach is very general. Many programs and properties can be checked this way. However, most proofs are not fully automatic. A theorem prover is rather a proof assistant and a proof checker. SpecNCheck Page 5 August 2001
6 Early 80 s: Foundations (the pioneers) From transformational programs to reactive programs: A transformational program computes something. A reactive program controls something. Examples: telephone switch, airplane, ATM, power plant, pacemaker, etc. A reactive program continually interacts with its environment. Viewed as a FSM (automaton), called the state space. Behavior described in terms of sequences of states/transitions. Language for temporal properties: Temporal Logic [Pnueli, ] SpecNCheck Page 6 August 2001
7 Temporal Logic Model Checking Example: Linear-time Temporal Logic (LTL) Specify properties of infinite sequences of states (or transitions). Temporal operators include: G (always), F (eventually) and X (next). Example: G(p -> Fq) s0 p q Does M satisfy f? = model checking [Clarke, Emerson, Sifakis, ] For f in LTL, do all infinite computations of M satisfy f? For f in BTL, does the computation tree of M satisfy f? Algorithmic issues: efficient decision procedures exist Proof can be carried out at semantic level, via state-space exploration. Ex: for CTL, SAT is EXPTIME-complete, but model checking is linear! SpecNCheck Page 7 August 2001
8 First Model-Checking Frameworks 4 components define a model-checking framework: Implementation (program) = an FSM. Specification (property) = a temporal logic formula. Comparison Criteria = defined by semantics of the temporal logic. Algorithm = evaluates the formula against the FSM ( model-checking algorithm ) Model-Checking Research in the 80 s: Various temporal logics: linear-time, branching-time, Relationship between temporal logics and classes of automata (LTL and word automata; BTL and tree automata ) Classes of temporal properties (safety, liveness, ) Etc. Model checking is automatic but (essentially) restricted to finite-state systems. Many reactive systems can be modeled by FSMs! Let s build tools! SpecNCheck Page 8 August 2001
9 Late 80 s: First tools (the first champions) Examples: CAESAR, COSPAN, CWB, MURPHI, SPIN, etc. Differ by specification language, implementation language, comparison criterion, and/or verification algorithms, but all based on systematic state-space exploration. NOTE: using a temporal logic is not mandatory. Many model-checking tools do not support a full temporal logic. From now on, no distinction here between model checking and systematic statespace exploration. Logic is a powerful theoretical tool (characterizes classes of properties). Logic can be very useful in practice too (concise and expressive). First success stories in analyzing circuit designs, communication protocols, distributed algorithms! SpecNCheck Page 9 August 2001
10 Formal Verification vs. Testing Experiments with these tools show that model checking can be very useful! Main strength: model checking can detect subtle design errors. In practice, formal verification is actually testing because of approximations: when modeling the system, when modeling the environment, when specifying properties, when performing the verification. Therefore bug hunting is really the name of the game! Main goal: find errors that would be hard to find otherwise. SpecNCheck Page 10 August 2001
11 Early 90s: First Reality Check (the engineers) Model Checking is limited by the state explosion problem. X1=1 X2=1 Xn=1 2^n states! n! interleavings! FSM (=state space) can itself be the product of smaller FSMs Model checking is usually linear in the size of the state space, but the size of the state space is usually exponential (or worse) in the system description (program). State-space exploration is fundamentally hard (NP, PSPACE or worse). Engineering challenge: how to make model checking scalable? SpecNCheck Page 11 August 2001
12 Dealing with State Explosion Divide-and-conquer approaches: abstraction: hide/approximate details. compositionality: check first local properties of individual components, then combine these to prove correctness of the whole system. Algorithmic approaches: symbolic verification : represent state space differently (BDDs, ). state-space pruning techniques: avoid exploring parts of the state space (partial-order methods, symmetry methods, ). Techniques to tackle the effects of state explosion (bit-state hashing, statespace compression, caching, etc.). Etc. Several order of magnitudes gained! We are in business! SpecNCheck Page 12 August 2001
13 Late 90 s: the boom then reality check Industrial model-checking tools are developed and gain acceptance in industry Become routinely used for some applications in some companies. Mostly hardware: IBM, Intel, Lucent, Motorola, etc. Software designs too (with SDL (Telelogic), VFSM (Lucent), ) Several start-ups are trying to emerge! FormalCheck (now Cadence), Verisity, Verysys, Mentor Graphics, 0-in, Making money selling model-checking tools is hard! Scalability issues (state explosion ) Usability issues (requires training for specification and verification) SpecNCheck Page 13 August 2001
14 Applications: Hardware Hardware verification is an important application of model checking and related techniques. The finite-state assumption is not unrealistic for hardware. The cost of errors can be enormous (e.g., Pentium bug). The complexity of designs is increasing very rapidly (system on a chip). However, model checking still does not scale very well. Many designs and implementations are too big and complex. Hardware description languages (Verilog, VHDL, ) are very expressive. Using model checking properly requires experienced staff. Quid for Software? SpecNCheck Page 14 August 2001
15 Applications: Software Models Analysis of software models: (e.g., SPIN) Analysis of communication protocols, distributed algorithms. Models specified in extended FSM notation. Restricted to design. Analysis of software models that can be compiled: (e.g., SDL, VFSM) Same as above except that FSM can be compiled to generate the core of the implementation. More popular with software developers since reuse of model is possible. Analysis still restricted to FSM part of the implementation. SpecNCheck Page 15 August 2001
16 Model Checking of Software Challenge: how to apply model checking to analyze software? Real programming languages (e.g., C, C++, Java), Real size (e.g., 100,000 s lines of code). Two main approaches for software model checking: Modeling languages state-space exploration Model checking abstraction (Bandera, Feaver, JPF, SLAM, ) adaptation Programming languages state-space exploration Systematic testing (VeriSoft) SpecNCheck Page 16 August 2001
17 Approach: Systematic Testing (VeriSoft( VeriSoft) Control and observe the execution of concurrent processes of the system under test by intercepting system calls (communication, VS_toss(n), assertion violations, etc.). Systematically drive the system along all the paths (=scenarios) in its state space (=automatically generate, execute and evaluate many scenarios). From a given initial state, one can always guarantee a complete coverage of the state space up to some depth. VeriSoft s0 System Processes A B C deadlock SpecNCheck Page 17 August 2001
18 VeriSoft State-Space Space Search Automatically searches for: (safety properties only!) deadlocks, assertion violations, divergences (a process does not communicate with the rest of the system during more than x seconds), livelocks (a process is blocked during x successive transitions). A scenario (path) is reported for each error found. How to efficiently explore state spaces without storing any state? States of arbitrary (OS) processes are too complex to be represented explicitly (no hash-tables, BDDs, ). For concurrent systems, need partial-order algorithms! [Godefroid, ] SpecNCheck Page 18 August 2001
19 The VeriSoft Simulator SpecNCheck Page 19 August 2001
20 VeriSoft Project Status Development of research prototype started in Examples of applications in Lucent Technologies: 4ESS Heart-Beat Monitor debugging and unit testing (Switching, switch maint.) WaveStar 40G R4 integration and system testing (Optical, network management) CDMA Call Processing Library testing (Wireless, call processing) VeriSoft 2.0 available outside Lucent since January 1999: 100 s of non-commercial licenses in 25+ countries; 10 s of commercial licenses; several industrial users (Lucent, Cisco, Motorola, Philips, ) Examples of related research issues: How to automatically close open reactive programs? [Colby, Godefroid, Jagadeesan,..] How to analyze effectively partial state-spaces? [Bruns, Godefroid, ] How to apply and optimize this approach to multi-threaded programs? [Stoller, ] SpecNCheck Page 20 August 2001
21 Approach: Automatic Abstraction Main ideas and issues: 1. Abstract: extract a model out of concrete program via static analysis. Which programming languages are supported? ((subset of) C, Java, Ada,DSL?) Additional assumptions? (Pointers? Recursion? Concurrency? ) What is the target modeling language? ((C)(E)FSMs, PDAs, ) Can/must the abstraction be guided by the user? How? 2. Model check the abstraction. What properties can be checked? (Safety? Liveness?, ) How to model the environment? (Closed or open system? ) Which model-checking algorithm? (New algorithms for PDAs, HSMs, ) Is the abstraction conservative? 3. Map abstract counter-examples back to code. Behaviors violating the property may have been introduced during Step 1. Hence, need to map scenarios leading to errors back to the code. HOW? SpecNCheck Page 21 August 2001
22 Active Area of Research Examples of tools: Bandera [Dwyer, Hatcliff, ]: Java to SPIN/SMV/* using user-guided abstraction mapping and slicing/abstract-interpretation/* SLAM [Ball, Rajamani, ]: C to Boolean programs (=CFG+boolean variables); automatic abstraction refinement using predicate abstraction JavaPathFinder [Havelund,Penix,Visser, ]: Java model-checking using special JVM and model-checker Feaver [Holzmann, ]: C to SPIN using user-specified abstraction mapping Etc! (Tools for Ada, static analysis of concurrent programs, ) Examples of frameworks: (automatic abstraction refinement) [Graf,Saidi, ], [Clarke,Grumberg,Jha, ], [Ball,Rajamani,Podelski, ], [Dill,Das, ], [Khurshan,Namjoshi, ], [Dwyer,Pasareanu,Visser, ], [Bruns,Godefroid,Huth,Jagadeesan,Schmidt ], [Henzinger, ], etc. SpecNCheck Page 22 August 2001
23 Summary: Two (Complementary) Approaches Systematic software testing: Idea: control the execution of concurrent processes by intercepting systems calls related to communication, and automatically drive the entire system through many scenarios. Flexible and scalable approach (code independent). Counterexamples arise from code execution (sound). Provide complete state-space coverage up to some depth only (incomplete). Static analysis for automatic model extraction: Idea: parse code to generate an abstract model which is then analyzed by model-checker; abstraction may/must be guided by the user. Coverage can be exhaustive (can be complete). Abstraction may cause spurious counterexamples (unsound) Technology less mature, active area of research. SpecNCheck Page 23 August 2001
24 Conclusions Model Checking is a very successful research area: New: original approach to check the correctness of reactive systems. Non-obvious: rich theory behind it. Useful: many applications and success stories, including in industry. From a business perspective, the success is mixed (!?!) Can model checking be applied to software? Hard problem (model checking + program analysis). Good for research! Bad for business? SpecNCheck Page 24 August 2001
Model Checking: An Introduction
Announcements Model Checking: An Introduction Meeting 2 Office hours M 1:30pm-2:30pm W 5:30pm-6:30pm (after class) and by appointment ECOT 621 Moodle problems? Fundamentals of Programming Languages CSCI
Formal Verification by Model Checking
Formal Verification by Model Checking Natasha Sharygina Carnegie Mellon University Guest Lectures at the Analysis of Software Artifacts Class, Spring 2005 1 Outline Lecture 1: Overview of Model Checking
The Model Checker SPIN
The Model Checker SPIN Author: Gerard J. Holzmann Presented By: Maulik Patel Outline Introduction Structure Foundation Algorithms Memory management Example/Demo SPIN-Introduction Introduction SPIN (Simple(
T-79.186 Reactive Systems: Introduction and Finite State Automata
T-79.186 Reactive Systems: Introduction and Finite State Automata Timo Latvala 14.1.2004 Reactive Systems: Introduction and Finite State Automata 1-1 Reactive Systems Reactive systems are a class of software
The Course. http://www.cse.unsw.edu.au/~cs3153/
The Course http://www.cse.unsw.edu.au/~cs3153/ Lecturers Dr Peter Höfner NICTA L5 building Prof Rob van Glabbeek NICTA L5 building Dr Ralf Huuck NICTA ATP building 2 Plan/Schedule (1) Where and When Tuesday,
Static Program Transformations for Efficient Software Model Checking
Static Program Transformations for Efficient Software Model Checking Shobha Vasudevan Jacob Abraham The University of Texas at Austin Dependable Systems Large and complex systems Software faults are major
Formal Verification and Linear-time Model Checking
Formal Verification and Linear-time Model Checking Paul Jackson University of Edinburgh Automated Reasoning 21st and 24th October 2013 Why Automated Reasoning? Intellectually stimulating and challenging
Formal Verification of Software
Formal Verification of Software Sabine Broda Department of Computer Science/FCUP 12 de Novembro de 2014 Sabine Broda (DCC-FCUP) Formal Verification of Software 12 de Novembro de 2014 1 / 26 Formal Verification
Introduction to Formal Methods. Các Phương Pháp Hình Thức Cho Phát Triển Phần Mềm
Introduction to Formal Methods Các Phương Pháp Hình Thức Cho Phát Triển Phần Mềm Outline Introduction Formal Specification Formal Verification Model Checking Theorem Proving Introduction Good papers to
Model Checking II Temporal Logic Model Checking
1/32 Model Checking II Temporal Logic Model Checking Edmund M Clarke, Jr School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213 2/32 Temporal Logic Model Checking Specification Language:
INF5140: Specification and Verification of Parallel Systems
Motivation INF5140: Specification and Verification of Parallel Systems Lecture 1 Introduction: Formal Methods Gerardo Schneider Department of Informatics University of Oslo INF5140, Spring 2009 Outline
logic language, static/dynamic models SAT solvers Verified Software Systems 1 How can we model check of a program or system?
5. LTL, CTL Last part: Alloy logic language, static/dynamic models SAT solvers Today: Temporal Logic (LTL, CTL) Verified Software Systems 1 Overview How can we model check of a program or system? Modeling
Model Checking based Software Verification
Model Checking based Software Verification 18.5-2006 Keijo Heljanko [email protected] Department of Computer Science and Engineering Helsinki University of Technology http://www.tcs.tkk.fi/~kepa/ 1/24
Specification and Analysis of Contracts Lecture 1 Introduction
Specification and Analysis of Contracts Lecture 1 Introduction Gerardo Schneider [email protected] http://folk.uio.no/gerardo/ Department of Informatics, University of Oslo SEFM School, Oct. 27 - Nov.
Algorithmic Software Verification
Algorithmic Software Verification (LTL Model Checking) Azadeh Farzan What is Verification Anyway? Proving (in a formal way) that program satisfies a specification written in a logical language. Formal
Software safety - DEF-STAN 00-55
Software safety - DEF-STAN 00-55 Where safety is dependent on the safety related software (SRS) fully meeting its requirements, demonstrating safety is equivalent to demonstrating correctness with respect
Software Engineering using Formal Methods
Software Engineering using Formal Methods Model Checking with Temporal Logic Wolfgang Ahrendt 24th September 2013 SEFM: Model Checking with Temporal Logic /GU 130924 1 / 33 Model Checking with Spin model
Formal Verification Coverage: Computing the Coverage Gap between Temporal Specifications
Formal Verification Coverage: Computing the Coverage Gap between Temporal Specifications Sayantan Das Prasenjit Basu Ansuman Banerjee Pallab Dasgupta P.P. Chakrabarti Department of Computer Science & Engineering
Automated Theorem Proving - summary of lecture 1
Automated Theorem Proving - summary of lecture 1 1 Introduction Automated Theorem Proving (ATP) deals with the development of computer programs that show that some statement is a logical consequence of
System modeling. Budapest University of Technology and Economics Department of Measurement and Information Systems
System modeling Business process modeling how to do it right Partially based on Process Anti-Patterns: How to Avoid the Common Traps of Business Process Modeling, J Koehler, J Vanhatalo, IBM Zürich, 2007.
Overview Motivating Examples Interleaving Model Semantics of Correctness Testing, Debugging, and Verification
Introduction Overview Motivating Examples Interleaving Model Semantics of Correctness Testing, Debugging, and Verification Advanced Topics in Software Engineering 1 Concurrent Programs Characterized by
tutorial: hardware and software model checking
tutorial: hardware and software model checking gerard holzmann and anuj puri { gerard anuj } @research.bell-labs.com Bell Labs, USA outline introduction (15 mins) theory and algorithms system modeling
Software Modeling and Verification
Software Modeling and Verification Alessandro Aldini DiSBeF - Sezione STI University of Urbino Carlo Bo Italy 3-4 February 2015 Algorithmic verification Correctness problem Is the software/hardware system
Towards a Framework for Generating Tests to Satisfy Complex Code Coverage in Java Pathfinder
Towards a Framework for Generating Tests to Satisfy Complex Code Coverage in Java Pathfinder Matt Department of Computer Science and Engineering University of Minnesota [email protected] Abstract We present
Fundamentals of Software Engineering
Fundamentals of Software Engineering Model Checking with Temporal Logic Ina Schaefer Institute for Software Systems Engineering TU Braunschweig, Germany Slides by Wolfgang Ahrendt, Richard Bubel, Reiner
Testing LTL Formula Translation into Büchi Automata
Testing LTL Formula Translation into Büchi Automata Heikki Tauriainen and Keijo Heljanko Helsinki University of Technology, Laboratory for Theoretical Computer Science, P. O. Box 5400, FIN-02015 HUT, Finland
Using Patterns and Composite Propositions to Automate the Generation of Complex LTL
University of Texas at El Paso DigitalCommons@UTEP Departmental Technical Reports (CS) Department of Computer Science 8-1-2007 Using Patterns and Composite Propositions to Automate the Generation of Complex
Introducing Formal Methods. Software Engineering and Formal Methods
Introducing Formal Methods Formal Methods for Software Specification and Analysis: An Overview 1 Software Engineering and Formal Methods Every Software engineering methodology is based on a recommended
VeriTech - A Framework for Translating among Model Description Notations
Software Tools for Technology Transfer manuscript No. (will be inserted by the editor) VeriTech - A Framework for Translating among Model Description Notations Orna Grumberg and Shmuel Katz Computer Science
Feature Specification and Automated Conflict Detection
Feature Specification and Automated Conflict Detection AMY P. FELTY University of Ottawa and KEDAR S. NAMJOSHI Bell Laboratories Large software systems, especially in the telecommunications field, are
Software Verification: Infinite-State Model Checking and Static Program
Software Verification: Infinite-State Model Checking and Static Program Analysis Dagstuhl Seminar 06081 February 19 24, 2006 Parosh Abdulla 1, Ahmed Bouajjani 2, and Markus Müller-Olm 3 1 Uppsala Universitet,
Analysis of Boolean Programs
Analysis of Boolean Programs Patrice Godefroid 1 Mihalis Yannakakis 2 1 Microsoft Research, [email protected] 2 Columbia University, [email protected] Abstract. Boolean programs are a popular abstract
Combining Software and Hardware Verification Techniques
Formal Methods in System Design, 21, 251 280, 2002 c 2002 Kluwer Academic Publishers. Manufactured in The Netherlands. Combining Software and Hardware Verification Techniques ROBERT P. KURSHAN VLADIMIR
Digital Design Verification
Digital Design Verification Course Instructor: Debdeep Mukhopadhyay Dept of Computer Sc. and Engg. Indian Institute of Technology Madras, Even Semester Course No: CS 676 1 Verification??? What is meant
Software Model Checking: Theory and Practice
Software Model Checking: Theory and Practice Lecture: Secification Checking - Temoral Logic Coyright 2004, Matt Dwyer, John Hatcliff, and Robby. The syllabus and all lectures for this course are coyrighted
http://aejm.ca Journal of Mathematics http://rema.ca Volume 1, Number 1, Summer 2006 pp. 69 86
Atlantic Electronic http://aejm.ca Journal of Mathematics http://rema.ca Volume 1, Number 1, Summer 2006 pp. 69 86 AUTOMATED RECOGNITION OF STUTTER INVARIANCE OF LTL FORMULAS Jeffrey Dallien 1 and Wendy
MetaGame: An Animation Tool for Model-Checking Games
MetaGame: An Animation Tool for Model-Checking Games Markus Müller-Olm 1 and Haiseung Yoo 2 1 FernUniversität in Hagen, Fachbereich Informatik, LG PI 5 Universitätsstr. 1, 58097 Hagen, Germany [email protected]
Introduction to Software Verification
Introduction to Software Verification Orna Grumberg Lectures Material winter 2013-14 Lecture 4 5.11.13 Model Checking Automated formal verification: A different approach to formal verification Model Checking
Temporal Logics. Computation Tree Logic
Temporal Logics CTL: definition, relationship between operators, adequate sets, specifying properties, safety/liveness/fairness Modeling: sequential, concurrent systems; maximum parallelism/interleaving
School of Computer Science
School of Computer Science Computer Science - Honours Level - 2014/15 October 2014 General degree students wishing to enter 3000- level modules and non- graduating students wishing to enter 3000- level
InvGen: An Efficient Invariant Generator
InvGen: An Efficient Invariant Generator Ashutosh Gupta and Andrey Rybalchenko Max Planck Institute for Software Systems (MPI-SWS) Abstract. In this paper we present InvGen, an automatic linear arithmetic
Datavetenskapligt Program (kandidat) Computer Science Programme (master)
Datavetenskapligt Program (kandidat) Computer Science Programme (master) Wolfgang Ahrendt Director Datavetenskap (BSc), Computer Science (MSc) D&IT Göteborg University, 30/01/2009 Part I D&IT: Computer
Trace Server: A Tool for Storing, Querying and Analyzing Execution Traces
Trace Server: A Tool for Storing, Querying and Analyzing Execution Traces Igor Andjelkovic University of Belgrade Belgrade, Serbia [email protected] Cyrille Artho RCIS/AIST, Tsukuba, Japan [email protected]
Dynamic Partial-Order Reduction for Model Checking Software
Dynamic Partial-Order Reduction for Model Checking Software Cormac Flanagan University of California at Santa Cruz [email protected] Patrice Godefroid Bell Laboratories, Lucent Technologies [email protected]
Validated Templates for Specification of Complex LTL Formulas
Validated Templates for Specification of Complex LTL Formulas Salamah Salamah Department of Electrical, computer, Software, and Systems Engineering Embry Riddle Aeronautical University 600 S. Clyde Morris
Finding Liveness Errors with ACO
Finding Liveness Errors with ACO Francisco Chicano and Enrique Alba Abstract Model Checking is a well-known and fully automatic technique for checking software properties, usually given as temporal logic
Lecture 9 verifying temporal logic
Basics of advanced software systems Lecture 9 verifying temporal logic formulae with SPIN 21/01/2013 1 Outline for today 1. Introduction: motivations for formal methods, use in industry 2. Developing models
Software Verification and Testing. Lecture Notes: Temporal Logics
Software Verification and Testing Lecture Notes: Temporal Logics Motivation traditional programs (whether terminating or non-terminating) can be modelled as relations are analysed wrt their input/output
Finding Liveness Errors with ACO
Hong Kong, June 1-6, 2008 1 / 24 Finding Liveness Errors with ACO Francisco Chicano and Enrique Alba Motivation Motivation Nowadays software is very complex An error in a software system can imply the
Structure of Presentation. Stages in Teaching Formal Methods. Motivation (1) Motivation (2) The Scope of Formal Methods (1)
Stages in Teaching Formal Methods A. J. Cowling Structure of Presentation Introduction to Issues Motivation for this work. Analysis of the Role of Formal Methods Define their scope; Review their treatment
Runtime Verification - Monitor-oriented Programming - Monitor-based Runtime Reflection
Runtime Verification - Monitor-oriented Programming - Monitor-based Runtime Reflection Martin Leucker Technische Universität München (joint work with Andreas Bauer, Christian Schallhart et. al) FLACOS
Model-based Quality Assurance of Automotive Software
Model-based Quality Assurance of Automotive Software Jan Jürjens 1, Daniel Reiss 2, David Trachtenherz 3 1 Open University (GB) and Microsoft Research (Cambridge) 2 Elektrobit (Germany) 3 TU Munich (Germany)
Adversary Modelling 1
Adversary Modelling 1 Evaluating the Feasibility of a Symbolic Adversary Model on Smart Transport Ticketing Systems Authors Arthur Sheung Chi Chan, MSc (Royal Holloway, 2014) Keith Mayes, ISG, Royal Holloway
Monitoring Programs using Rewriting
Monitoring Programs using Rewriting Klaus Havelund Kestrel Technology http://ase.arc.nasa.gov/havelund NASA Ames Research Center Moffett Field, CA, 94035 Grigore Roşu Research Institute for Advanced Computer
How Can Metaheuristics Help Software Engineers
and Software How Can Help Software Engineers Enrique Alba [email protected] http://www.lcc.uma.es/~eat Universidad de Málaga, ESPAÑA Enrique Alba How Can Help Software Engineers of 8 and Software What s a
A Classification of Model Checking-based Verification Approaches for Software Models
A Classification of Model Checking-based Verification Approaches for Software Models Petra Brosch, Sebastian Gabmeyer, Martina Seidl Sebastian Gabmeyer Business Informatics Group Institute of Software
Automata-based Verification - I
CS3172: Advanced Algorithms Automata-based Verification - I Howard Barringer Room KB2.20: email: [email protected] March 2006 Supporting and Background Material Copies of key slides (already
The Road from Software Testing to Theorem Proving
The Road from Software Testing to Theorem Proving A Short Compendium of my Favorite Software Verification Techniques Frédéric Painchaud DRDC Valcartier / Robustness and Software Analysis Group December
Development of dynamically evolving and self-adaptive software. 1. Background
Development of dynamically evolving and self-adaptive software 1. Background LASER 2013 Isola d Elba, September 2013 Carlo Ghezzi Politecnico di Milano Deep-SE Group @ DEIB 1 Requirements Functional requirements
Formal verification of contracts for synchronous software components using NuSMV
Formal verification of contracts for synchronous software components using NuSMV Tobias Polzer Lehrstuhl für Informatik 8 Bachelorarbeit 13.05.2014 1 / 19 Problem description and goals Problem description
Today s Agenda. Automata and Logic. Quiz 4 Temporal Logic. Introduction Buchi Automata Linear Time Logic Summary
Today s Agenda Quiz 4 Temporal Logic Formal Methods in Software Engineering 1 Automata and Logic Introduction Buchi Automata Linear Time Logic Summary Formal Methods in Software Engineering 2 1 Buchi Automata
Doctor of Philosophy in Computer Science
Doctor of Philosophy in Computer Science Background/Rationale The program aims to develop computer scientists who are armed with methods, tools and techniques from both theoretical and systems aspects
Please consult the Department of Engineering about the Computer Engineering Emphasis.
COMPUTER SCIENCE Computer science is a dynamically growing discipline. ABOUT THE PROGRAM The Department of Computer Science is committed to providing students with a program that includes the basic fundamentals
StaRVOOrS: A Tool for Combined Static and Runtime Verification of Java
StaRVOOrS: A Tool for Combined Static and Runtime Verification of Java Jesús Mauricio Chimento 1, Wolfgang Ahrendt 1, Gordon J. Pace 2, and Gerardo Schneider 3 1 Chalmers University of Technology, Sweden.
Testing & Verification of Digital Circuits ECE/CS 5745/6745. Hardware Verification using Symbolic Computation
Testing & Verification of Digital Circuits ECE/CS 5745/6745 Hardware Verification using Symbolic Computation Instructor: Priyank Kalla ([email protected]) 3 Credits Mon, Wed, 1:25-2:45pm, WEB L105 Office
COMPUTER SCIENCE. FACULTY: Jennifer Bowen, Chair Denise Byrnes, Associate Chair Sofia Visa
FACULTY: Jennifer Bowen, Chair Denise Byrnes, Associate Chair Sofia Visa COMPUTER SCIENCE Computer Science is the study of computer programs, abstract models of computers, and applications of computing.
Slides based in part on previous lectures by Mahesh Vishwanathan, and by Gul Agha January 21, 2014 1
Contact Information CS477 Formal Software Development Methods Elsa L Gunter 2112 SC, UIUC [email protected] http://courses.engr.illinois.edu/cs477 Office: 2112 SC Office Hours: Wednesdays 11:00am -
Program Synthesis is a Game
Program Synthesis is a Game Barbara Jobstmann CNRS/Verimag, Grenoble, France Outline Synthesis using automata- based game theory. MoBvaBon, comparison with MC and LTL. Basics Terminology Reachability/Safety
Model Checking LTL Properties over C Programs with Bounded Traces
Noname manuscript No. (will be inserted by the editor) Model Checking LTL Properties over C Programs with Bounded Traces Jeremy Morse 1, Lucas Cordeiro 2, Denis Nicole 1, Bernd Fischer 1,3 1 Electronics
Model Based Testing for Security Checking. Wissam Mallouli and Prof. Ana Cavalli National Institute of Telecommunications, France November 21, 2007
Model Based Testing for Security Checking Wissam Mallouli and Prof. Ana Cavalli National Institute of Telecommunications, France November 21, 2007 Outline Introduction Active/Passive Testing Active Testing
Institut für Parallele und Verteilte Systeme. Abteilung Anwendersoftware. Universität Stuttgart Universitätsstraße 38 D-70569 Stuttgart
Institut für Parallele und Verteilte Systeme Abteilung Anwendersoftware Universität Stuttgart Universitätsstraße 38 D-70569 Stuttgart Diplomarbeit Nr. 3243 Development and Evaluation of a Framework for
Automated Test Generation
Automated Test Generation (From a Behavioral Model) James M. Clarke Lucent Technologies 2000 Naperville Road Naperville, IL 60666-7033 (630) 979-1861 [email protected] Abstract The challenge for testers:
Eastern Washington University Department of Computer Science. Questionnaire for Prospective Masters in Computer Science Students
Eastern Washington University Department of Computer Science Questionnaire for Prospective Masters in Computer Science Students I. Personal Information Name: Last First M.I. Mailing Address: Permanent
The Eighth International Conference INCOSE_IL 2015. Formal Methods Security Tools in the Service of Cyber Security
The Eighth International Conference INCOSE_IL 2015 כלים ובדיקות Formal Methods Security Tools in the Service of Cyber Security Dr. Michael J. May Kinneret College on the Sea of Galilee 1 כלים ובדיקות /
Software Verification and System Assurance
Software Verification and System Assurance John Rushby Based on joint work with Bev Littlewood (City University UK) Computer Science Laboratory SRI International Menlo Park CA USA John Rushby, SR I Verification
Testing automation of projects in telecommunication domain
Testing automation of projects in telecommunication domain Alexey Veselov, Vsevolod Kotlyarov Saint-Petersburg State Polytechnic University, Saint-Petersburg, Russia [email protected], [email protected]
Master of Science in Computer Science
Master of Science in Computer Science Background/Rationale The MSCS program aims to provide both breadth and depth of knowledge in the concepts and techniques related to the theory, design, implementation,
Foundational Proof Certificates
An application of proof theory to computer science INRIA-Saclay & LIX, École Polytechnique CUSO Winter School, Proof and Computation 30 January 2013 Can we standardize, communicate, and trust formal proofs?
CHAPTER 1 INTRODUCTION
CHAPTER 1 INTRODUCTION 1.1 Research Motivation In today s modern digital environment with or without our notice we are leaving our digital footprints in various data repositories through our daily activities,
