3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-14 13:41:27 +00:00

cache datatype util in context to avoid performance bug, codeplex issue 195

Signed-off-by: Nikolaj Bjorner <nbjorner@hotmail.com>
This commit is contained in:
Nikolaj Bjorner 2015-03-25 11:24:47 -07:00
parent 1c77ad00c3
commit 2aa91eee70
4 changed files with 13 additions and 9 deletions

View file

@ -4,6 +4,7 @@
using namespace z3;
/**
Demonstration of how Z3 can be used to prove validity of
De Morgan's Duality Law: {e not(x and y) <-> (not x) or ( not y) }