mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
Merge branch 'unstable' of https://git01.codeplex.com/z3 into unstable
This commit is contained in:
commit
9790784488
|
@ -65,9 +65,6 @@ class ComplexExpr:
|
||||||
def __neq__(self, other):
|
def __neq__(self, other):
|
||||||
return Not(self.__eq__(other))
|
return Not(self.__eq__(other))
|
||||||
|
|
||||||
def __pow__(self, k):
|
|
||||||
|
|
||||||
|
|
||||||
def simplify(self):
|
def simplify(self):
|
||||||
return ComplexExpr(simplify(self.r), simplify(self.i))
|
return ComplexExpr(simplify(self.r), simplify(self.i))
|
||||||
|
|
||||||
|
|
|
@ -337,6 +337,7 @@ int main(int argc, char ** argv) {
|
||||||
default:
|
default:
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
}
|
}
|
||||||
|
memory::finalize();
|
||||||
#ifdef _WINDOWS
|
#ifdef _WINDOWS
|
||||||
_CrtDumpMemoryLeaks();
|
_CrtDumpMemoryLeaks();
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue