Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 73b4019c authored by POTTIER Francois's avatar POTTIER Francois
Browse files

Headers.

parent 4b4de084
No related branches found
No related tags found
No related merge requests found
Feat
François Pottier, Inria Paris
Copyright Inria. All rights reserved. This file is distributed under the
terms of the MIT license, as described in the file LICENSE.
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
(* -------------------------------------------------------------------------- *) (* -------------------------------------------------------------------------- *)
(* Core combinators. *) (* Core combinators. *)
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
(* An enumeration of type ['a enum] can be loosely thought of as a set of (* An enumeration of type ['a enum] can be loosely thought of as a set of
values of type ['a], equipped with a notion of size. More precisely, it values of type ['a], equipped with a notion of size. More precisely, it
is a function of a size [s] to a subset of inhabitants of size [s], is a function of a size [s] to a subset of inhabitants of size [s],
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
(* The default implementation of the signature SEQ is based on IFSeqSyn, (* The default implementation of the signature SEQ is based on IFSeqSyn,
instantiated with the unbounded integers provided by [zarith]. *) instantiated with the unbounded integers provided by [zarith]. *)
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
open IFSeqSig open IFSeqSig
(* An implementation of the signature SEQ, (* An implementation of the signature SEQ,
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
(* No need to use unbounded integers here, since we will run out of time and (* No need to use unbounded integers here, since we will run out of time and
memory before an overflow occurs. *) memory before an overflow occurs. *)
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
(* This is a naive implementation of finite sequences as lists. *) (* This is a naive implementation of finite sequences as lists. *)
open IFSeqSig open IFSeqSig
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
(* This is an implementation of implicit finite sequences as objects, that is, (* This is an implementation of implicit finite sequences as objects, that is,
records of closures. This is the implementation style proposed in the Feat records of closures. This is the implementation style proposed in the Feat
paper by Duregard et al. *) paper by Duregard et al. *)
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
open IFSeqSig open IFSeqSig
(* This is an implementation of implicit finite sequences as objects, that is, (* This is an implementation of implicit finite sequences as objects, that is,
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
(* A signature for implicit finite sequences. *) (* A signature for implicit finite sequences. *)
(* These sequences are implicit, which means that they are not explicitly (* These sequences are implicit, which means that they are not explicitly
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
(* This is an implementation of implicit finite sequences as syntax, that is, (* This is an implementation of implicit finite sequences as syntax, that is,
algebraic data structures. This style should be more efficient than the one algebraic data structures. This style should be more efficient than the one
used in IFSeqObj, because fewer memory blocks are allocated (one block per used in IFSeqObj, because fewer memory blocks are allocated (one block per
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
open IFSeqSig open IFSeqSig
(* This is an implementation of implicit finite sequences as syntax, (* This is an implementation of implicit finite sequences as syntax,
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
(* Uniform random generation of large integers. Copied and adapted from Jane (* Uniform random generation of large integers. Copied and adapted from Jane
Street's bignum library. *) Street's bignum library. *)
......
(******************************************************************************)
(* *)
(* Feat *)
(* *)
(* François Pottier, Inria Paris *)
(* *)
(* Copyright Inria. All rights reserved. This file is distributed under the *)
(* terms of the MIT license, as described in the file LICENSE. *)
(******************************************************************************)
(* Uniform random generation of large integers. *) (* Uniform random generation of large integers. *)
val random: Z.t -> Z.t val random: Z.t -> Z.t
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment