aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-03-04 13:32:20 +0000
committerYann Herklotz <git@yannherklotz.com>2022-03-04 13:32:20 +0000
commit753f21758814c1cd5d160f0b9af3aacb08dc9aaa (patch)
tree426633cd0dc28ee8472dc888f2f22ab4d0f0a099 /src
parent0ceac6192042c01e0491618bea64dae2e53510a2 (diff)
downloadbiteq-753f21758814c1cd5d160f0b9af3aacb08dc9aaa.tar.gz
biteq-753f21758814c1cd5d160f0b9af3aacb08dc9aaa.zip
Add license to source files
Diffstat (limited to 'src')
-rw-r--r--src/BitEQ.v16
-rw-r--r--src/Lib.v16
2 files changed, 32 insertions, 0 deletions
diff --git a/src/BitEQ.v b/src/BitEQ.v
index 72f7d18..15134f5 100644
--- a/src/BitEQ.v
+++ b/src/BitEQ.v
@@ -1,3 +1,19 @@
+(* Copyright (C) 2022 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 <https://www.gnu.org/licenses/>.
+ *)
+
Require Import Coq.ZArith.ZArith.
Require Import Coq.micromega.Lia.
Require Import Coq.micromega.Psatz.
diff --git a/src/Lib.v b/src/Lib.v
index 3e955c8..6cd3356 100644
--- a/src/Lib.v
+++ b/src/Lib.v
@@ -1,3 +1,19 @@
+(* Copyright (C) 2022 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 <https://www.gnu.org/licenses/>.
+ *)
+
Lemma modusponens: forall (P Q: Prop), P -> (P -> Q) -> Q.
Proof. auto. Qed.