diff options
author | letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2001-12-10 14:54:35 +0000 |
---|---|---|
committer | letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2001-12-10 14:54:35 +0000 |
commit | 00588ac2c248155ee8cfd574ab517df235a5831a (patch) | |
tree | 32dde2a2bca531790775ae45a38618b39b50cc0c /contrib/extraction/test | |
parent | 8aca39be6ce04de3800d2839387dedbe49d6bdf4 (diff) |
correction de bugs concernant la gestion des modules. debranchement du test d'extraction sur les Reals en attendant
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2282 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/extraction/test')
-rw-r--r-- | contrib/extraction/test/Makefile | 1 | ||||
-rw-r--r-- | contrib/extraction/test/custom/Reals.v | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/contrib/extraction/test/Makefile b/contrib/extraction/test/Makefile index 1db621f18..90598daa4 100644 --- a/contrib/extraction/test/Makefile +++ b/contrib/extraction/test/Makefile @@ -9,6 +9,7 @@ TOPDIR=../../.. AXIOMSVO:= \ theories/Arith/Arith.vo \ theories/Lists/List.vo \ +theories/Reals/% \ theories/Reals/Rsyntax.vo \ theories/Num/% \ theories/ZArith/Zsyntax.vo diff --git a/contrib/extraction/test/custom/Reals.v b/contrib/extraction/test/custom/Reals.v index d42fe0a53..b817c3600 100644 --- a/contrib/extraction/test/custom/Reals.v +++ b/contrib/extraction/test/custom/Reals.v @@ -9,4 +9,8 @@ Extract Inlined Constant Rinv => "(fun x -> 1.0 /. x)". Extract Inlined Constant Rlt => "(<)". Extract Inlined Constant up => "AddReals.my_ceil". Extract Inlined Constant total_order_T => "AddReals.total_order_T". - +Extract Inlined Constant sqrt => "sqrt". +Extract Inlined Constant sigma => "(fun l h -> sigma_aux l h (Minus.minus h l))". +Extract Inlined Constant PI => "3.141593". +Extract Inlined Constant cos => cos. +Extract Inlined Constant sin => sin. |