aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2021-10-14 17:22:22 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2021-10-14 17:22:22 +0200
commite332a084fbe56d364df70fd6ec403fdb61f7d624 (patch)
treeaeb009f6e9fc5715f155af9b684aa5abc6d1fe25
parente6de8a2ed219f11193174220047cefb66b18bdd1 (diff)
parent189b6a17e6dbf2f7f6a396fc81cd384952211091 (diff)
downloadsmtcoq-e332a084fbe56d364df70fd6ec403fdb61f7d624.tar.gz
smtcoq-e332a084fbe56d364df70fd6ec403fdb61f7d624.zip
Merge remote-tracking branch 'origin/master' into coq-8.10
-rw-r--r--src/trace/smtAtom.ml2
-rw-r--r--unit-tests/Tests_verit_tactics.v43
2 files changed, 44 insertions, 1 deletions
diff --git a/src/trace/smtAtom.ml b/src/trace/smtAtom.ml
index 3e16f6c..9697882 100644
--- a/src/trace/smtAtom.ml
+++ b/src/trace/smtAtom.ml
@@ -1351,7 +1351,7 @@ module Atom =
let c, _ = CoqInterface.decompose_app ty in
CoqInterface.eq_constr c (Lazy.force cCompDec)
then
- (x::[], xs)
+ ([x], xs)
else
([], l)
| _ -> (x::l1, l2)
diff --git a/unit-tests/Tests_verit_tactics.v b/unit-tests/Tests_verit_tactics.v
index 2bdc520..2f080a8 100644
--- a/unit-tests/Tests_verit_tactics.v
+++ b/unit-tests/Tests_verit_tactics.v
@@ -1406,3 +1406,46 @@ Section EqSym.
Goal hd_error (x :: xs) = Some a /\ tl (x :: xs) = r <-> x :: xs = a :: r.
Proof. verit. Qed.
End EqSym.
+
+
+
+Section PrenexDependentTypes.
+ Variables A B : Type.
+ Variable F : Type -> Type.
+ Variable p : B -> F bool.
+ Variable dep : forall (X:Type), A -> F X -> bool.
+ Hypothesis H : forall (x : A) (y : B), dep bool x (p y) = true.
+
+ Hypothesis HF : CompDec (F bool).
+ Hypothesis HA : CompDec A.
+ Hypothesis HB : CompDec B.
+
+ Variable a : A.
+ Variable b : B.
+
+ Goal dep bool a (p b).
+ Proof. verit. Qed.
+
+End PrenexDependentTypes.
+
+
+(*
+Section NonPrenexDependentTypes.
+ Variables A B : Type.
+ Variable F : Type -> Type.
+ Variable p : B -> F bool.
+ Variable dep : A -> forall (X:Type), F X -> bool.
+ Hypothesis H : forall (x : A) (y : B), dep x bool (p y) = true.
+
+ Hypothesis HF : CompDec (F bool).
+ Hypothesis HA : CompDec A.
+ Hypothesis HB : CompDec B.
+
+ Variable a : A.
+ Variable b : B.
+
+ Goal dep a bool (p b).
+ Proof. Fail verit. Qed.
+
+End NonPrenexDependentTypes.
+*)