I would like to kindly ask , how to have more than 255 arguments in the Z3 Python function
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)
)