From 7f7ea78e9194b6f7f5332f6e6a82f0edeac85af7 Mon Sep 17 00:00:00 2001 From: herbelin Date: Fri, 24 Dec 2004 12:12:04 +0000 Subject: Passage d'une bibliothèque de grands entiers naturels vers une bibliothèques de grands entiers relatifs munis des 4 opérations de base git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@6501 85f007b7-540e-0410-9357-904b9bb8a0f7 --- contrib/interface/xlate.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/interface/xlate.ml b/contrib/interface/xlate.ml index 78f4984c38..e9e4a15605 100644 --- a/contrib/interface/xlate.ml +++ b/contrib/interface/xlate.ml @@ -266,7 +266,7 @@ let rec xlate_match_pattern = CT_pattern_delimitors(CT_num_type key, xlate_match_pattern p) | CPatNumeral(_,n) -> CT_coerce_NUM_to_MATCH_PATTERN - (CT_int_encapsulator(Bignat.bigint_to_string n)) + (CT_int_encapsulator(Bigint.to_string n)) | CPatNotation(_, s, l) -> CT_pattern_notation(CT_string s, CT_match_pattern_list(List.map xlate_match_pattern l)) @@ -402,7 +402,7 @@ and (xlate_formula:Topconstr.constr_expr -> Ascent.ct_FORMULA) = function | CSort(_, s) -> CT_coerce_SORT_TYPE_to_FORMULA(xlate_sort s) | CNotation(_, s, l) -> notation_to_formula s (List.map xlate_formula l) | CNumeral(_, i) -> - CT_coerce_NUM_to_FORMULA(CT_int_encapsulator(Bignat.bigint_to_string i)) + CT_coerce_NUM_to_FORMULA(CT_int_encapsulator(Bigint.to_string i)) | CHole _ -> CT_existvarc (* I assume CDynamic has been inserted to make free form extension of the language possible, but this would go agains the logic of pcoq anyway. *) -- cgit v1.2.3