SlideShare a Scribd company logo
1 of 27
Download to read offline
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Budapest University of Technology and Economics
Department of Measurement and Information Systems
A Configurable CEGAR Framework
with Interpolation-Based Refinements
Ákos Hajdu1,2, Tamás Tóth2, András Vörös1,2, István Majzik2
1MTA-BME Lendület Cyber-Physical Systems Research Group,
Budapest, Hungary
2Fault Tolerant Systems Research Group
Department of Measurement and Information Systems,
Budapest University of Technology and Economics
FORTE 2016, Heraklion, Greece, 08.06.2016.
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
INTRODUCTION
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Introduction – Formal methods
 Proving correctness
 Model checking
o State space explosion
 Abstraction-based methods
o Over-approximation
o Problem: proper precision (coarse ↔ fine)
o Counterexample-Guided Abstraction Refinement [Clarke et al.’03]
• Start with a coarse abstraction
• Refine until sufficient precision is reached
Model Property
Ok Counterexample
Model checker
Never „Red”
and „Green”
the same time
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Introduction – CEGAR
Concrete model Abstraction Abstract model
Abstract counterexampleSpurious counterexampleRefined model
Init
Check
OK
Concretize
Counterexample
Refine
Model,
property
Abstract model
Property holds
Abstract counterex
Concrete
Spurious
State
Transition
Error state
Abstract state
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Motivation
 Generic framework with interchangeable parts
o Different abstraction methods
• Based on symbolic representation of abstract states
o Different refinement strategies
• Based on splitting abstract states
Init
Check
OK
Concretize
Counterexample
Refine
Model,
property
Abstract model
Property holds
Abstract counterex
Concrete
Spurious
• Predicate abstraction
• Explicit value abstraction
• …
• Craig interpolation
• Sequence interpolation
• …
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
A CONFIGURABLE CEGAR FRAMEWORK
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Formal model and property
 Symbolic Transition System (STS)
var loc : integer
var x : integer
invariant 0 <= loc and loc <= 3
initial loc = 0
transition
(loc = 0 and loc' = 1 and x' = 0) or
(loc = 1 and x < 5 and loc' = 2 and x' = x) or
(loc = 1 and x >= 5 and loc' = 3 and x' = x) or
(loc = 2 and loc' = 1 and x' = x + 1)
models x <= 5
int x
0: x = 0
1: while (x < 5) {
2: x = x + 1
3: }
Variables
Initial formula
Invariant formula
Transition formula
Safety property to be checked:
Is x <= 5 for all reachable states?
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Check
OK
Concretize
Counterexample
Refine
Property holds
Abstract counterex
Concrete
Spurious
Initial abstraction
1. Predicate abstraction [Graf & Saidi’97]
o Track predicates instead of concrete values
o |P| predicates → 2|P| potential abstract states
o Label of a state: predicates, e.g. ¬(x > y) Ʌ (y = 3)
Init
Model,
property
Abstract model
(x > y) ¬(x > y)
(y = 3)
(x=1, y=3)
(x=2, y=3)
(x=3, y=3)
¬(y = 3)
(x=2, y=1)
(x=3, y=1)
(x=3, y=2)
(x=1, y=1)
(x=1, y=2)
(x=2, y=2)
Variables:
x, y; Dx = Dy = {1, 2, 3}
Predicates:
(x > y), (y = 3)
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Initial abstraction
2. Explicit value abstraction [Clarke et al.’04]
o Partition variables: visible / invisible
o Track values for visible variables only
o Label of a state: assignment, e.g. (x = 1) Ʌ (y = 2)
Variables: x, y, z
Dx = {0, 1} , Dy = {0, 1, 2}, Dz = {0, 1}
Visible = {x, y}
x=0 x=1
y=0
(x=0, y=0, z=0)
(x=0, y=0, z=1)
(x=1, y=0, z=0)
(x=1, y=0, z=1)
y=1
(x=0, y=1, z=0)
(x=0, y=1, z=1)
(x=1, y=1, z=0)
(x=1, y=1, z=1)
y=2
(x=0, y=2, z=0)
(x=0, y=2, z=1)
(x=1, y=2, z=0)
(x=1, y=2, z=1)
Check
OK
Concretize
Counterexample
Refine
Property holds
Abstract counterex
Concrete
Spurious
Init
Model,
property
Abstract model
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Initial abstraction
 Predicates vs. explicit values
o Variable with large domain → predicates
o Variable appearing in many predicates → explicit
3. Combined abstraction
o Predicates + explicit values for a set of variables
o Explicit variables
• User input
• Heuristics (e.g., location variable)
Check
OK
Concretize
Counterexample
Refine
Property holds
Abstract counterex
Concrete
Spurious
Init
Model,
property
Abstract model
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Concretize
Counterexample
Refine
Concrete
Spurious
Init
Model,
property
Model checking
 Explicitly traverse abstract state space
 Safety properties
o φ holds for each reachable state (AG φ)
o Counterexample: loop-free path
 Optimizations
o Explicit values: on-the-fly
o Predicates: incremental
Check
OK
Property holds
Abstract counterexAbstract model
¬φ
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Check
OK
Refine
Property holds
Init
Model,
property
Abstract model
Counterexample concretization
 Traverse subset of concrete state space
o Similar to bounded model checking
• Init1 Ʌ Label1 Ʌ Trans1 Ʌ Label2 Ʌ Trans2 Ʌ … Ʌ Transn-1 Ʌ Labeln
o Concrete counterexample
o Spurious counterexample
• Failure state (sf)
sf
Concretize
Counterexample
Abstract counterex
Concrete
Spurious
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Check
OK
Concretize
Counterexample
Property holds
Abstract counterex
Concrete
Init
Model,
property
Abstract model
Abstraction refinement
 Classify states mapped to the failure state
o D = Dead-end: reachable
• Init1 Ʌ Label1 Ʌ Trans1 Ʌ … Ʌ Transf-1 Ʌ Labelf
o B = Bad: transition to next state
• Labelf Ʌ Transf Ʌ Labelf+1
o IR = Irrelevant: others
 Goal: finer abstraction mapping D and B to separate
abstract states
Refine
Spurious
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Abstraction refinement
1. Predicate refinement
o Characterize D and B with formulas, such that D Ʌ B is
unsatisfiable
o Craig interpolation [Henzinger et al.’04]
• A predicate φ exists corresponding to
variables of sf
• Generalizing D, contradicting B
o P U {φ} eliminates the spurious counterexample
• Lazy abstraction: only split sf
φ
¬φ
Check
OK
Concretize
Counterexample
Property holds
Abstract counterex
Concrete
Init
Model,
property
Abstract model
Refine
Spurious
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Abstraction refinement
2. Explicit value refinement
o Make some invisible variables visible
• Variables that can distinguish D and B
o Craig interpolation: generate φ as in predicate refinement
• Visible := Visible + variables in φ
Check
OK
Concretize
Counterexample
Property holds
Abstract counterex
Concrete
Init
Model,
property
Abstract model
Refine
Spurious
Dead-end (x=0, y=1, …)
(x=0, y=1, …)
Irrelevant (x=0, y=1, …)
(x=0, y=0, …)
Bad (x=0, y=0, …)
(x=0, y=0, …)
Visible = {x}
Invisible = {y, …}
Sf: (x=0)
Visible = {x, y}
Invisible = {…}
φ: (y < 1)
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Abstraction refinement
 Generalization: sequence interpolation [McMillan’06]
o Sequence of interpolants, one for each state (of the counterex.)
o Predicate refinement: split a sequence of states
o Explicit value refinement: extract variables from sequence
Check
OK
Concretize
Counterexample
Property holds
Abstract counterex
Concrete
Init
Model,
property
Abstract model
Refine
Spurious
φ1 φ2 φ3 φ4
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
EVALUATION
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Evaluation
 Java implementation
o Z3 solver
 Configurations
 +/− property satisfied or violated
Abstraction Refinement
PC Predicate Craig interpolation
PS Predicate Sequence interpolation
CC Combined Craig interpolation
CS Combined Sequence interpolation
EC Explicit value Craig interpolation
ES Explicit value Sequence interpolation
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Evaluation
 Industrial PLC models (runtime, s)
o L: locations, V: variables
o CC, CS: location as explicit variable
L V PC PS CC CS EC ES
−PLC01 36 66 22.5 50.2 42.0 48.5 36.4 211.8
−PLC02 36 66 22.7 49.4 41.0 47.3 32.2 428.5
+PLC03 17 29 479.2 99.2 28.2 51.8 5.2 9.9
−PLC04 17 29 40.2 14.4 17.6 6.1 3.3 3.8
+PLC04 17 29 44.0 406.7 34.3 36.1 7.6 38.0
+PLC05 17 29 42.2 21.4 17.4 6.3 3.5 4.7
+PLC06 43 82 1512.8 333.1 227.5 1254.5
+PLC07 43 82 190.8 462.2 164.8 164.8 78.1 50.9
−PLC08 43 82 86.1 46.7 46.2 65.1 123.0
+PLC09 14 23 87.4 94.6 61.3 35.7 11.8 14.5
Best performance
for most models
Combined outperforms
pure predicate
Combined outperforms
pure predicate
No preprocessing
reductions
Largest state
space
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Evaluation
 Fischer’s protocol (runtime, s)
o Mutual exclusion algorithm
o #: number of participants
o Clock variables → infinite state space
o CC, CS: lock as explicit variable
# PC PS CC CS
+2 1.2 3.0 0.8 1.2
−2 0.6 1.1 0.8 1.2
+3 12.1 68.2 10.3 45.8
−3 1.4 1.5 1.7 2.9
Craig itp. is
more efficient
Craig itp. is
more efficient
Property holds
Property violated
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Evaluation
 Hardware models (runtime, s)
o Hardware Model Checking Competition
o I: inputs, L: latches, A: and-gates
I L A PC PS EC ES
+mutexp0 11 20 159 10.3 24.5 14.3 22.7
+mutexp0neg 11 20 159 6.1 3.7 8.8 6.7
−nusmv.syncarb52.B 5 10 52 1.3 3.1 0.7 0.2
−nusmv.syncarb102.B 10 20 157 31.6 117.9 239.8 1.6
−pdtpmsarbiter 3 46 209 0.5 4.6 5.3 7.8
+ringp0 15 25 145 16.4 25.6 16.1 14.5
+ringp0neg 15 25 145 7.8 35.7 187.5 108.2
+srg5ptimonegnv 30 47 304 0.3 0.5 1.7 1.3
Predicate abs. is
more efficient
with Craig itp.
Expl. val. abs. is
more efficient
with sequence itp.
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
CONCLUSIONS
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Conclusions
 Results
o Configurable CEGAR framework
• Different abstraction methods
• Different refinement strategies
• Initial abstraction: predicates with explicit values
o Evaluation
• Behavior of several configurations
on different models
 Future work
o Further configurations
o Heuristics for configuration selection
hajdua@mit.bme.hu
inf.mit.bme.hu/en/members/hajdua
Model1
Model2
Model3
Config1
Config2
Config3
Init
Check Concretize
Refine
• Predicate
• Explicit value
• Combined
• Craig itp.
• Sequence itp.
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
References
 [Clarke et al.’03] Clarke, E., Grumberg, O., Jha, S., Lu, Y., Veith, H.:
Counterexample-guided abstraction refinement for symbolic model
checking. J. ACM 50(5), 752–794 (2003)
 [Graf & Saidi’97] Graf, S., Saidi, H.: Construction of abstract state graphs
with PVS. In: Grumberg, O. (ed.) CAV 1997. LNCS, vol. 1254, pp. 72–83.
Springer, Heidelberg (1997)
 [Clarke et al.’04] Clarke, E.M., Gupta, A., Strichman, O.: SAT-based
counterexample-guided abstraction refinement. IEEE Trans. Comput.
Aided Des. Integr. Circuits Syst. 23(7), 1113–1123 (2004)
 [Henzinger et al.’04] Henzinger, T.A., Jhala, R., Majumdar, R., McMillan,
K.L.: Abstractions from proofs. In: Proceedings of the 31st ACM SIGPLAN-
SIGACT Symposium on Principles of Programming Languages, pp. 232–
244. ACM (2004)
 [McMillan’06] McMillan, K.L.: Lazy abstraction with interpolants. In: Ball,
T., Jones, R.B. (eds.) CAV 2006. LNCS, vol. 4144, pp. 123–136. Springer,
Heidelberg (2006)
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Details of measurements
L V
PC PS CC CS EC ES
T #R #S T #R #S T #R #S T #R #S T #R #S T #R #S
−PLC01 36 66 22.5 33 100 50.2 34 191 42 20 452 48.5 1 81 36.4 7 1640 211.8 3 758
−PLC02 36 66 22.7 33 100 49.4 34 191 41 20 452 47.3 1 81 32.2 7 1697 428.5 5 1439
+PLC03 17 29 479.2 195 6694 99.2 23 292 28.2 34 629 51.8 6 212 5.2 1 339 9.9 1 369
−PLC04 17 29 40.2 64 1076 14.4 16 82 17.6 21 353 6.1 2 47 3.3 1 165 3.8 1 165
+PLC04 17 29 44 65 1069 406.7 31 1198 34.3 35 650 36.1 5 192 7.6 2 274 38 1 209
+PLC05 17 29 42.2 63 1130 21.4 17 98 17.4 21 352 6.3 2 47 3.5 1 167 4.7 1 167
+PLC06 43 82 1512.8 159 4812 333.1 52 1369 227.5 2 120 1254.5 3 20956
+PLC07 43 82 190.8 58 552 462.2 66 1057 164.8 26 657 164.8 1 70 78.1 2 1163 50.9 1 518
−PLC08 43 82 86.1 37 111 46.7 0 43 46.2 0 43 65.1 2 628 123 3 541
+PLC09 14 23 87.4 90 1716 94.6 32 633 61.3 94 1845 35.7 11 193 11.8 5 1261 14.5 4 833
 Industrial PLC models
o L: locations, V: variables
o T: runtime (s), #R: refinements, #S: total abstract states
o CC, CS: location as explicit variable
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Details of measurements
#
PC PS CC CS
T #R #S T #R #S T #R #S T #R #S
+2 1.2 17 69 3 15 107 0.8 18 66 1.2 14 78
−2 0.6 11 41 1.1 9 45 0.8 18 62 1.2 12 58
+3 12.1 97 998 68.1 101 1584 10.3 93 1329 45.8 99 1334
−3 1.4 19 70 1.5 9 44 1.7 28 121 2.9 21 105
 Fischer’s protocol
o Mutual exclusion algorithm
o #: number of participants
o Clock variables → infinite state space
o CC, CS: lock as explicit variable
o T: runtime (s), #R: refinements, #S: total abstract states
Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements
Details of measurements
 Hardware models
