Skip to content
Snippets Groups Projects

Stop using revert dependent

Merged Tej Chajed requested to merge tchajed/stdpp:deprecated-revert-dependent into master
All threads resolved!
2 files
+ 9
4
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 4
2
@@ -65,9 +65,11 @@ Ltac inv_fin i :=
| fin ?n =>
match eval hnf in n with
| 0 =>
revert dependent i; match goal with |- i, @?P i => apply (fin_0_inv P) end
generalize dependent i;
match goal with |- i, @?P i => apply (fin_0_inv P) end
| S ?n =>
revert dependent i; match goal with |- i, @?P i => apply (fin_S_inv P) end
generalize dependent i;
match goal with |- i, @?P i => apply (fin_S_inv P) end
end
end.
Loading