aboutsummaryrefslogtreecommitdiff
path: root/contrib/correctness/examples/extract.v
diff options
context:
space:
mode:
authorletouzey2009-03-11 13:36:35 +0000
committerletouzey2009-03-11 13:36:35 +0000
commit40b63c61d2bc22a3cbaac6cfcf3793e7b0297ef2 (patch)
tree16e379eed50b84f51d27a814c5cd2fde7a786ddc /contrib/correctness/examples/extract.v
parenta601e248e2b850c4e7384173090dfa90dcb77d68 (diff)
Cleanup: remove old correctness files, unused for a long time
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11971 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/correctness/examples/extract.v')
-rw-r--r--contrib/correctness/examples/extract.v43
1 files changed, 0 insertions, 43 deletions
diff --git a/contrib/correctness/examples/extract.v b/contrib/correctness/examples/extract.v
deleted file mode 100644
index e225ba187a..0000000000
--- a/contrib/correctness/examples/extract.v
+++ /dev/null
@@ -1,43 +0,0 @@
-
-(* Tests d'extraction *)
-
-Require ProgramsExtraction.
-Save State Ici "test extraction".
-
-(* exp *)
-
-Require exp.
-Write Caml File "exp" [ i_exp r_exp ].
-
-(* exp_int *)
-
-Restore State Ici.
-Require exp_int.
-Write Caml File "exp_int" [ i_exp r_exp ].
-
-(* fact *)
-
-Restore State Ici.
-Require fact.
-Initialize x with (S (S (S O))).
-Initialize y with O.
-Write Caml File "fact" [ factorielle ].
-
-(* fact_int *)
-
-Restore State Ici.
-Require fact_int.
-Initialize x with `3`.
-Initialize y with `0`.
-Write Caml File "fact_int" [ factorielle ].
-
-(* Handbook *)
-
-Restore State Ici.
-Require Handbook.
-Initialize X with `3`.
-Initialize Y with `3`.
-Initialize Z with `3`.
-Initialize N with `3`.
-Initialize S with `3`.
-Write Caml File "Handbook" [ pgm178 pgm186 pgm196 ].