3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 18:31:49 +00:00
z3/python/z3test.py
Leonardo de Moura e9ff9ba9fc Z3Py sources
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-10-02 08:00:13 -07:00

10 lines
191 B
Python

import z3, doctest
import sys, re
if re.compile("64 bit").search(sys.version):
z3.init("..\\x64\\external_64\\z3.dll")
else:
z3.init("..\\external\\z3.dll")
doctest.testmod(z3)