From 35c834548dcbd590f66f009017d2f88797dce882 Mon Sep 17 00:00:00 2001 From: Guillaume Melquiond Date: Thu, 26 Jun 2014 16:37:05 +0200 Subject: Remove some theories that have been deprecated for 10 years. --- theories/Logic/Classical_Pred_Set.v | 48 -------------------------------- theories/Logic/Classical_Type.v | 14 ---------- theories/Logic/vo.itarget | 2 -- theories/Sets/Classical_sets.v | 2 +- theories/Sets/Finite_sets_facts.v | 2 +- theories/Sets/Image.v | 2 +- theories/Sets/Infinite_sets.v | 2 +- theories/Sets/Integers.v | 2 +- theories/Sets/Powerset_Classical_facts.v | 2 +- 9 files changed, 6 insertions(+), 70 deletions(-) delete mode 100644 theories/Logic/Classical_Pred_Set.v delete mode 100644 theories/Logic/Classical_Type.v diff --git a/theories/Logic/Classical_Pred_Set.v b/theories/Logic/Classical_Pred_Set.v deleted file mode 100644 index cda9d22c6c..0000000000 --- a/theories/Logic/Classical_Pred_Set.v +++ /dev/null @@ -1,48 +0,0 @@ -(************************************************************************) -(* v * The Coq Proof Assistant / The Coq Development Team *) -(* Prop, ~ (forall n:U, P n) -> exists n : U, ~ P n. -Proof (Classical_Pred_Type.not_all_ex_not U). - -Lemma not_all_not_ex : - forall P:U -> Prop, ~ (forall n:U, ~ P n) -> exists n : U, P n. -Proof (Classical_Pred_Type.not_all_not_ex U). - -Lemma not_ex_all_not : - forall P:U -> Prop, ~ (exists n : U, P n) -> forall n:U, ~ P n. -Proof (Classical_Pred_Type.not_ex_all_not U). - -Lemma not_ex_not_all : - forall P:U -> Prop, ~ (exists n : U, ~ P n) -> forall n:U, P n. -Proof (Classical_Pred_Type.not_ex_not_all U). - -Lemma ex_not_not_all : - forall P:U -> Prop, (exists n : U, ~ P n) -> ~ (forall n:U, P n). -Proof (Classical_Pred_Type.ex_not_not_all U). - -Lemma all_not_not_ex : - forall P:U -> Prop, (forall n:U, ~ P n) -> ~ (exists n : U, P n). -Proof (Classical_Pred_Type.all_not_not_ex U). - -End Generic. diff --git a/theories/Logic/Classical_Type.v b/theories/Logic/Classical_Type.v deleted file mode 100644 index 86fdd69f3e..0000000000 --- a/theories/Logic/Classical_Type.v +++ /dev/null @@ -1,14 +0,0 @@ -(************************************************************************) -(* v * The Coq Proof Assistant / The Coq Development Team *) -(*