我想懇請,如何有超過255個參數的Z3 Python函數如何在Z3py函數中使用超過255個參數?
h1, h2 = Consts('h1 h2', S)
def fun(h1 , h2):
return Or(
And(h1 == cl_4712, h2 == me_1935),
And(h1 == cl_1871, h2 == me_1935),
And(h1 == cl_4712, h2 == me_1935),
.
.
.
And(h1 == cl_1871, h2 == me_6745)
)
爲什麼不把參數到一些像字典這樣的數據結構? – MattDMo 2013-03-27 16:17:23