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
Using z3 built from current master abd1674, following the instructions from the README to build and use the Python bindings in a virtualenv, I cannot enable or use get-unsat-assumptions via Z3_eval_smtlib2_string. From the transcript below you can see that:
(set-option :produce-unsat-assumptions true) fails saying it's too late to set it
the above error message is repeated for further commands on that context (minor bug, may be intended behavior?)
with a fresh context, z3 replies unsupported to (get-option :produce-unsat-assumptions) (minor bug)
actually trying to use get-unsat-assumptions fails with an error saying to set the option to true (expected given the default is false, but means being unable to set the option is a problem)
Is there another method to set the option to true on the context before sending strings? I can't set it with z3.set_param/set_option.
Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.
Using z3 built from current master abd1674, following the instructions from the README to build and use the Python bindings in a virtualenv, I cannot enable or use get-unsat-assumptions via Z3_eval_smtlib2_string. From the transcript below you can see that:
(set-option :produce-unsat-assumptions true)
fails saying it's too late to set itunsupported
to(get-option :produce-unsat-assumptions)
(minor bug)get-unsat-assumptions
fails with an error saying to set the option to true (expected given the default is false, but means being unable to set the option is a problem)Is there another method to set the option to true on the context before sending strings? I can't set it with z3.set_param/set_option.
The text was updated successfully, but these errors were encountered: