aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvblot <24938579+vblot@users.noreply.github.com>2021-08-25 15:08:30 +0200
committervblot <24938579+vblot@users.noreply.github.com>2021-08-25 15:08:30 +0200
commitf4bed7efd425a692661606cd1df239bd507e594f (patch)
tree4358d7c480bff0eb67ee3dd0a7990ba801e20f35
parentc3d1cddab0e6746d497ca444cb4a9a1629c3c45e (diff)
parentabd3858dfd86a3aab07025b50c1f63f0b28f1b7f (diff)
downloadsmtcoq-f4bed7efd425a692661606cd1df239bd507e594f.tar.gz
smtcoq-f4bed7efd425a692661606cd1df239bd507e594f.zip
Merge remote-tracking branch 'origin/coq-8.10' into HEAD
-rw-r--r--src/Array/PArray.v2
-rw-r--r--src/SMTCoq.v2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Array/PArray.v b/src/Array/PArray.v
index 3c98041..35d68b4 100644
--- a/src/Array/PArray.v
+++ b/src/Array/PArray.v
@@ -101,9 +101,11 @@ Definition length {A:Type} (t:array A) : int :=
Definition copy {A:Type} (t:array A) : array A := t.
+Module Export PArrayNotations.
Delimit Scope array_scope with array.
Notation "t '.[' i ']'" := (get t i) (at level 50) : array_scope.
Notation "t '.[' i '<-' a ']'" := (set t i a) (at level 50) : array_scope.
+End PArrayNotations.
Local Open Scope array_scope.
diff --git a/src/SMTCoq.v b/src/SMTCoq.v
index 9c85d72..694f2ed 100644
--- a/src/SMTCoq.v
+++ b/src/SMTCoq.v
@@ -11,7 +11,7 @@
Require Export PropToBool.
-Require Export Int63 List PArray.
+Require Export Int63 List.
Require Export SMTCoq.State SMTCoq.SMT_terms SMTCoq.Trace SMT_classes_instances.
Require Export Tactics.
Require Export Conversion_tactics.