You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think there is an error in the generation of the smt-file.
If you have a synth-fun with an argument d then the replace in line 50 in smt2.py will transform (declare-fun to eclare-fun. If you would replace line.replace("("+var,"") by line.replace("("+var+" ","") this should fix this problem.
The text was updated successfully, but these errors were encountered:
Hi everybody,
I think there is an error in the generation of the smt-file.
If you have a
synth-fun
with an argumentd
then the replace in line 50 in smt2.py will transform(declare-fun
toeclare-fun
. If you would replaceline.replace("("+var,"")
byline.replace("("+var+" ","")
this should fix this problem.The text was updated successfully, but these errors were encountered: