Write a symbolically executed term to a file #1113
Labels
type: feature request
Issues requesting a new feature or capability
usability
An issue that impedes efficient understanding and use
Milestone
I have a parameterized property that I want to prove for a bunch of different concrete parameters. For example:
And I want to prove
prop
for alla
, but whereb
is a set of concrete values. So, prove\a -> prop a 10
and\a -> prop a 87
and ...If I put the concrete values of
b
in a list and do the prove command in a loop, the term to be proved is symbolically executed every call toprove
, and symbolic execution takes quite some time, whereas the call to the solver is quick. Is there some way to dump a symbolically executed term to SMTLIB2 and then add some extra constraints, so that symbolic execution is only done once? I have looked at doing this manually (dumping the SMTLIB2 and trying to change the symbolic bits forb
to constants, but the SMTLIB2 produced bysaw
doesn't make the symbols forb
readily available.The text was updated successfully, but these errors were encountered: