aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2022-05-04 10:32:20 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2022-05-04 10:32:20 +0200
commit8d98966a376b19fdfde3e4d8801d666bb4c1018f (patch)
treee6c0750f1ddffc4c1e0a185e7e13c78fd10e4628
parent1c5d8f0b46b601b0c8a288f7de156225dd50dd66 (diff)
downloadsmtcoq-8d98966a376b19fdfde3e4d8801d666bb4c1018f.tar.gz
smtcoq-8d98966a376b19fdfde3e4d8801d666bb4c1018f.zip
Comment tests
-rw-r--r--src/PropToBool.v48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/PropToBool.v b/src/PropToBool.v
index 1ff78c1..68800dd 100644
--- a/src/PropToBool.v
+++ b/src/PropToBool.v
@@ -240,30 +240,30 @@ Ltac prop2bool_hyps Hs :=
-Section Test.
- Variable A : Type.
-
- Hypothesis basic : forall (l1 l2:list A), length (l1++l2) = length l1 + length l2.
- Hypothesis no_eq : forall (z1 z2:Z), (z1 < z2)%Z.
- Hypothesis uninterpreted_type : forall (a:A), a = a.
- Hypothesis bool_eq : forall (b:bool), negb (negb b) = b.
-
- Goal True.
- Proof.
- prop2bool_hyp basic.
- prop2bool_hyp no_eq.
- prop2bool_hyp uninterpreted_type.
- admit.
- prop2bool_hyp bool_eq.
- prop2bool_hyp plus_n_O.
- Abort.
-
- Goal True.
- Proof.
- prop2bool_hyps (basic, plus_n_O, no_eq, uninterpreted_type, bool_eq, plus_O_n).
- admit.
- Abort.
-End Test.
+(* Section Test. *)
+(* Variable A : Type. *)
+
+(* Hypothesis basic : forall (l1 l2:list A), length (l1++l2) = length l1 + length l2. *)
+(* Hypothesis no_eq : forall (z1 z2:Z), (z1 < z2)%Z. *)
+(* Hypothesis uninterpreted_type : forall (a:A), a = a. *)
+(* Hypothesis bool_eq : forall (b:bool), negb (negb b) = b. *)
+
+(* Goal True. *)
+(* Proof. *)
+(* prop2bool_hyp basic. *)
+(* prop2bool_hyp no_eq. *)
+(* prop2bool_hyp uninterpreted_type. *)
+(* admit. *)
+(* prop2bool_hyp bool_eq. *)
+(* prop2bool_hyp plus_n_O. *)
+(* Abort. *)
+
+(* Goal True. *)
+(* Proof. *)
+(* prop2bool_hyps (basic, plus_n_O, no_eq, uninterpreted_type, bool_eq, plus_O_n). *)
+(* admit. *)
+(* Abort. *)
+(* End Test. *)
Section Group.