- Source: Z3 Theorem Prover
Z3, also known as the Z3 Theorem Prover, is a satisfiability modulo theories (SMT) solver developed by Microsoft.
Overview
Z3 was developed in the Research in Software Engineering (RiSE) group at Microsoft Research Redmond and is targeted at solving problems that arise in software verification and program analysis. Z3 supports arithmetic, fixed-size bit-vectors, extensional arrays, datatypes, uninterpreted functions, and quantifiers. Its main applications are extended static checking, test case generation, and predicate abstraction.
Z3 was open sourced in the beginning of 2015. The source code is licensed under MIT License and hosted on GitHub.
The solver can be built using Visual Studio, a makefile or using CMake and runs on Windows, FreeBSD, Linux, and macOS.
The default input format for Z3 is SMTLIB2.
It also has officially supported bindings for several programming languages, including C, C++, Python, .NET, Java, and OCaml.
Examples
= Propositional and predicate logic
=In this example propositional logic assertions are checked using functions to represent the propositions a and b. The following Z3 script checks to see if
a
∧
b
¯
≡
a
¯
∨
b
¯
{\displaystyle {\overline {a\land b}}\equiv {\overline {a}}\lor {\overline {b}}}
:
(declare-fun a () Bool)
(declare-fun b () Bool)
(assert (not (= (not (and a b)) (or (not a)(not b)))))
(check-sat)
Result:
unsat
Note that the script asserts the negation of the proposition of interest. The unsat result means that the negated proposition is not satisfiable, thus proving the desired result (De Morgan's law).
= Solving equations
=The following script solves the two given equations, finding suitable values for the variables a and b:
(declare-const a Int)
(declare-const b Int)
(assert (= (+ a b) 20))
(assert (= (+ a (* 2 b)) 10))
(check-sat)
(get-model)
Result:
sat
(model
(define-fun b () Int
-10)
(define-fun a () Int
30)
)
Awards
In 2015, Z3 received the Programming Languages Software Award from ACM SIGPLAN. In 2018, Z3 received the Test of Time Award from the European Joint Conferences on Theory and Practice of Software (ETAPS). Microsoft researchers Nikolaj Bjørner and Leonardo de Moura received the 2019 Herbrand Award for Distinguished Contributions to Automated Reasoning in recognition of their work in advancing theorem proving with Z3.
See also
Formal verification
References
Further reading
Leonardo De Moura; Nikolaj Bjørner (2008). "Z3: an efficient SMT solver". Tools and Algorithms for the Construction and Analysis of Systems. 4963: 337–340.
The inner magic behind the Z3 theorem prover
External links
Official website
Z3 online playground
Kata Kunci Pencarian:
- Daftar ilmuwan komputer
- Z3 Theorem Prover
- Automated theorem proving
- Z3
- E (theorem prover)
- Satisfiability modulo theories
- Liquid Haskell
- Verve (operating system)
- List of open-source software for mathematics
- Fermat's Last Theorem
- Alt-Ergo