整数に対してこれを行う 1 つの方法は、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
値を使用してこれを行うことができます (API のような関数は見ませんでしたis_real_value
が、この論理和で実行できると思います)。ビットベクトルの場合、is_bv_value
for 値を使用しis_bv
て、変数の並べ替えを確認できます。
.NET API には がありExpr.IsNumeral
、これらが API でどのように実装されているかをここで確認できます (たとえば、Expr.IsIntNum
[Python に相当する] はとの両方が trueかどうかをis_int_value
チェックします): http://research.microsoft.com/en-us/ um/redmond/projects/z3/_expr_8cs_source.htmlExpr.IsNumeral
Expr.IsInt
カスタム定義の列挙型の並べ替えでこれを行う方法はすぐにはわかりませんでした。別の方法として、ビットベクトルを使用して列挙型をエンコードし、is_bv_value
. ただし、より良い回避策として、より一般的な代数データ型とそれらの自動的に作成された「認識機能」を使用する必要があるようです。Python API は、列挙型の並べ替えとして宣言した場合、レコグナイザーを適切に作成しないようです。これは、事実上列挙型の並べ替えである (ただし、より一般的なデータ型として宣言されている) ものに対して行う 1 つの方法です。
以下の 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'