From 75af84521208aac70375d7df45105256475d75b6 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Mon, 17 Feb 2020 18:47:26 +0000 Subject: Update license to be compatible with CompCert --- src/Common/Tactics.v | 39 ++++++++++++++++++++++++++------------- 1 file changed, 26 insertions(+), 13 deletions(-) (limited to 'src/Common/Tactics.v') diff --git a/src/Common/Tactics.v b/src/Common/Tactics.v index 5978d49..967c642 100644 --- a/src/Common/Tactics.v +++ b/src/Common/Tactics.v @@ -1,16 +1,29 @@ -Module Tactics. +(* + * CoqUp: Verified high-level synthesis. + * Copyright (C) 2019-2020 Yann Herklotz + * + * 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 . + *) - Ltac unfold_rec c := unfold c; fold c. +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_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. - -End Tactics. -Export Tactics. +Ltac solve_by_invert := solve_by_inverts 1. -- cgit