diff options
Diffstat (limited to 'lib/bigint.mli')
-rw-r--r-- | lib/bigint.mli | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/bigint.mli b/lib/bigint.mli index 9a890570..92a97bdc 100644 --- a/lib/bigint.mli +++ b/lib/bigint.mli @@ -1,18 +1,14 @@ (************************************************************************) (* v * The Coq Proof Assistant / The Coq Development Team *) -(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2011 *) +(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2010 *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (************************************************************************) -(*i $Id: bigint.mli 14641 2011-11-06 11:59:10Z herbelin $ i*) - -(*i*) open Pp -(*i*) -(* Arbitrary large integer numbers *) +(** Arbitrary large integer numbers *) type bigint @@ -23,7 +19,7 @@ val zero : bigint val one : bigint val two : bigint -val div2_with_rest : bigint -> bigint * bool (* true=odd; false=even *) +val div2_with_rest : bigint -> bigint * bool (** true=odd; false=even *) val add_1 : bigint -> bigint val sub_1 : bigint -> bigint val mult_2 : bigint -> bigint |