aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorvblot <24938579+vblot@users.noreply.github.com>2021-08-25 15:23:11 +0200
committervblot <24938579+vblot@users.noreply.github.com>2021-08-25 15:23:11 +0200
commitbf3274ff4c589016384d8ea6ffe6b44f4ae3dc41 (patch)
tree85cd3bf5ae5f562872b1102dc6615997e90b451e /src
parent9931cf069f4cb589663c7409f4f4a1870091724a (diff)
parent4fbae4115d10166f7dab7c02cee01b1bacc61ac7 (diff)
downloadsmtcoq-bf3274ff4c589016384d8ea6ffe6b44f4ae3dc41.tar.gz
smtcoq-bf3274ff4c589016384d8ea6ffe6b44f4ae3dc41.zip
Merge remote-tracking branch 'origin/coq-8.12' into HEAD
Diffstat (limited to 'src')
-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.