对整数执行此操作的一种方法是使用is_int
and is_int_value
:
x = Int('x')
print "x types"
print is_int(x) # true, is of sort int
print is_int_value(x) # false, not a "value"
x_ = IntVal(7)
print "x_ types"
print is_int(x_) # true, is also of sort int
print is_int_value(x_) # true, is a value
对于实数,您可以使用is_real
来检查变量排序,并使用(的析取)is_algebraic_value
和is_rational_value
值(我没有is_real_value
在 API 中看到类似的函数,但我认为这种析取会做到这一点)。对于位向量,您可以使用is_bv_value
值,并is_bv
检查变量排序。
.NET API 具有Expr.IsNumeral
,您可以在此处查看这些 API 是如何实现的(例如,Expr.IsIntNum
[相当于 Python is_int_value
] 检查两者Expr.IsNumeral
是否Expr.IsInt
为真):http ://research.microsoft.com/en-us/嗯/redmond/projects/z3/_expr_8cs_source.html
我没有立即看到为自定义枚举排序执行此操作的方法。作为一种选择,您可以使用位向量对枚举进行编码,并使用is_bv_value
. 不过,作为一种更好的解决方法,您似乎需要使用更通用的代数数据类型及其自动创建的“识别器”。如果您将它们声明为枚举排序,Python API 似乎无法正确创建识别器。这是一种有效的枚举排序方法(但声明为更通用的数据类型)。
Z3Py 编码如下:http ://rise4fun.com/Z3Py/ELtn
ColorVal = Datatype('ColorVal')
ColorVal.declare('white')
ColorVal.declare('black')
ColorVal = ColorVal.create()
mycolor = Const("mycolor", ColorVal)
print ColorVal.recognizer(0) # is_white
print ColorVal.recognizer(1) # is_black
print simplify(ColorVal.is_white(mycolor)) # returns is_white(mycolor)
print simplify(ColorVal.is_black(mycolor)) # returns is_black(mycolor)
mycolorVal = ColorVal.white # set to value white
print simplify(ColorVal.is_white(mycolorVal)) # true
print simplify(ColorVal.is_black(mycolorVal)) # false
# compare "variable" versus "value" with return of is_white, is_black, etc.: if it gives a boolean value, it's a value, if not, it's a variable
print "var vs. value"
x = simplify(ColorVal.is_white(mycolor))
print is_true(x) or is_false(x) # returns false, since x is is_white(mycolor)
y = simplify(ColorVal.is_white(mycolorVal))
print is_true(y) or is_false(y) # true
ColorValEnum, (whiteEnum,blackEnum) = EnumSort("ColorValEnum",["whiteEnum","blackEnum"])
mycolorEnum = Const("mycolorEnum",ColorValEnum)
print ColorValEnum.recognizer(0) # is_whiteEnum
print ColorValEnum.recognizer(1) # is_blackEnum
# it appears that declaring an enum does not properly create the recognizers in the Python API:
#print simplify(ColorValEnum.is_whiteEnum(mycolorEnum)) # error: gives DatatypeSortRef instance has no attribute 'is_whiteEnum'
#print simplify(ColorValEnum.is_blackEnum(mycolorEnum)) # error: gives DatatypeSortRef instance has no attribute 'is_blackEnum'