aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Logic
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-04-13 11:37:50 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-04-13 11:38:39 -0400
commit8351d90fe36a91c7d26edc2176be3b811b6f21ae (patch)
tree2bd514c7371f5d14f5c4d8c424a254b69d6cd451 /src/Util/Logic
parent4a3ea28af8645c09bd20b06d9677315c26130bdc (diff)
Add Util.Logic.ImplAnd
Put it in a separate file so we can have fine-grained imports, and not need to rebuild things as frequently
Diffstat (limited to 'src/Util/Logic')
-rw-r--r--src/Util/Logic/ImplAnd.v2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Util/Logic/ImplAnd.v b/src/Util/Logic/ImplAnd.v
new file mode 100644
index 000000000..9ca6e0447
--- /dev/null
+++ b/src/Util/Logic/ImplAnd.v
@@ -0,0 +1,2 @@
+Lemma impl_and_iff {A B C} : (A -> (B /\ C)) <-> ((A -> B) /\ (A -> C)).
+Proof. tauto. Qed.