Presentation is loading. Please wait.

Presentation is loading. Please wait.

© 2013 Carnegie Mellon University Vinta: Verification with INTerpolation and Abstract interpretation Arie Gurfinkel (SEI/CMU) with Aws Albarghouthi and.

Similar presentations


Presentation on theme: "© 2013 Carnegie Mellon University Vinta: Verification with INTerpolation and Abstract interpretation Arie Gurfinkel (SEI/CMU) with Aws Albarghouthi and."— Presentation transcript:

1 © 2013 Carnegie Mellon University Vinta: Verification with INTerpolation and Abstract interpretation Arie Gurfinkel (SEI/CMU) with Aws Albarghouthi and Marsha Chechik (U. of Toronto) and Sagar Chaki (SEI/CMU), and Yi Li (U. of Toronto) TexPoint fonts used in EMF. Read the TexPoint manual before you delete this box.: AAAA

2 2 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Copyright 2013 Carnegie Mellon University This material is based upon work funded and supported by the Department of Defense under Contract No. FA8721-05-C-0003 with Carnegie Mellon University for the operation of the Software Engineering Institute, a federally funded research and development center. Any opinions, findings and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the United States Department of Defense. NO WARRANTY. THIS CARNEGIE MELLON UNIVERSITY AND SOFTWARE ENGINEERING INSTITUTE MATERIAL IS FURNISHED ON AN AS-IS BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY KIND, EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF FITNESS FOR PURPOSE OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT MAKE ANY WARRANTY OF ANY KIND WITH RESPECT TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT. This material has been approved for public release and unlimited distribution. This material may be reproduced in its entirety, without modification, and freely distributed in written or electronic form without requesting formal permission. Permission is required for any other use. Requests for permission should be directed to the Software Engineering Institute at permission@sei.cmu.edu. permission@sei.cmu.edu DM-0000450

3 3 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Software is Everywhere

4 4 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Software is Full of Bugs! “Software easily rates as the most poorly constructed, unreliable, and least maintainable technological artifacts invented by man” Paul Strassman, former CIO of Xerox “Software easily rates as the most poorly constructed, unreliable, and least maintainable technological artifacts invented by man” Paul Strassman, former CIO of Xerox

5 5 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Software Engineering is very complex Complicated algorithms Many interconnected components Legacy systems Huge programming APIs … Software Engineers need better tools to deal with this complexity! Why so many bugs?

6 6 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University What Software Engineers Need Are … Tools that give better confidence than testing while remaining easy to use And at the same time, are … fully automatic … (reasonably) easy to use … provide (measurable) guarantees … come with guidelines and methodologies to apply effectively … apply to real software systems

7 7 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Automated Analysis Automated Analysis Software Model Checking with Predicate Abstraction e.g., Microsoft’s SDV Software Model Checking with Predicate Abstraction e.g., Microsoft’s SDV Automated Software Analysis Program Correct Incorrect Abstract Interpretation with Numeric Abstraction e.g., ASTREE, Polyspace Abstract Interpretation with Numeric Abstraction e.g., ASTREE, Polyspace

8 8 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Turing, 1936: “undecidable”

9 9 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University 9 Turing, 1949

10 10 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Motivation Abstract Interpretation is one of the most scalable approaches for program verification But, in practice, AI suffers from many false positives due to imprecise operations: join, widen imprecise semantics of operations: abstract post in-expressivity of abstract domains: weakly relational facts, … No CounterExamples and No Refinement Goal: Enhance Abstract Interpretation with Interpolation- based refinement strategy

11 11 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Outline (of the rest of the talk) Numeric Abstract Interpretation Vinta illustrated Abstract Interpretation with Unfoldings Abstract-Interpretation guided DAG-Interpolation Refinement Implementation Results of Software Verification Competition Secret Sauce Conclusions and Future Directions

12 12 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University From Programming to Modeling Extend C programming language with 3 modeling features Assertions assert(e) – aborts an execution when e is false, no-op otherwise Non-determinism nondet_int() – returns a non-deterministic integer value Assumptions assume(e) – “ignores” execution when e is false, no-op otherwise void assert (_Bool b) { if (!b) exit(); } int nondet_int () { int x; return x; } void assume (_Bool e) { while (!e) ; }

13 13 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University An Example int x, y; void main (void) { x = nondet_int (); assume (x > 10 && x <= 100); y = x + 1; assert (y > x); assert (y < 200); } int x, y; void main (void) { x = nondet_int (); assume (x > 10 && x <= 100); y = x + 1; assert (y > x); assert (y < 200); }

