3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-24 21:26:59 +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:46:17 -07:00
parent 8059a5a0b7
commit 39892aae10
3 changed files with 14 additions and 10 deletions

View file

@ -5,6 +5,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) }
@ -986,6 +987,9 @@ void extract_example() {
}
int main() {
slow();
return 0;
try {
demorgan(); std::cout << "\n";
find_model_example1(); std::cout << "\n";