aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2021-11-15 17:35:34 +0100
committerChantal Keller <Chantal.Keller@lri.fr>2021-11-15 17:35:34 +0100
commit0a459d80f75f0abbc60936c3e5b99d993272ce6b (patch)
tree4e50ea26cc16d6e0022a0c2a3b993e78e6844ff3 /unit-tests
parent6699a08a64470c8145324e6ff392fcb3453ade38 (diff)
downloadsmtcoq-0a459d80f75f0abbc60936c3e5b99d993272ce6b.tar.gz
smtcoq-0a459d80f75f0abbc60936c3e5b99d993272ce6b.zip
More bad instanciations by verit
Diffstat (limited to 'unit-tests')
-rw-r--r--unit-tests/Tests_verit_tactics.v26
1 files changed, 26 insertions, 0 deletions
diff --git a/unit-tests/Tests_verit_tactics.v b/unit-tests/Tests_verit_tactics.v
index 2f080a8..ce530bd 100644
--- a/unit-tests/Tests_verit_tactics.v
+++ b/unit-tests/Tests_verit_tactics.v
@@ -1449,3 +1449,29 @@ Section NonPrenexDependentTypes.
End NonPrenexDependentTypes.
*)
+
+
+Section QInstAnd.
+
+ Variable A : Type.
+ Hypothesis HA : CompDec A.
+
+ Hypothesis H : forall (a1 a2:A) l1 l2,
+ eqb_of_compdec _ (a1::l1) (a2::l2) --->
+ (eqb_of_compdec HA a1 a2) && (eqb_of_compdec _ l1 l2).
+
+ Variables a1 a2 : A.
+ Variables l1 l2 : list A.
+ Hypothesis H1 : eqb_of_compdec _ (a1::l1) (a2::l2).
+
+ Goal eqb_of_compdec _ a1 a2.
+ Proof. verit. Qed.
+
+ Variable inb : A -> list A -> bool.
+
+ Hypothesis H2 : forall (a:A) l1 l2, inb a (l1++l2) ---> (inb a l1 || inb a l2).
+
+ Goal negb (inb a1 (l1++l2)) || inb a1 l1 || inb a1 l2.
+ Proof. verit. Qed.
+
+End QInstAnd.