o Hardware Model Checking Competition
o I: inputs, L: latches, A: and-gates
o T: runtime (s), #R: refinements, #S: total abstract states
I L A
PC PS EC ES
T #R #S T #R #S T #R #S T #R #S
+mutexp0 11 20 159 10.3 63 494 24.5 43 420 14.3 8 742 22.7 7 806
+mutexp0neg 11 20 159 6.1 44 284 3.7 12 82 8.8 9 441 6.7 6 330
−nusmv.syncarb52.B 5 10 52 1.3 30 139 3.1 14 132 0.7 6 113 0.2 2 18
−nusmv.syncarb102.B 10 20 157 31.6 110 779 117.9 56 1491 239.8 11 5179 1.6 2 32
−pdtpmsarbiter 3 46 209 0.5 6 22 4.6 6 22 5.3 15 130 7.8 13 108
+ringp0 15 25 145 16.4 55 300 25.6 19 127 16.1 10 763 14.5 7 657
+ringp0neg 15 25 145 7.8 21 83 35.7 31 237 187.5 11 4870 108.2 7 2629
+srg5ptimonegnv 30 47 304 0.3 3 9 0.5 4 15 1.7 4 40 1.3 3 36

More Related Content

What's hot

JavaOne 2016: Code Generation with JavaCompiler for Fun, Speed and Business P...
JavaOne 2016: Code Generation with JavaCompiler for Fun, Speed and Business P...JavaOne 2016: Code Generation with JavaCompiler for Fun, Speed and Business P...
JavaOne 2016: Code Generation with JavaCompiler for Fun, Speed and Business P...Juan Cruz Nores
 
Fixed point theorems for random variables in complete metric spaces
Fixed point theorems for random variables in complete metric spacesFixed point theorems for random variables in complete metric spaces
Fixed point theorems for random variables in complete metric spacesAlexander Decker
 
Ben Carterett — Advances in Information Retrieval Evaluation
Ben Carterett — Advances in Information Retrieval EvaluationBen Carterett — Advances in Information Retrieval Evaluation
Ben Carterett — Advances in Information Retrieval Evaluationyaevents
 
Mixing Functional and Object Oriented Approaches to Programming in C#
Mixing Functional and Object Oriented Approaches to Programming in C#Mixing Functional and Object Oriented Approaches to Programming in C#
Mixing Functional and Object Oriented Approaches to Programming in C#Skills Matter
 
A Fast Near Optimal Vertex Cover Algorithm (NOVCA)
A Fast Near Optimal Vertex Cover Algorithm (NOVCA)A Fast Near Optimal Vertex Cover Algorithm (NOVCA)
A Fast Near Optimal Vertex Cover Algorithm (NOVCA)Waqas Tariq
 
ZK Study Club: Sumcheck Arguments and Their Applications
ZK Study Club: Sumcheck Arguments and Their ApplicationsZK Study Club: Sumcheck Arguments and Their Applications
ZK Study Club: Sumcheck Arguments and Their ApplicationsAlex Pruden
 
R package 'bayesImageS': a case study in Bayesian computation using Rcpp and ...
R package 'bayesImageS': a case study in Bayesian computation using Rcpp and ...R package 'bayesImageS': a case study in Bayesian computation using Rcpp and ...
R package 'bayesImageS': a case study in Bayesian computation using Rcpp and ...Matt Moores
 
Bayesian Inference and Uncertainty Quantification for Inverse Problems
Bayesian Inference and Uncertainty Quantification for Inverse ProblemsBayesian Inference and Uncertainty Quantification for Inverse Problems
Bayesian Inference and Uncertainty Quantification for Inverse ProblemsMatt Moores
 
bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...
bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...
bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...Matt Moores
 
2006 Small Scheme
2006 Small Scheme2006 Small Scheme
2006 Small Schemebergel
 