14 14 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Numeric Abstract Interpretation Analysis is restricted to a fixed Abstract Domain Abstract Domain ≡ “a (possibly infinite) set of predicates from a fixed theory” + efficient (abstract) operations Abstract DomainAbstract Elements Sign0 Box (or Interval) c 1  x  c 2 Octagon ± x ± y  c Polyhedraa 1 x 1 + a 2 x 2 + a 3 x 3 + a 4  0 Common Numeric Abstract Domains Legend x,yprogram variables c,c i,a i numeric constants

15 15 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Abstract Interpretation w/ Box Domain (1) if (3 <= y1 <= 4) { x1 := y1-2; x2 := y1+2; } else if (3 <= y2 <= 4) { x1 := y2-2; x2 := y2+2; } else return; assert (5 <= x1 + x2 <= 10); 3 <= y1 <= 4 1 <= x1 <= 2 5 <= x2 <= 6 3 <= y1 <= 4 1 <= x1 <= 2 5 <= x2 <= 6 3 <= y2 <= 4 1 <= x1 <= 2 5 <= x2 <= 6 3 <= y2 <= 4 1 <= x1 <= 2 5 <= x2 <= 6 1<=x1<=2 5<=x2<=6 1<=x1<=2 5<=x2<=6 Program 1 1 2 2 3 3 4 4 5 5 Steps:

16 16 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Abstract Interpretation w/ Box Domain (2) x := 0 while (x < 1000) { x := x + 1; } assert (x == 1000); Program x = 0 x = 1 0<= x <=1 1<= x <=2 0<= x <=2 1<= x <=3 0<= x <=1000 0<= x < 1000 1<= x <= 1000 x = 1000 widening 1 1 2 2 3 3 4 4 5 5 Steps: 6 6 7 7 8 8 9 9 10 11 12 13 14

17 17 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Abstract Domain as an Interface interface AbstractDomain(V) : V – set of variables A – abstract elements E – expressions S – statements α : E → A γ : A → E meet : A  A → A isTop : A → bool isBot : A → bool join : A  A → A leq : A  A → bool αPost : S → (A → A) widen : A  A → A All operations are over-approximations, e.g., γ (a) || γ (b)  γ ( join (a, b) ) γ (a) && γ (b)  γ (meet (a,b) ) abstract concretize abstract transformer order

18 18 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Example: Box Abstract Domain (1, 10) meet (2, 12) = (2,10) (1, 3) join (7, 12) = (1,12) 1  x  10 (1, 10) α α γ γ 1  x  10 (a, b) meet (c, d) = (max(a,c), min(b,d)) (a, b) join (c, d) = (min(a,c),max(b,d)) α Post (x := x + 1) ((a, b)) = (a+1, b+1)(1, 10) + 1 = (2, 11) Definition of Operations Examples over-approximation abstract concretize

19 19 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Abstract Interpretation w/ Box Domain (3) assume (i=1 || i=2) if (i = 1) x1 := i; else if (i = 2) x2 := -4; if (i = 1) assert (x1 > 0); else if (i = 2) assert (x2 < 0); 1 <= i <= 2 i=1 i=1 && x1=1 i=2 i=2 && x2=-4 1 <= i <= 2 i=1 i=2 Loss of precision due to join False Positive Program 1 1 2 2 3 3 4 4 5 5 Steps: 6 6 7 7 8 8

20 20 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Vinta: Verification with INTERP and AI uses Cutpoint Graph (CPG) maintains an unrolling of CPG computes disjunctive invariants uses novel powerset widening uses SMT to check for CEX DAG Interpolation for Refinement Guided by AI-computed Invs Fills in “gaps” in AI Abstract Interpretation Abstract Interpretation Refinement Program SAFE (+Invariant) SAFE (+Invariant) UNSAFE (+CEX) UNSAFE (+CEX) Interpolation Unsafe Invariant Strengthening

21 21 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Example: AI phase 1: x = 10; 2: while (*) x = x - 2; if (x == 9) 3: error(); 1: x = 10; 2: while (*) x = x - 2; if (x == 9) 3: error(); 1 2 2’ 2’’ 3 Alarm! Exploration: WTO Abstract Domain: Intervals Side effect: Labelled CFG unrolling Exploration: WTO Abstract Domain: Intervals Side effect: Labelled CFG unrolling

