aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvblot <24938579+vblot@users.noreply.github.com>2021-08-25 15:01:45 +0200
committervblot <24938579+vblot@users.noreply.github.com>2021-08-25 15:01:45 +0200
commitabd3858dfd86a3aab07025b50c1f63f0b28f1b7f (patch)
tree2a3feeae79f10784ffbf4b987fe9e7e2bc56665d
parent682cd46ec5d166ce0d92dd15a9446f9f1d980f6e (diff)
parent01431eb67ed566baa2268f1382d687bc7b020d1c (diff)
downloadsmtcoq-abd3858dfd86a3aab07025b50c1f63f0b28f1b7f.tar.gz
smtcoq-abd3858dfd86a3aab07025b50c1f63f0b28f1b7f.zip
Merge remote-tracking branch 'origin/master' 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.