We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mlRewrite
mlRewriteBy
These tactics should work for arbitrary contexts, not just simple ones. For example:
H : G |- a <---> b __________________ G |- foldr patt_imp l a ---> foldr patt_imp l b
This limitation comes from the following line in tactic heat:
heat
assert(heq1 : ($phi = (@emplace _ $pc $a))) > [ abstract( (ltac1:(star |- simplify_emplace_2 star) (Ltac1.of_ident star_ident); reflexivity )) | () ];
simplify_emplace_2 is not able to solve the asserted goal. One option would be to leave such goals to the user instead of failing.
simplify_emplace_2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
These tactics should work for arbitrary contexts, not just simple ones. For example:
This limitation comes from the following line in tactic
heat
:simplify_emplace_2
is not able to solve the asserted goal. One option would be to leave such goals to the user instead of failing.The text was updated successfully, but these errors were encountered: