aboutsummaryrefslogtreecommitdiffhomepage
path: root/etc/coq
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>1999-10-25 13:04:22 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>1999-10-25 13:04:22 +0000
commit385e6f2309b0bb7e3eac68ec7e8da449e5fc77ef (patch)
tree49251afabe0c0bdd516d4052b0217e215de04ee5 /etc/coq
parent7b86110d71e6281111d9bcfc44097a9113c630ae (diff)
Trivial tests for auto multiple files.
Diffstat (limited to 'etc/coq')
-rw-r--r--etc/coq/multiple/README8
-rw-r--r--etc/coq/multiple/a.v11
-rw-r--r--etc/coq/multiple/b.v11
-rw-r--r--etc/coq/multiple/c.v11
4 files changed, 41 insertions, 0 deletions
diff --git a/etc/coq/multiple/README b/etc/coq/multiple/README
new file mode 100644
index 00000000..6262021a
--- /dev/null
+++ b/etc/coq/multiple/README
@@ -0,0 +1,8 @@
+Quick test for automatic multiple files:
+
+Process a.v, b.v, c.v in turn.
+
+Undo in b.v
+
+Should automatically unlock c.v.
+
diff --git a/etc/coq/multiple/a.v b/etc/coq/multiple/a.v
new file mode 100644
index 00000000..72088498
--- /dev/null
+++ b/etc/coq/multiple/a.v
@@ -0,0 +1,11 @@
+(* Silly tests for automatic auto file handling *)
+
+Goal (A,B:Prop)(and A B) -> (and B A).
+Intros A B H.
+Induction H.
+Apply conj.
+Assumption.
+Assumption.
+Save and_comms_a.
+
+
diff --git a/etc/coq/multiple/b.v b/etc/coq/multiple/b.v
new file mode 100644
index 00000000..a1a68374
--- /dev/null
+++ b/etc/coq/multiple/b.v
@@ -0,0 +1,11 @@
+(* Silly tests for automatic auto file handling *)
+
+Goal (A,B:Prop)(and A B) -> (and B A).
+Intros A B H.
+Induction H.
+Apply conj.
+Assumption.
+Assumption.
+Save and_comms_b.
+
+
diff --git a/etc/coq/multiple/c.v b/etc/coq/multiple/c.v
new file mode 100644
index 00000000..ffdf1d5e
--- /dev/null
+++ b/etc/coq/multiple/c.v
@@ -0,0 +1,11 @@
+(* Silly tests for automatic auto file handling *)
+
+Goal (A,B:Prop)(and A B) -> (and B A).
+Intros A B H.
+Induction H.
+Apply conj.
+Assumption.
+Assumption.
+Save and_comms_c.
+
+