aboutsummaryrefslogtreecommitdiff
path: root/parsing/g_zsyntax.ml
diff options
context:
space:
mode:
authorherbelin2004-07-16 20:01:26 +0000
committerherbelin2004-07-16 20:01:26 +0000
commit763cf4f37e10d9a0e8a2a0e9286c02708a60bf08 (patch)
tree006f610487a8a2557176d085852d3e443c547493 /parsing/g_zsyntax.ml
parent3e430c449809e6db5c20c2b5b57fafdd5a230fd3 (diff)
Nouvelle en-tĂȘte
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5920 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing/g_zsyntax.ml')
-rw-r--r--parsing/g_zsyntax.ml24
1 files changed, 12 insertions, 12 deletions
diff --git a/parsing/g_zsyntax.ml b/parsing/g_zsyntax.ml
index bfed293414..55e6c7ffb6 100644
--- a/parsing/g_zsyntax.ml
+++ b/parsing/g_zsyntax.ml
@@ -1,10 +1,10 @@
-(***********************************************************************)
-(* v * The Coq Proof Assistant / The Coq Development Team *)
-(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
-(* \VV/ *************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(***********************************************************************)
+(************************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
+(* \VV/ **************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(************************************************************************)
(* $Id$ *)
@@ -219,9 +219,9 @@ let uninterp_positive p =
with Non_closed_number ->
None
-(***********************************************************************)
+(************************************************************************)
(* Declaring interpreters and uninterpreters for positive *)
-(***********************************************************************)
+(************************************************************************)
let _ = Symbols.declare_numeral_interpreter "positive_scope"
(glob_positive,positive_module)
@@ -284,7 +284,7 @@ let uninterp_n p =
try Some (bignat_of_n p)
with Non_closed_number -> None
-(***********************************************************************)
+(************************************************************************)
(* Declaring interpreters and uninterpreters for N *)
let _ = Symbols.declare_numeral_interpreter "N_scope"
@@ -348,7 +348,7 @@ let uninterp_z p =
Some (bigint_of_z p)
with Non_closed_number -> None
-(***********************************************************************)
+(************************************************************************)
(* Declaring interpreters and uninterpreters for Z *)
let _ = Symbols.declare_numeral_interpreter "Z_scope"
@@ -360,7 +360,7 @@ let _ = Symbols.declare_numeral_interpreter "Z_scope"
uninterp_z,
None)
-(***********************************************************************)
+(************************************************************************)
(* Old V7 ast Printers *)
open Esyntax