aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/Tactics.v
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-03-20 11:40:11 +0000
committerYann Herklotz <git@yannherklotz.com>2020-03-20 11:40:11 +0000
commit5ac32e4ad483241fdb267118b8c627cd31c97726 (patch)
tree12e0132bd6535d075d14c774c8be715c24d8b7f5 /src/common/Tactics.v
parent9f0640ab94741d1d369d089fec763c9156d6be4f (diff)
downloadvericert-5ac32e4ad483241fdb267118b8c627cd31c97726.tar.gz
vericert-5ac32e4ad483241fdb267118b8c627cd31c97726.zip
Convert Tactics to Coquplib: export common modules
Diffstat (limited to 'src/common/Tactics.v')
-rw-r--r--src/common/Tactics.v29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/common/Tactics.v b/src/common/Tactics.v
deleted file mode 100644
index 967c642..0000000
--- a/src/common/Tactics.v
+++ /dev/null
@@ -1,29 +0,0 @@
-(*
- * CoqUp: Verified high-level synthesis.
- * Copyright (C) 2019-2020 Yann Herklotz <yann@yannherklotz.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- *)
-
-Ltac unfold_rec c := unfold c; fold c.
-
-Ltac solve_by_inverts n :=
- match goal with | H : ?T |- _ =>
- match type of T with Prop =>
- inversion H;
- match n with S (S (?n')) => subst; try constructor; solve_by_inverts (S n') end
- end
- end.
-
-Ltac solve_by_invert := solve_by_inverts 1.