FPGA Implementation of A New Chien Search Block for Reed-Solomon Codes RS (25...
FPGA Implementation of A New Chien Search Block for Reed-Solomon Codes RS (25...FPGA Implementation of A New Chien Search Block for Reed-Solomon Codes RS (25...
FPGA Implementation of A New Chien Search Block for Reed-Solomon Codes RS (25...IJERA Editor
 

What's hot (18)

JavaOne 2016: Code Generation with JavaCompiler for Fun, Speed and Business P...
JavaOne 2016: Code Generation with JavaCompiler for Fun, Speed and Business P...JavaOne 2016: Code Generation with JavaCompiler for Fun, Speed and Business P...
JavaOne 2016: Code Generation with JavaCompiler for Fun, Speed and Business P...
 
Fixed point theorems for random variables in complete metric spaces
Fixed point theorems for random variables in complete metric spacesFixed point theorems for random variables in complete metric spaces
Fixed point theorems for random variables in complete metric spaces
 
Ben Carterett — Advances in Information Retrieval Evaluation
Ben Carterett — Advances in Information Retrieval EvaluationBen Carterett — Advances in Information Retrieval Evaluation
Ben Carterett — Advances in Information Retrieval Evaluation
 
Pattern Matching in Java 14
Pattern Matching in Java 14Pattern Matching in Java 14
Pattern Matching in Java 14
 
Mixing Functional and Object Oriented Approaches to Programming in C#
Mixing Functional and Object Oriented Approaches to Programming in C#Mixing Functional and Object Oriented Approaches to Programming in C#
Mixing Functional and Object Oriented Approaches to Programming in C#
 
A0750105
A0750105A0750105
A0750105
 
CSC446: Pattern Recognition (LN5)
CSC446: Pattern Recognition (LN5)CSC446: Pattern Recognition (LN5)
CSC446: Pattern Recognition (LN5)
 
Beck Workshop on Modelling and Simulation of Coal-fired Power Generation and ...
Beck Workshop on Modelling and Simulation of Coal-fired Power Generation and ...Beck Workshop on Modelling and Simulation of Coal-fired Power Generation and ...
Beck Workshop on Modelling and Simulation of Coal-fired Power Generation and ...
 
Zhou ciclops floc06
Zhou ciclops floc06Zhou ciclops floc06
Zhou ciclops floc06
 
A Fast Near Optimal Vertex Cover Algorithm (NOVCA)
A Fast Near Optimal Vertex Cover Algorithm (NOVCA)A Fast Near Optimal Vertex Cover Algorithm (NOVCA)
A Fast Near Optimal Vertex Cover Algorithm (NOVCA)
 
Kpi driven-java-development-fn conf
Kpi driven-java-development-fn confKpi driven-java-development-fn conf
Kpi driven-java-development-fn conf
 
ZK Study Club: Sumcheck Arguments and Their Applications
ZK Study Club: Sumcheck Arguments and Their ApplicationsZK Study Club: Sumcheck Arguments and Their Applications
ZK Study Club: Sumcheck Arguments and Their Applications
 
R package 'bayesImageS': a case study in Bayesian computation using Rcpp and ...
R package 'bayesImageS': a case study in Bayesian computation using Rcpp and ...R package 'bayesImageS': a case study in Bayesian computation using Rcpp and ...
R package 'bayesImageS': a case study in Bayesian computation using Rcpp and ...
 
Software engineering
Software engineeringSoftware engineering
Software engineering
 
Bayesian Inference and Uncertainty Quantification for Inverse Problems
Bayesian Inference and Uncertainty Quantification for Inverse ProblemsBayesian Inference and Uncertainty Quantification for Inverse Problems
Bayesian Inference and Uncertainty Quantification for Inverse Problems
 
bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...
bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...
bayesImageS: Bayesian computation for medical Image Segmentation using a hidd...
 
2006 Small Scheme
2006 Small Scheme2006 Small Scheme
2006 Small Scheme
 
FPGA Implementation of A New Chien Search Block for Reed-Solomon Codes RS (25...
FPGA Implementation of A New Chien Search Block for Reed-Solomon Codes RS (25...FPGA Implementation of A New Chien Search Block for Reed-Solomon Codes RS (25...
FPGA Implementation of A New Chien Search Block for Reed-Solomon Codes RS (25...
 

Viewers also liked

Tu duy thong_minh 1__john_g._miller
Tu duy thong_minh 1__john_g._millerTu duy thong_minh 1__john_g._miller
Tu duy thong_minh 1__john_g._milleranhngoc890
 
Cloud Computing & Application Planning for Cloud
Cloud Computing & Application Planning for CloudCloud Computing & Application Planning for Cloud
Cloud Computing & Application Planning for CloudAzhar Khan
 
Ldc arittapatti project
Ldc arittapatti projectLdc arittapatti project
Ldc arittapatti projectdevadhakshan
 
Camera angles and shots
Camera angles and shotsCamera angles and shots
Camera angles and shotsMantas Bruzas
 
Master mx 28ª edicion
Master mx 28ª edicionMaster mx 28ª edicion
Master mx 28ª edicionMaster Mx
 
ZIA 2016 PRESENTATION-OTK
ZIA 2016 PRESENTATION-OTKZIA 2016 PRESENTATION-OTK
ZIA 2016 PRESENTATION-OTKChippy Simumba
 
ILUC prevention Strategies for Sustainable Biofuels 20150402_Romania
ILUC prevention Strategies for Sustainable Biofuels 20150402_RomaniaILUC prevention Strategies for Sustainable Biofuels 20150402_Romania
ILUC prevention Strategies for Sustainable Biofuels 20150402_RomaniaIulia Pisca
 
Curriculum Vitae of Ghassan M Bafarat
Curriculum Vitae of  Ghassan M  BafaratCurriculum Vitae of  Ghassan M  Bafarat
Curriculum Vitae of Ghassan M BafaratGhassan Bafarat
 
Exploratory Analysis of the Performance of a Configurable CEGAR Framework
Exploratory Analysis of the Performance of a Configurable CEGAR FrameworkExploratory Analysis of the Performance of a Configurable CEGAR Framework
Exploratory Analysis of the Performance of a Configurable CEGAR FrameworkAkos Hajdu
 
Evaluation Institutions
Evaluation InstitutionsEvaluation Institutions
Evaluation InstitutionsRyanHalliday_
 
Presentación de prácticas
Presentación de prácticasPresentación de prácticas
Presentación de prácticasJhoana Rodriguez
 
โครงงานคอมเทอมสอง เรื่องผม
โครงงานคอมเทอมสอง เรื่องผมโครงงานคอมเทอมสอง เรื่องผม
โครงงานคอมเทอมสอง เรื่องผมsoonthareeluck tunthong
 
Evaluation task 1
Evaluation task 1Evaluation task 1
Evaluation task 1wfbennett
 
How To Video Transcript
How To Video TranscriptHow To Video Transcript
How To Video Transcriptcseerussell
 

Viewers also liked (20)

CreativEva
CreativEvaCreativEva
CreativEva
 
Tu duy thong_minh 1__john_g._miller
Tu duy thong_minh 1__john_g._millerTu duy thong_minh 1__john_g._miller
Tu duy thong_minh 1__john_g._miller
 
EXPORTING ARTWORKS TO ARGENTINA
EXPORTING ARTWORKS TO ARGENTINAEXPORTING ARTWORKS TO ARGENTINA
EXPORTING ARTWORKS TO ARGENTINA
 
Cloud Computing & Application Planning for Cloud
Cloud Computing & Application Planning for CloudCloud Computing & Application Planning for Cloud
Cloud Computing & Application Planning for Cloud
 
Ldc arittapatti project
Ldc arittapatti projectLdc arittapatti project
Ldc arittapatti project
 
Camera angles and shots
Camera angles and shotsCamera angles and shots
Camera angles and shots
 
Master mx 28ª edicion
Master mx 28ª edicionMaster mx 28ª edicion
Master mx 28ª edicion
 
Certified qa qc E and I engineer
Certified qa qc E and I engineer Certified qa qc E and I engineer
Certified qa qc E and I engineer
 
ZIA 2016 PRESENTATION-OTK
ZIA 2016 PRESENTATION-OTKZIA 2016 PRESENTATION-OTK
ZIA 2016 PRESENTATION-OTK
 
ILUC prevention Strategies for Sustainable Biofuels 20150402_Romania
ILUC prevention Strategies for Sustainable Biofuels 20150402_RomaniaILUC prevention Strategies for Sustainable Biofuels 20150402_Romania
ILUC prevention Strategies for Sustainable Biofuels 20150402_Romania
 
Curriculum Vitae of Ghassan M Bafarat
Curriculum Vitae of  Ghassan M  BafaratCurriculum Vitae of  Ghassan M  Bafarat
Curriculum Vitae of Ghassan M Bafarat
 
Portfolio_2015
Portfolio_2015Portfolio_2015
Portfolio_2015
 
WrightSURP2016
WrightSURP2016WrightSURP2016
WrightSURP2016
 
Exploratory Analysis of the Performance of a Configurable CEGAR Framework
Exploratory Analysis of the Performance of a Configurable CEGAR FrameworkExploratory Analysis of the Performance of a Configurable CEGAR Framework
Exploratory Analysis of the Performance of a Configurable CEGAR Framework
 
Evaluation Institutions
Evaluation InstitutionsEvaluation Institutions
Evaluation Institutions
 
Presentación de prácticas
Presentación de prácticasPresentación de prácticas
Presentación de prácticas
 
โครงงานคอมเทอมสอง เรื่องผม
โครงงานคอมเทอมสอง เรื่องผมโครงงานคอมเทอมสอง เรื่องผม
โครงงานคอมเทอมสอง เรื่องผม
 
Evaluation task 1
Evaluation task 1Evaluation task 1
Evaluation task 1
 
Colposcopia 2
Colposcopia 2Colposcopia 2
Colposcopia 2
 
How To Video Transcript
How To Video TranscriptHow To Video Transcript
How To Video Transcript
 

Similar to A Configurable CEGAR Framework with Interpolation-Based Refinements

Software Verification with Abstraction-Based Methods
Software Verification with Abstraction-Based MethodsSoftware Verification with Abstraction-Based Methods
Software Verification with Abstraction-Based MethodsAkos Hajdu
 
Exploiting Hierarchy in the Abstraction-Based Verification of Statecharts Usi...
Exploiting Hierarchy in the Abstraction-Based Verification of Statecharts Usi...Exploiting Hierarchy in the Abstraction-Based Verification of Statecharts Usi...
Exploiting Hierarchy in the Abstraction-Based Verification of Statecharts Usi...Akos Hajdu
 
Julia Kreutzer - 2017 - Bandit Structured Prediction for Neural Seq2Seq Learning
Julia Kreutzer - 2017 - Bandit Structured Prediction for Neural Seq2Seq LearningJulia Kreutzer - 2017 - Bandit Structured Prediction for Neural Seq2Seq Learning
Julia Kreutzer - 2017 - Bandit Structured Prediction for Neural Seq2Seq LearningAssociation for Computational Linguistics
 
Integral Calculus Anti Derivatives reviewer
Integral Calculus Anti Derivatives reviewerIntegral Calculus Anti Derivatives reviewer
Integral Calculus Anti Derivatives reviewerJoshuaAgcopra
 
Relations as Executable Specifications
Relations as Executable SpecificationsRelations as Executable Specifications
Relations as Executable SpecificationsNuno Macedo
 
Test Suite Generation for Boolean Conditions with Equivalence Class Partitioning
Test Suite Generation for Boolean Conditions with Equivalence Class PartitioningTest Suite Generation for Boolean Conditions with Equivalence Class Partitioning
Test Suite Generation for Boolean Conditions with Equivalence Class PartitioningSylvain Hallé
 
Automated theorem proving for special functions: the next phase
Automated theorem proving for special functions: the next phaseAutomated theorem proving for special functions: the next phase
Automated theorem proving for special functions: the next phaseLawrence Paulson
 
An optimal and progressive algorithm for skyline queries slide
An optimal and progressive algorithm for skyline queries slideAn optimal and progressive algorithm for skyline queries slide
An optimal and progressive algorithm for skyline queries slideWooSung Choi
 
MuVM: Higher Order Mutation Analysis Virtual Machine for C
MuVM: Higher Order Mutation Analysis Virtual Machine for CMuVM: Higher Order Mutation Analysis Virtual Machine for C
MuVM: Higher Order Mutation Analysis Virtual Machine for CSusumu Tokumoto
 
Practical and Worst-Case Efficient Apportionment
Practical and Worst-Case Efficient ApportionmentPractical and Worst-Case Efficient Apportionment
Practical and Worst-Case Efficient ApportionmentRaphael Reitzig
 
Managing Uncertainties in Hardware-Software Codesign Projects
Managing Uncertainties in Hardware-Software Codesign ProjectsManaging Uncertainties in Hardware-Software Codesign Projects
Managing Uncertainties in Hardware-Software Codesign ProjectsJones Albuquerque
 
Promoting preventive mitigation of buildings against hurricanes
Promoting preventive mitigation of buildings against hurricanesPromoting preventive mitigation of buildings against hurricanes
Promoting preventive mitigation of buildings against hurricanesBejoy Alduse
 
Sep logic slide
Sep logic slideSep logic slide
Sep logic sliderainoftime
 
Scoped dynamic rewrite rules
Scoped dynamic rewrite rulesScoped dynamic rewrite rules
Scoped dynamic rewrite rulesEelco Visser
 

Similar to A Configurable CEGAR Framework with Interpolation-Based Refinements (20)

Software Verification with Abstraction-Based Methods
Software Verification with Abstraction-Based MethodsSoftware Verification with Abstraction-Based Methods
Software Verification with Abstraction-Based Methods
 
Exploiting Hierarchy in the Abstraction-Based Verification of Statecharts Usi...
Exploiting Hierarchy in the Abstraction-Based Verification of Statecharts Usi...Exploiting Hierarchy in the Abstraction-Based Verification of Statecharts Usi...
Exploiting Hierarchy in the Abstraction-Based Verification of Statecharts Usi...
 
MUMS: Bayesian, Fiducial, and Frequentist Conference - Model Selection in the...
MUMS: Bayesian, Fiducial, and Frequentist Conference - Model Selection in the...MUMS: Bayesian, Fiducial, and Frequentist Conference - Model Selection in the...
MUMS: Bayesian, Fiducial, and Frequentist Conference - Model Selection in the...
 
Julia Kreutzer - 2017 - Bandit Structured Prediction for Neural Seq2Seq Learning
Julia Kreutzer - 2017 - Bandit Structured Prediction for Neural Seq2Seq LearningJulia Kreutzer - 2017 - Bandit Structured Prediction for Neural Seq2Seq Learning
Julia Kreutzer - 2017 - Bandit Structured Prediction for Neural Seq2Seq Learning
 
Static Analysis and Verification of C Programs
Static Analysis and Verification of C ProgramsStatic Analysis and Verification of C Programs
Static Analysis and Verification of C Programs
 
Integral Calculus Anti Derivatives reviewer
Integral Calculus Anti Derivatives reviewerIntegral Calculus Anti Derivatives reviewer
Integral Calculus Anti Derivatives reviewer
 
Relations as Executable Specifications
Relations as Executable SpecificationsRelations as Executable Specifications
Relations as Executable Specifications
 
Test Suite Generation for Boolean Conditions with Equivalence Class Partitioning
Test Suite Generation for Boolean Conditions with Equivalence Class PartitioningTest Suite Generation for Boolean Conditions with Equivalence Class Partitioning
Test Suite Generation for Boolean Conditions with Equivalence Class Partitioning
 
Automated theorem proving for special functions: the next phase
Automated theorem proving for special functions: the next phaseAutomated theorem proving for special functions: the next phase
Automated theorem proving for special functions: the next phase
 
modeling.ppt
modeling.pptmodeling.ppt
modeling.ppt
 
An optimal and progressive algorithm for skyline queries slide
An optimal and progressive algorithm for skyline queries slideAn optimal and progressive algorithm for skyline queries slide
An optimal and progressive algorithm for skyline queries slide
 
MuVM: Higher Order Mutation Analysis Virtual Machine for C
MuVM: Higher Order Mutation Analysis Virtual Machine for CMuVM: Higher Order Mutation Analysis Virtual Machine for C
MuVM: Higher Order Mutation Analysis Virtual Machine for C
 
Particle Swarm Optimization Application In Power System
Particle Swarm Optimization Application In Power SystemParticle Swarm Optimization Application In Power System
Particle Swarm Optimization Application In Power System
 
Practical and Worst-Case Efficient Apportionment
Practical and Worst-Case Efficient ApportionmentPractical and Worst-Case Efficient Apportionment
Practical and Worst-Case Efficient Apportionment
 
Managing Uncertainties in Hardware-Software Codesign Projects
Managing Uncertainties in Hardware-Software Codesign ProjectsManaging Uncertainties in Hardware-Software Codesign Projects
Managing Uncertainties in Hardware-Software Codesign Projects
 
"Let us talk about output features! by Florence d’Alché-Buc, LTCI & Full Prof...
"Let us talk about output features! by Florence d’Alché-Buc, LTCI & Full Prof..."Let us talk about output features! by Florence d’Alché-Buc, LTCI & Full Prof...
"Let us talk about output features! by Florence d’Alché-Buc, LTCI & Full Prof...
 
Polesrootlocus_IISC.pdf
Polesrootlocus_IISC.pdfPolesrootlocus_IISC.pdf
Polesrootlocus_IISC.pdf
 
Promoting preventive mitigation of buildings against hurricanes
Promoting preventive mitigation of buildings against hurricanesPromoting preventive mitigation of buildings against hurricanes
Promoting preventive mitigation of buildings against hurricanes
 
Sep logic slide
Sep logic slideSep logic slide
Sep logic slide
 
Scoped dynamic rewrite rules
Scoped dynamic rewrite rulesScoped dynamic rewrite rules
Scoped dynamic rewrite rules
 

More from Akos Hajdu

solc-verify: A Modular Verifier for Solidity Smart Contracts
solc-verify: A Modular Verifier for Solidity Smart Contractssolc-verify: A Modular Verifier for Solidity Smart Contracts
solc-verify: A Modular Verifier for Solidity Smart ContractsAkos Hajdu
 
A Preliminary Analysis on the Effect of Randomness in a CEGAR Framework
 A Preliminary Analysis on the Effect of Randomness in a CEGAR Framework A Preliminary Analysis on the Effect of Randomness in a CEGAR Framework
A Preliminary Analysis on the Effect of Randomness in a CEGAR FrameworkAkos Hajdu
 
Theta: a Framework for Abstraction Refinement-Based Model Checking
Theta: a Framework for Abstraction Refinement-Based Model CheckingTheta: a Framework for Abstraction Refinement-Based Model Checking
Theta: a Framework for Abstraction Refinement-Based Model CheckingAkos Hajdu
 
Towards Evaluating Size Reduction Techniques for Software Model Checking
Towards Evaluating Size Reduction Techniques for Software Model CheckingTowards Evaluating Size Reduction Techniques for Software Model Checking
Towards Evaluating Size Reduction Techniques for Software Model CheckingAkos Hajdu
 
Petri Net Based Trajectory Optimization
Petri Net Based Trajectory OptimizationPetri Net Based Trajectory Optimization
Petri Net Based Trajectory OptimizationAkos Hajdu
 
Extensions to the CEGAR Approach on Petri Nets
Extensions to the CEGAR Approach on Petri NetsExtensions to the CEGAR Approach on Petri Nets
Extensions to the CEGAR Approach on Petri NetsAkos Hajdu
 
New Search Strategies for the Petri Net CEGAR Approach
New Search Strategies for the Petri Net CEGAR ApproachNew Search Strategies for the Petri Net CEGAR Approach
New Search Strategies for the Petri Net CEGAR ApproachAkos Hajdu
 

More from Akos Hajdu (7)

solc-verify: A Modular Verifier for Solidity Smart Contracts
solc-verify: A Modular Verifier for Solidity Smart Contractssolc-verify: A Modular Verifier for Solidity Smart Contracts
solc-verify: A Modular Verifier for Solidity Smart Contracts
 
A Preliminary Analysis on the Effect of Randomness in a CEGAR Framework
 A Preliminary Analysis on the Effect of Randomness in a CEGAR Framework A Preliminary Analysis on the Effect of Randomness in a CEGAR Framework
A Preliminary Analysis on the Effect of Randomness in a CEGAR Framework
 
Theta: a Framework for Abstraction Refinement-Based Model Checking
Theta: a Framework for Abstraction Refinement-Based Model CheckingTheta: a Framework for Abstraction Refinement-Based Model Checking
Theta: a Framework for Abstraction Refinement-Based Model Checking
 
Towards Evaluating Size Reduction Techniques for Software Model Checking
Towards Evaluating Size Reduction Techniques for Software Model CheckingTowards Evaluating Size Reduction Techniques for Software Model Checking
Towards Evaluating Size Reduction Techniques for Software Model Checking
 
Petri Net Based Trajectory Optimization
Petri Net Based Trajectory OptimizationPetri Net Based Trajectory Optimization
Petri Net Based Trajectory Optimization
 
Extensions to the CEGAR Approach on Petri Nets
Extensions to the CEGAR Approach on Petri NetsExtensions to the CEGAR Approach on Petri Nets
Extensions to the CEGAR Approach on Petri Nets
 
New Search Strategies for the Petri Net CEGAR Approach
New Search Strategies for the Petri Net CEGAR ApproachNew Search Strategies for the Petri Net CEGAR Approach
New Search Strategies for the Petri Net CEGAR Approach
 

Recently uploaded

Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuine
Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 GenuineCall Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuine
Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuinethapagita
 
basic entomology with insect anatomy and taxonomy
basic entomology with insect anatomy and taxonomybasic entomology with insect anatomy and taxonomy
basic entomology with insect anatomy and taxonomyDrAnita Sharma
 
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...lizamodels9
 
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptxTHE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptxNandakishor Bhaurao Deshmukh
 
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)User Guide: Pulsar™ Weather Station (Columbia Weather Systems)
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)Columbia Weather Systems
 
Radiation physics in Dental Radiology...
Radiation physics in Dental Radiology...Radiation physics in Dental Radiology...
Radiation physics in Dental Radiology...navyadasi1992
 
《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》rnrncn29
 
GenAI talk for Young at Wageningen University & Research (WUR) March 2024
GenAI talk for Young at Wageningen University & Research (WUR) March 2024GenAI talk for Young at Wageningen University & Research (WUR) March 2024
GenAI talk for Young at Wageningen University & Research (WUR) March 2024Jene van der Heide
 
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxSTOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxMurugaveni B
 
Pests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdfPests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdfPirithiRaju
 
Environmental Biotechnology Topic:- Microbial Biosensor
Environmental Biotechnology Topic:- Microbial BiosensorEnvironmental Biotechnology Topic:- Microbial Biosensor
Environmental Biotechnology Topic:- Microbial Biosensorsonawaneprad
 
Vision and reflection on Mining Software Repositories research in 2024
Vision and reflection on Mining Software Repositories research in 2024Vision and reflection on Mining Software Repositories research in 2024
Vision and reflection on Mining Software Repositories research in 2024AyushiRastogi48
 
Base editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editingBase editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editingNetHelix
 
Observational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive starsObservational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive starsSérgio Sacani
 
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPirithiRaju
 
PROJECTILE MOTION-Horizontal and Vertical
PROJECTILE MOTION-Horizontal and VerticalPROJECTILE MOTION-Horizontal and Vertical
PROJECTILE MOTION-Horizontal and VerticalMAESTRELLAMesa2
 
Pests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdfPests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdfPirithiRaju
 
Thermodynamics ,types of system,formulae ,gibbs free energy .pptx
Thermodynamics ,types of system,formulae ,gibbs free energy .pptxThermodynamics ,types of system,formulae ,gibbs free energy .pptx
Thermodynamics ,types of system,formulae ,gibbs free energy .pptxuniversity
 
User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)Columbia Weather Systems
 

Recently uploaded (20)

Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuine
Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 GenuineCall Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuine
Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuine
 
basic entomology with insect anatomy and taxonomy
basic entomology with insect anatomy and taxonomybasic entomology with insect anatomy and taxonomy
basic entomology with insect anatomy and taxonomy
 
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
 
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptxTHE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
THE ROLE OF PHARMACOGNOSY IN TRADITIONAL AND MODERN SYSTEM OF MEDICINE.pptx
 
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)User Guide: Pulsar™ Weather Station (Columbia Weather Systems)
User Guide: Pulsar™ Weather Station (Columbia Weather Systems)
 
Radiation physics in Dental Radiology...
Radiation physics in Dental Radiology...Radiation physics in Dental Radiology...
Radiation physics in Dental Radiology...
 
《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》《Queensland毕业文凭-昆士兰大学毕业证成绩单》
《Queensland毕业文凭-昆士兰大学毕业证成绩单》
 
GenAI talk for Young at Wageningen University & Research (WUR) March 2024
GenAI talk for Young at Wageningen University & Research (WUR) March 2024GenAI talk for Young at Wageningen University & Research (WUR) March 2024
GenAI talk for Young at Wageningen University & Research (WUR) March 2024
 
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxSTOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
 
Pests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdfPests of soyabean_Binomics_IdentificationDr.UPR.pdf
Pests of soyabean_Binomics_IdentificationDr.UPR.pdf
 
Environmental Biotechnology Topic:- Microbial Biosensor
Environmental Biotechnology Topic:- Microbial BiosensorEnvironmental Biotechnology Topic:- Microbial Biosensor
Environmental Biotechnology Topic:- Microbial Biosensor
 
Vision and reflection on Mining Software Repositories research in 2024
Vision and reflection on Mining Software Repositories research in 2024Vision and reflection on Mining Software Repositories research in 2024
Vision and reflection on Mining Software Repositories research in 2024
 
Base editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editingBase editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editing
 
Observational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive starsObservational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive stars
 
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
 
PROJECTILE MOTION-Horizontal and Vertical
PROJECTILE MOTION-Horizontal and VerticalPROJECTILE MOTION-Horizontal and Vertical
PROJECTILE MOTION-Horizontal and Vertical
 
Pests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdfPests of castor_Binomics_Identification_Dr.UPR.pdf
Pests of castor_Binomics_Identification_Dr.UPR.pdf
 
Thermodynamics ,types of system,formulae ,gibbs free energy .pptx
Thermodynamics ,types of system,formulae ,gibbs free energy .pptxThermodynamics ,types of system,formulae ,gibbs free energy .pptx
Thermodynamics ,types of system,formulae ,gibbs free energy .pptx
 
User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)
 
Let’s Say Someone Did Drop the Bomb. Then What?
Let’s Say Someone Did Drop the Bomb. Then What?Let’s Say Someone Did Drop the Bomb. Then What?
Let’s Say Someone Did Drop the Bomb. Then What?
 

A Configurable CEGAR Framework with Interpolation-Based Refinements

  • 1. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Budapest University of Technology and Economics Department of Measurement and Information Systems A Configurable CEGAR Framework with Interpolation-Based Refinements Ákos Hajdu1,2, Tamás Tóth2, András Vörös1,2, István Majzik2 1MTA-BME Lendület Cyber-Physical Systems Research Group, Budapest, Hungary 2Fault Tolerant Systems Research Group Department of Measurement and Information Systems, Budapest University of Technology and Economics FORTE 2016, Heraklion, Greece, 08.06.2016.
  • 2. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements INTRODUCTION
  • 3. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Introduction – Formal methods  Proving correctness  Model checking o State space explosion  Abstraction-based methods o Over-approximation o Problem: proper precision (coarse ↔ fine) o Counterexample-Guided Abstraction Refinement [Clarke et al.’03] • Start with a coarse abstraction • Refine until sufficient precision is reached Model Property Ok Counterexample Model checker Never „Red” and „Green” the same time
  • 4. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Introduction – CEGAR Concrete model Abstraction Abstract model Abstract counterexampleSpurious counterexampleRefined model Init Check OK Concretize Counterexample Refine Model, property Abstract model Property holds Abstract counterex Concrete Spurious State Transition Error state Abstract state
  • 5. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Motivation  Generic framework with interchangeable parts o Different abstraction methods • Based on symbolic representation of abstract states o Different refinement strategies • Based on splitting abstract states Init Check OK Concretize Counterexample Refine Model, property Abstract model Property holds Abstract counterex Concrete Spurious • Predicate abstraction • Explicit value abstraction • … • Craig interpolation • Sequence interpolation • …
  • 6. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements A CONFIGURABLE CEGAR FRAMEWORK
  • 7. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Formal model and property  Symbolic Transition System (STS) var loc : integer var x : integer invariant 0 <= loc and loc <= 3 initial loc = 0 transition (loc = 0 and loc' = 1 and x' = 0) or (loc = 1 and x < 5 and loc' = 2 and x' = x) or (loc = 1 and x >= 5 and loc' = 3 and x' = x) or (loc = 2 and loc' = 1 and x' = x + 1) models x <= 5 int x 0: x = 0 1: while (x < 5) { 2: x = x + 1 3: } Variables Initial formula Invariant formula Transition formula Safety property to be checked: Is x <= 5 for all reachable states?
  • 8. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Check OK Concretize Counterexample Refine Property holds Abstract counterex Concrete Spurious Initial abstraction 1. Predicate abstraction [Graf & Saidi’97] o Track predicates instead of concrete values o |P| predicates → 2|P| potential abstract states o Label of a state: predicates, e.g. ¬(x > y) Ʌ (y = 3) Init Model, property Abstract model (x > y) ¬(x > y) (y = 3) (x=1, y=3) (x=2, y=3) (x=3, y=3) ¬(y = 3) (x=2, y=1) (x=3, y=1) (x=3, y=2) (x=1, y=1) (x=1, y=2) (x=2, y=2) Variables: x, y; Dx = Dy = {1, 2, 3} Predicates: (x > y), (y = 3)
  • 9. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Initial abstraction 2. Explicit value abstraction [Clarke et al.’04] o Partition variables: visible / invisible o Track values for visible variables only o Label of a state: assignment, e.g. (x = 1) Ʌ (y = 2) Variables: x, y, z Dx = {0, 1} , Dy = {0, 1, 2}, Dz = {0, 1} Visible = {x, y} x=0 x=1 y=0 (x=0, y=0, z=0) (x=0, y=0, z=1) (x=1, y=0, z=0) (x=1, y=0, z=1) y=1 (x=0, y=1, z=0) (x=0, y=1, z=1) (x=1, y=1, z=0) (x=1, y=1, z=1) y=2 (x=0, y=2, z=0) (x=0, y=2, z=1) (x=1, y=2, z=0) (x=1, y=2, z=1) Check OK Concretize Counterexample Refine Property holds Abstract counterex Concrete Spurious Init Model, property Abstract model
  • 10. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Initial abstraction  Predicates vs. explicit values o Variable with large domain → predicates o Variable appearing in many predicates → explicit 3. Combined abstraction o Predicates + explicit values for a set of variables o Explicit variables • User input • Heuristics (e.g., location variable) Check OK Concretize Counterexample Refine Property holds Abstract counterex Concrete Spurious Init Model, property Abstract model
  • 11. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Concretize Counterexample Refine Concrete Spurious Init Model, property Model checking  Explicitly traverse abstract state space  Safety properties o φ holds for each reachable state (AG φ) o Counterexample: loop-free path  Optimizations o Explicit values: on-the-fly o Predicates: incremental Check OK Property holds Abstract counterexAbstract model ¬φ
  • 12. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Check OK Refine Property holds Init Model, property Abstract model Counterexample concretization  Traverse subset of concrete state space o Similar to bounded model checking • Init1 Ʌ Label1 Ʌ Trans1 Ʌ Label2 Ʌ Trans2 Ʌ … Ʌ Transn-1 Ʌ Labeln o Concrete counterexample o Spurious counterexample • Failure state (sf) sf Concretize Counterexample Abstract counterex Concrete Spurious
  • 13. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Check OK Concretize Counterexample Property holds Abstract counterex Concrete Init Model, property Abstract model Abstraction refinement  Classify states mapped to the failure state o D = Dead-end: reachable • Init1 Ʌ Label1 Ʌ Trans1 Ʌ … Ʌ Transf-1 Ʌ Labelf o B = Bad: transition to next state • Labelf Ʌ Transf Ʌ Labelf+1 o IR = Irrelevant: others  Goal: finer abstraction mapping D and B to separate abstract states Refine Spurious
  • 14. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Abstraction refinement 1. Predicate refinement o Characterize D and B with formulas, such that D Ʌ B is unsatisfiable o Craig interpolation [Henzinger et al.’04] • A predicate φ exists corresponding to variables of sf • Generalizing D, contradicting B o P U {φ} eliminates the spurious counterexample • Lazy abstraction: only split sf φ ¬φ Check OK Concretize Counterexample Property holds Abstract counterex Concrete Init Model, property Abstract model Refine Spurious
  • 15. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Abstraction refinement 2. Explicit value refinement o Make some invisible variables visible • Variables that can distinguish D and B o Craig interpolation: generate φ as in predicate refinement • Visible := Visible + variables in φ Check OK Concretize Counterexample Property holds Abstract counterex Concrete Init Model, property Abstract model Refine Spurious Dead-end (x=0, y=1, …) (x=0, y=1, …) Irrelevant (x=0, y=1, …) (x=0, y=0, …) Bad (x=0, y=0, …) (x=0, y=0, …) Visible = {x} Invisible = {y, …} Sf: (x=0) Visible = {x, y} Invisible = {…} φ: (y < 1)
  • 16. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Abstraction refinement  Generalization: sequence interpolation [McMillan’06] o Sequence of interpolants, one for each state (of the counterex.) o Predicate refinement: split a sequence of states o Explicit value refinement: extract variables from sequence Check OK Concretize Counterexample Property holds Abstract counterex Concrete Init Model, property Abstract model Refine Spurious φ1 φ2 φ3 φ4
  • 17. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements EVALUATION
  • 18. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Evaluation  Java implementation o Z3 solver  Configurations  +/− property satisfied or violated Abstraction Refinement PC Predicate Craig interpolation PS Predicate Sequence interpolation CC Combined Craig interpolation CS Combined Sequence interpolation EC Explicit value Craig interpolation ES Explicit value Sequence interpolation
  • 19. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Evaluation  Industrial PLC models (runtime, s) o L: locations, V: variables o CC, CS: location as explicit variable L V PC PS CC CS EC ES −PLC01 36 66 22.5 50.2 42.0 48.5 36.4 211.8 −PLC02 36 66 22.7 49.4 41.0 47.3 32.2 428.5 +PLC03 17 29 479.2 99.2 28.2 51.8 5.2 9.9 −PLC04 17 29 40.2 14.4 17.6 6.1 3.3 3.8 +PLC04 17 29 44.0 406.7 34.3 36.1 7.6 38.0 +PLC05 17 29 42.2 21.4 17.4 6.3 3.5 4.7 +PLC06 43 82 1512.8 333.1 227.5 1254.5 +PLC07 43 82 190.8 462.2 164.8 164.8 78.1 50.9 −PLC08 43 82 86.1 46.7 46.2 65.1 123.0 +PLC09 14 23 87.4 94.6 61.3 35.7 11.8 14.5 Best performance for most models Combined outperforms pure predicate Combined outperforms pure predicate No preprocessing reductions Largest state space
  • 20. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Evaluation  Fischer’s protocol (runtime, s) o Mutual exclusion algorithm o #: number of participants o Clock variables → infinite state space o CC, CS: lock as explicit variable # PC PS CC CS +2 1.2 3.0 0.8 1.2 −2 0.6 1.1 0.8 1.2 +3 12.1 68.2 10.3 45.8 −3 1.4 1.5 1.7 2.9 Craig itp. is more efficient Craig itp. is more efficient Property holds Property violated
  • 21. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Evaluation  Hardware models (runtime, s) o Hardware Model Checking Competition o I: inputs, L: latches, A: and-gates I L A PC PS EC ES +mutexp0 11 20 159 10.3 24.5 14.3 22.7 +mutexp0neg 11 20 159 6.1 3.7 8.8 6.7 −nusmv.syncarb52.B 5 10 52 1.3 3.1 0.7 0.2 −nusmv.syncarb102.B 10 20 157 31.6 117.9 239.8 1.6 −pdtpmsarbiter 3 46 209 0.5 4.6 5.3 7.8 +ringp0 15 25 145 16.4 25.6 16.1 14.5 +ringp0neg 15 25 145 7.8 35.7 187.5 108.2 +srg5ptimonegnv 30 47 304 0.3 0.5 1.7 1.3 Predicate abs. is more efficient with Craig itp. Expl. val. abs. is more efficient with sequence itp.
  • 22. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements CONCLUSIONS
  • 23. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Conclusions  Results o Configurable CEGAR framework • Different abstraction methods • Different refinement strategies • Initial abstraction: predicates with explicit values o Evaluation • Behavior of several configurations on different models  Future work o Further configurations o Heuristics for configuration selection hajdua@mit.bme.hu inf.mit.bme.hu/en/members/hajdua Model1 Model2 Model3 Config1 Config2 Config3 Init Check Concretize Refine • Predicate • Explicit value • Combined • Craig itp. • Sequence itp.
  • 24. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements References  [Clarke et al.’03] Clarke, E., Grumberg, O., Jha, S., Lu, Y., Veith, H.: Counterexample-guided abstraction refinement for symbolic model checking. J. ACM 50(5), 752–794 (2003)  [Graf & Saidi’97] Graf, S., Saidi, H.: Construction of abstract state graphs with PVS. In: Grumberg, O. (ed.) CAV 1997. LNCS, vol. 1254, pp. 72–83. Springer, Heidelberg (1997)  [Clarke et al.’04] Clarke, E.M., Gupta, A., Strichman, O.: SAT-based counterexample-guided abstraction refinement. IEEE Trans. Comput. Aided Des. Integr. Circuits Syst. 23(7), 1113–1123 (2004)  [Henzinger et al.’04] Henzinger, T.A., Jhala, R., Majumdar, R., McMillan, K.L.: Abstractions from proofs. In: Proceedings of the 31st ACM SIGPLAN- SIGACT Symposium on Principles of Programming Languages, pp. 232– 244. ACM (2004)  [McMillan’06] McMillan, K.L.: Lazy abstraction with interpolants. In: Ball, T., Jones, R.B. (eds.) CAV 2006. LNCS, vol. 4144, pp. 123–136. Springer, Heidelberg (2006)
  • 25. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Details of measurements L V PC PS CC CS EC ES T #R #S T #R #S T #R #S T #R #S T #R #S T #R #S −PLC01 36 66 22.5 33 100 50.2 34 191 42 20 452 48.5 1 81 36.4 7 1640 211.8 3 758 −PLC02 36 66 22.7 33 100 49.4 34 191 41 20 452 47.3 1 81 32.2 7 1697 428.5 5 1439 +PLC03 17 29 479.2 195 6694 99.2 23 292 28.2 34 629 51.8 6 212 5.2 1 339 9.9 1 369 −PLC04 17 29 40.2 64 1076 14.4 16 82 17.6 21 353 6.1 2 47 3.3 1 165 3.8 1 165 +PLC04 17 29 44 65 1069 406.7 31 1198 34.3 35 650 36.1 5 192 7.6 2 274 38 1 209 +PLC05 17 29 42.2 63 1130 21.4 17 98 17.4 21 352 6.3 2 47 3.5 1 167 4.7 1 167 +PLC06 43 82 1512.8 159 4812 333.1 52 1369 227.5 2 120 1254.5 3 20956 +PLC07 43 82 190.8 58 552 462.2 66 1057 164.8 26 657 164.8 1 70 78.1 2 1163 50.9 1 518 −PLC08 43 82 86.1 37 111 46.7 0 43 46.2 0 43 65.1 2 628 123 3 541 +PLC09 14 23 87.4 90 1716 94.6 32 633 61.3 94 1845 35.7 11 193 11.8 5 1261 14.5 4 833  Industrial PLC models o L: locations, V: variables o T: runtime (s), #R: refinements, #S: total abstract states o CC, CS: location as explicit variable
  • 26. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Details of measurements # PC PS CC CS T #R #S T #R #S T #R #S T #R #S +2 1.2 17 69 3 15 107 0.8 18 66 1.2 14 78 −2 0.6 11 41 1.1 9 45 0.8 18 62 1.2 12 58 +3 12.1 97 998 68.1 101 1584 10.3 93 1329 45.8 99 1334 −3 1.4 19 70 1.5 9 44 1.7 28 121 2.9 21 105  Fischer’s protocol o Mutual exclusion algorithm o #: number of participants o Clock variables → infinite state space o CC, CS: lock as explicit variable o T: runtime (s), #R: refinements, #S: total abstract states
  • 27. Ákos Hajdu: A Configurable CEGAR Framework with Interpolation-Based Refinements Details of measurements  Hardware models o Hardware Model Checking Competition o I: inputs, L: latches, A: and-gates o T: runtime (s), #R: refinements, #S: total abstract states I L A PC PS EC ES T #R #S T #R #S T #R #S T #R #S +mutexp0 11 20 159 10.3 63 494 24.5 43 420 14.3 8 742 22.7 7 806 +mutexp0neg 11 20 159 6.1 44 284 3.7 12 82 8.8 9 441 6.7 6 330 −nusmv.syncarb52.B 5 10 52 1.3 30 139 3.1 14 132 0.7 6 113 0.2 2 18 −nusmv.syncarb102.B 10 20 157 31.6 110 779 117.9 56 1491 239.8 11 5179 1.6 2 32 −pdtpmsarbiter 3 46 209 0.5 6 22 4.6 6 22 5.3 15 130 7.8 13 108 +ringp0 15 25 145 16.4 55 300 25.6 19 127 16.1 10 763 14.5 7 657 +ringp0neg 15 25 145 7.8 21 83 35.7 31 237 187.5 11 4870 108.2 7 2629 +srg5ptimonegnv 30 47 304 0.3 3 9 0.5 4 15 1.7 4 40 1.3 3 36