22 22 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Verification Conditions 1 2 2’ 2’ ’ 3 Instruction encoding Control-flow encoding 1: x = 10; 2: while (*) x = x - 2; if (x == 9) 3: error(); 1: x = 10; 2: while (*) x = x - 2; if (x == 9) 3: error();

23 23 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Craig Interpolation Theorem Theorem (Craig 1957) Let A and B be two First Order (FO) formulae such that A ) :B, then there exists a FO formula I, denoted ITP(A, B), such that A ) I I ) :B atoms(I) 2 atoms(A) Å atoms(B) Theorem (McMillan 2003) A Craig interpolant ITP(A, B) can be effectively constructed from a resolution proof of unsatisfiability of A Æ B In Model Checking, Craig Interpolation Theorem is used to safely over- approximate the set of (finitely) reachable states

24 24 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Craig Interpolation in Model Checking Over-Approximating Reachable States Let R i be the ith step of a transition system Let A = Init Æ R 0 Æ … Æ R n and B = Bad ITP (A, B) (if exists) is an over-approx of states reachable in n-steps that does not contain any Bad states A A B B ITP(A,B)

25 25 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University )))))) Interpolation Sequence Given a sequence of formulas A = {A i } i=0 n, an interpolation sequence ItpSeq(A) = {I 1, …, I n-1 } is a sequence of formulas such that I k is an ITP (A 0 Æ … Æ A k-1, A k Æ … Æ A n ), and 8 k<n. I k Æ A k +1 ) I k+1 A 0 A 1 A 2 A 3 A 4 A 5 A 6 I 0 I 1 I 2 I 3 I 4 I 5 If A i is a transition relation of step i, then the interpolation sequence is a proof why a program trace is safe.

26 26 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Exponential Path Explosion paths!

27 27 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University DAG Interpolants Given a DAG G = (V, E) and a labeling of edges ¼:E  Expr. A DAG Interpolant (if it exists) is a labeling I:V  Expr such that for any path v 0, …, v n, and 0 < k < n, I(v k ) = ITP (¼(v 0 ) Æ … Æ ¼ (v k-1 ), ¼(v k ) Æ … Æ ¼(v n )) 8 (u, v) 2 E. (I(u) Æ ¼ (u, v)) ) I(v) 1 2 3 45 7 6 ¼1¼1 ¼2¼2 ¼3¼3 ¼4¼4 ¼5¼5 ¼6¼6 ¼7¼7 ¼8¼8 I1I1 I2I2 I3I3 I4I4 I5I5 I6I6 I7I7 I 2 = ITP (¼ 1, ¼ 8 ) I 2 = ITP (¼ 1, ¼ 2 Æ ¼ 3 Æ ¼ 6 Æ ¼ 7 ) … (I 1 Æ ¼ 1 ) ) I 2 (I 2 Æ ¼ 8 ) ) I 7 (I 2 Æ ¼ 2 ) ) I 3 …

28 28 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University DAG Interpolation Algorithm Reduce DAG Interpolation to Sequence Interpolation! DagItp ((V, E), ¼ ) { ( A 0, …, A n ) = Encode(V, E, ¼ ) ( I 1, …, I n-1 ) = SeqItp( A 0, …, A n ) for i in [1, n-1] do J i = Clean( I i ) return ( J 1, …, J n-1 ) } DagItp ((V, E), ¼ ) { ( A 0, …, A n ) = Encode(V, E, ¼ ) ( I 1, …, I n-1 ) = SeqItp( A 0, …, A n ) for i in [1, n-1] do J i = Clean( I i ) return ( J 1, …, J n-1 ) } Encode input DAG by a set of constraints. One constraint per vertex. Compute interpolant sequence. One interpolant per vertex. Remove out-of-scope variables

29 29 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University DagItp: Encode 1 2 3 45 7 6 Encode ¼1¼1 ¼2¼2 ¼3¼3 ¼4¼4 ¼5¼5 ¼6¼6 ¼7¼7 ¼8¼8 v1v1 ) v2 Æ ¼1v1v1 ) v2 Æ ¼1 A1A1 v 2 ) (v 3 Æ ¼ 2 ) Ç (v 7 Æ ¼ 8 ) A2A2 v 3 ) (v 4 Æ ¼ 3 ) Ç (v 5 Æ ¼ 4 ) A3A3 v4 ) v6 Æ ¼6v4 ) v6 Æ ¼6 A4A4 v5 ) v6 Æ ¼5v5 ) v6 Æ ¼5 A5A5 v6 ) v7 Æ ¼7v6 ) v7 Æ ¼7 A6A6

30 30 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University DagItp: Sequence Interpolate 1 L 3 45 7 6 1 2 3 v1v1 ) v2 Æ ¼1v1v1 ) v2 Æ ¼1 A1A1 v 2 ) (v 3 Æ ¼ 2 ) Ç (v 7 Æ ¼ 8 ) A2A2 v 3 ) (v 4 Æ ¼ 3 ) Ç (v 5 Æ ¼ 4 ) A3A3 v4 ) v6 Æ ¼6v4 ) v6 Æ ¼6 A4A4 v5 ) v6 Æ ¼5v5 ) v6 Æ ¼5 A5A5 v6 ) v7 Æ ¼7v6 ) v7 Æ ¼7 A6A6 I4I4 I4I4

31 31 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University In our running example… 31 1 2 2’2’ 2 ’’ 3 How to use the results of AI here?

32 32 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Restricted DAG Interpolants 1 2 2’2’ 2 ’’ 3

33 33 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Refinement: Strengthening 1 2 2’ 2’’ 2’’’ Program is safe! 3 3 1: x = 10; 2: while (*) x = x - 2; if (x == 9) 3: error(); 1: x = 10; 2: while (*) x = x - 2; if (x == 9) 3: error();

34 34 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University VINTA from 30,000 ft Abstract Interpretation Alarm! Refinement w/ DAG Interpolants

35 35 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University VINTA from 30,000 ft Abstract Interpretation Refinement w/ DAG Interpolants Refinement recovers imprecision in: Join, Widening Abstract Transformer Inexpressive Abstract Domain

36 36 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Vinta is part of UFO 36 A framework and a tool for software verification Tightly integrates interpolation- and abstraction-based techniques References: [SAS12] Craig Interpretation [CAV12] UFO: A Framework for Abstraction- and Interpolation-based Software Verification [TACAS12] From Under-approximations to Over-approximations and Back [VMCAI12] Whale: An Interpolation-based Algorithm for Interprocedural Verification Check it out at: http://bitbucket.org/arieg/ufo Check it out at: http://bitbucket.org/arieg/ufo

37 37 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Implementation in UFO Framework C to LLVM C Program with assertions ARG Constructor Abstract Post Expansion Strategy Refinement Strategy Optimizer Cutpoint Graph SMT interface Mathsat Z3

38 © 2013 Carnegie Mellon University Software Verification Competition (SV-COMP 2013)

39 39 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University SV-COMP 2013 2 nd Software Verification Competition held at TACAS 2013 Goals Provide a snapshot of the state-of-the-art in software verification to the community. Increase the visibility and credits that tool developers receive. Establish a set of benchmarks for software verification in the community. Participants: BLAST, CPAChecker-Explicit, CPAChecker-SeqCom, CSeq, ESBMC, LLBMC, Predator, Symbiotic, Threader, UFO, Ultimate Benchmarks: C programs with ERROR label (programs include pointers, structures, etc.) Over 2,000 files, each 2K – 100K LOC Linux Device Drivers, SystemC, “Old” BLAST, Product Lines http://sv-comp.sosy-lab.org/2013/benchmarks.php http://sv-comp.sosy-lab.org/2013/

40 40 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University SV-COMP 2013: Scoring Scheme PointsReported ResultDescription 0UNKNOWN Failure to compute verification result, out of resources, program crash. +1 FALSE/UNSAFE correct The error in the program was found and an error path was reported. -4 FALSE/UNSAFE wrong An error is reported for a program that fulfills the property (false alarm, incomplete analysis). +2 TRUE/SAFE correct The program was analyzed to be free of errors. -8 TRUE/SAFE wrong The program had an error but the competition candidate did not find it (missed bug, unsound analysis). Ties are broken by run-time

41 41 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University UFO/VINTA Results UFO won gold in 4 categories Control Flow Integers (perfect score) Product Lines (perfect score) Device Drivers SystemC Performed much better than mature Predicate Abstraction-based tools VINTA with Box domain was most competitive for bug-discovery VINTA with Boxes domain was most competitive for proving safety http://sv-comp.sosy-lab.org/2013/results/index.php

42 42 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Secret Sauce UFO Front-End Vinta: combining UFO with Abstract Interpretation [SAS ‘2012] Boxes Abstract Domain [SAS ‘2010 w/ Sagar Chaki] DAG Interpolation [TACAS ‘2012 and SAS ‘2012] Run many variants in parallel

43 43 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University UFO Front End In principle simple, but in practice very messy CIL passes to normalize the code (library functions, uninitialized vars, etc.) llvm-gcc (without optimization) to compile C to LLVM bitcode llvm opt with many standard, custom, and modified optimizations – lower pointers, structures, unions, arrays, etc. to registers – constant propagation + many local optimizations – difficult to preserve indented semantics of the benchmarks – based on very old LLVM 2.6 (newer version of LLVM are “too smart”) Many benchmarks discharged by front-end alone 1,321 SAFE (out of 1,592) and 19 UNSAFE (out of 380) C to LLVM C Program with assertions Optimizer Cutpoint Graph

44 44 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Boxes Abstract Domain: Semantic View Boxes are “finite union of box values” (alternatively) Boxes are “Boolean formulas over interval constraints” Boxes are “finite union of box values” (alternatively) Boxes are “Boolean formulas over interval constraints”

45 45 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Linear Decision Diagrams in a Nutshell * x + 2y < 10 z < 10 1 1 0 0 Linear Decision Diagram decision node decision node true terminal true terminal false edge false edge (x + 2y < 10) OR (x + 2y  10 AND z < 10) Linear Arithmetic Formula Operations Propositional (AND, OR, NOT) Existential Quantification false terminal false terminal true edge true edge Compact Representation Sharing sub-expressions Local numeric reductions Dynamic node reordering * joint work w/ Ofer Strichman

46 46 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Boxes: Representation Represented by (Interval) Linear Decision Diagrams (LDD) BDDs + non-terminal nodes are labeled by interval constraints + extra rules retain complexity of BDD operations canonical representation for Boxes Abstract Domain available at http://lindd.sf.nethttp://lindd.sf.net LDD Semantics 12 1 3 (x ≤ 1 || x ≥ 2) && 1 ≤ y ≤ 3 (x ≤ 1 || x ≥ 2) && 1 ≤ y ≤ 3 Syntax

47 47 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Parallel Verification Strategy Run 7 verification strategies in parallel until a solution is found cpredO3 – all LLVM optimizations + Cartesian Predicate Abstraction bpredO3 – all LLVM optimizations + Boolean PA + 20s TO bigwO3 – all LLVM optimizations + BOXES + non-aggressive widening + 10s TO boxesO3 – all LLVM optimizations + BOXES + aggressive widening boxO3 – all LLVM optimizations + BOX + aggressive widening + 20s TO boxesO0 – minimal LLVM optimizations + BOXES + aggressive widening boxbpredO3 – all LLVM opts + BOX + Boolean PA + aggressive widening + 60s TO

48 48 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Vinta Family Whale [VMCAI12] Interpolation-based interprocedural analysis Interpolants as procedure summaries State/transition interpolation a.k.a. Tree Interpolants Refinement with DAG interpolants Tight integration of interpolation-based verification with predicate abstraction UFO [TACAS12] Vinta [SAS12] Refinement of Abstract Interpretation (AI) AI-guided DAG Interpolation

49 49 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Current and Future Work Symbolic Abstraction (w/ Aws Albarghouthi, Zak Kincaid, Yi Li, and Marsha Chechik) An abstract domain based on SMT-formulas DAG Interpolation via/for Non-Recursive Horn Clause Solving DAG Interpolation is an instance of Horn Clause Satisfiability Problem New interpolation-only-based solution Combining DAG-Interpolation and other Horn Clause solving methods Tighter integration of existing engines and passes our current solution is “embarrassingly parallel” there are many other strategies with better defined communication between components and “failed” attempts Spacer (w/ Anvesh Komuravelli, Sagar Chaki, and Ed Clarke)

50 50 Vinta Arie Gurfinkel © 2013 Carnegie Mellon University Contact Information Presenter Arie Gurfinkel RTSS Telephone: +1 412-268-7788 Email: arie@cmu.eduarie@cmu.edu U.S. mail: Software Engineering Institute Customer Relations 4500 Fifth Avenue Pittsburgh, PA 15213-2612 USA Web: www.sei.cmu.edu http://www.sei.cmu.edu/contact.cfm Customer Relations Email: info@sei.cmu.edu Telephone: +1 412-268-5800 SEI Phone: +1 412-268-5800 SEI Fax: +1 412-268-6257

51 © 2013 Carnegie Mellon University THE END


Download ppt "© 2013 Carnegie Mellon University Vinta: Verification with INTerpolation and Abstract interpretation Arie Gurfinkel (SEI/CMU) with Aws Albarghouthi and."

Similar presentations


Ads by Google