Skip to content
New issue

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

avoid the use of argument-free instantiate #33

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Fsub/Fsub_LetSum_Infrastructure.v
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,6 @@ Proof with eauto using subst_tt_type.
intros;
try rewrite subst_te_open_ee_var;
try rewrite subst_te_open_te_var;
instantiate;
eauto using subst_tt_type
].
Qed.
Expand All @@ -625,7 +624,7 @@ Proof with auto.
intros;
try rewrite subst_ee_open_ee_var;
try rewrite subst_ee_open_te_var;
instantiate;
idtac;
auto
].
Case "expr_var".
Expand Down
Loading