mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Fix Python API examples so they work with Python 3 as well as Python 2.
This commit is contained in:
parent
849eb389e6
commit
896aae5606
|
@ -4,7 +4,7 @@
|
||||||
# adjacent entries fall in the range 0,..,n-1
|
# adjacent entries fall in the range 0,..,n-1
|
||||||
# This is known as the "The All-Interval Series Problem"
|
# This is known as the "The All-Interval Series Problem"
|
||||||
# See http://www.csplib.org/Problems/prob007/
|
# See http://www.csplib.org/Problems/prob007/
|
||||||
|
from __future__ import print_function
|
||||||
from z3 import *
|
from z3 import *
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@ def process_model(s, xij, n):
|
||||||
block += [xij[i][j]]
|
block += [xij[i][j]]
|
||||||
k = j
|
k = j
|
||||||
values += [k]
|
values += [k]
|
||||||
print values
|
print(values)
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
return block
|
return block
|
||||||
|
|
||||||
|
@ -68,9 +68,9 @@ def all_models(n):
|
||||||
block = process_model(s, xij, n)
|
block = process_model(s, xij, n)
|
||||||
s.add(Not(And(block)))
|
s.add(Not(And(block)))
|
||||||
count += 1
|
count += 1
|
||||||
print s.statistics()
|
print(s.statistics())
|
||||||
print time.clock() - start
|
print(time.clock() - start)
|
||||||
print count
|
print(count)
|
||||||
|
|
||||||
set_option(verbose=1)
|
set_option(verbose=1)
|
||||||
all_models(12)
|
all_models(12)
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
#
|
#
|
||||||
# Author: Leonardo de Moura (leonardo)
|
# Author: Leonardo de Moura (leonardo)
|
||||||
############################################
|
############################################
|
||||||
|
from __future__ import print_function
|
||||||
|
import sys
|
||||||
|
if sys.version_info.major >= 3:
|
||||||
|
from functools import reduce
|
||||||
from z3 import *
|
from z3 import *
|
||||||
|
|
||||||
def _to_complex(a):
|
def _to_complex(a):
|
||||||
|
@ -53,7 +57,7 @@ class ComplexExpr:
|
||||||
return self
|
return self
|
||||||
if k < 0:
|
if k < 0:
|
||||||
return (self ** (-k)).inv()
|
return (self ** (-k)).inv()
|
||||||
return reduce(lambda x, y: x * y, [self for _ in xrange(k)], ComplexExpr(1, 0))
|
return reduce(lambda x, y: x * y, [self for _ in range(k)], ComplexExpr(1, 0))
|
||||||
|
|
||||||
def inv(self):
|
def inv(self):
|
||||||
den = self.r*self.r + self.i*self.i
|
den = self.r*self.r + self.i*self.i
|
||||||
|
@ -63,6 +67,12 @@ class ComplexExpr:
|
||||||
inv_other = _to_complex(other).inv()
|
inv_other = _to_complex(other).inv()
|
||||||
return self.__mul__(inv_other)
|
return self.__mul__(inv_other)
|
||||||
|
|
||||||
|
if sys.version_info.major >= 3:
|
||||||
|
# In python 3 the meaning of the '/' operator
|
||||||
|
# was changed.
|
||||||
|
def __truediv__(self, other):
|
||||||
|
return self.__div__(other)
|
||||||
|
|
||||||
def __rdiv__(self, other):
|
def __rdiv__(self, other):
|
||||||
other = _to_complex(other)
|
other = _to_complex(other)
|
||||||
return self.inv().__mul__(other)
|
return self.inv().__mul__(other)
|
||||||
|
@ -113,5 +123,5 @@ print(s.model())
|
||||||
s.add(x.i != 1)
|
s.add(x.i != 1)
|
||||||
print(s.check())
|
print(s.check())
|
||||||
# print(s.model())
|
# print(s.model())
|
||||||
print ((3 + I) ** 2)/(5 - I)
|
print(((3 + I) ** 2)/(5 - I))
|
||||||
print ((3 + I) ** -3)/(5 - I)
|
print(((3 + I) ** -3)/(5 - I))
|
||||||
|
|
|
@ -45,11 +45,6 @@ def enumerate_sets(solver):
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
|
|
||||||
class CompareSetSize():
|
|
||||||
def __call__(self, s1, s2):
|
|
||||||
return len(s1) < len(s2)
|
|
||||||
|
|
||||||
|
|
||||||
class MSSSolver:
|
class MSSSolver:
|
||||||
s = Solver()
|
s = Solver()
|
||||||
varcache = {}
|
varcache = {}
|
||||||
|
@ -157,7 +152,7 @@ class MSSSolver:
|
||||||
mcs = [x for x in self.orig_soft_vars if not is_true(self.model[x])]
|
mcs = [x for x in self.orig_soft_vars if not is_true(self.model[x])]
|
||||||
self.s.add(Or(mcs))
|
self.s.add(Or(mcs))
|
||||||
core_literals = set([])
|
core_literals = set([])
|
||||||
cores.sort(CompareSetSize())
|
cores.sort(key=lambda element: len(element))
|
||||||
for core in cores:
|
for core in cores:
|
||||||
if len(core & core_literals) == 0:
|
if len(core & core_literals) == 0:
|
||||||
self.relax_core(core)
|
self.relax_core(core)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Copyright (c) Microsoft Corporation 2015
|
# Copyright (c) Microsoft Corporation 2015
|
||||||
|
from __future__ import print_function
|
||||||
from z3 import *
|
from z3 import *
|
||||||
|
|
||||||
def visitor(e, seen):
|
def visitor(e, seen):
|
||||||
|
@ -22,8 +22,8 @@ fml = x + x + y > 2
|
||||||
seen = {}
|
seen = {}
|
||||||
for e in visitor(fml, seen):
|
for e in visitor(fml, seen):
|
||||||
if is_const(e) and e.decl().kind() == Z3_OP_UNINTERPRETED:
|
if is_const(e) and e.decl().kind() == Z3_OP_UNINTERPRETED:
|
||||||
print "Variable", e
|
print("Variable", e)
|
||||||
else:
|
else:
|
||||||
print e
|
print(e)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue