X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=blobdiff_plain;f=src%2Fauto%2Fformula.mli;fp=src%2Fauto%2Fformula.mli;h=0000000000000000000000000000000000000000;hp=d708c2d16835a63d69f96b1f247c9dc18faf14c0;hb=b00bff88c7902e828804c06b7f9dc55222fdc84e;hpb=03b6a364e7240ca827585e7baff225a0aaa33bc6 diff --git a/src/auto/formula.mli b/src/auto/formula.mli deleted file mode 100644 index d708c2d..0000000 --- a/src/auto/formula.mli +++ /dev/null @@ -1,90 +0,0 @@ -(***********************************************************************) -(* *) -(* TAToo *) -(* *) -(* Kim Nguyen, LRI UMR8623 *) -(* Université Paris-Sud & CNRS *) -(* *) -(* Copyright 2010-2012 Université Paris-Sud and Centre National de la *) -(* Recherche Scientifique. All rights reserved. This file is *) -(* distributed under the terms of the GNU Lesser General Public *) -(* License, with the special exception on linking described in file *) -(* ../LICENSE. *) -(* *) -(***********************************************************************) - -(* - Time-stamp: -*) - -module type ATOM = -sig - type t - val neg : t -> t - include Utils.Hcons.Abstract with type t := t - include Utils.Common_sig.Printable with type t := t -end - -type ('formula,'atom) expr = - | False - | True - | Or of 'formula * 'formula - | And of 'formula * 'formula - | Atom of 'atom - -(** View of the internal representation of a formula, - used for pattern matching *) - -module Make(P : ATOM) : -sig - type t - - (** Abstract type representing hashconsed formulae *) - - val hash : t -> int - (** Hash function for formulae *) - - val uid : t -> Utils.Uid.t - (** Returns a unique ID for formulae *) - - val equal : t -> t -> bool - (** Equality over formulae *) - - val expr : t -> (t,P.t) expr - (** Return a view of the formulae *) - - val compare : t -> t -> int - (** Comparison of formulae *) - - val print : Format.formatter -> t -> unit - (** Pretty printer *) - - val is_true : t -> bool - (** [is_true f] tests whether the formula is the atom True *) - - val is_false : t -> bool - (** [is_false f] tests whether the formula is the atom False *) - - val true_ : t - (** Atom True *) - - val false_ : t - (** Atom False *) - - val atom_ : P.t -> t - (** [atom_ dir b q] creates a down_left or down_right atom for state - [q]. The atom is positive if [b == true]. - *) - - val not_ : t -> t - val or_ : t -> t -> t - val and_ : t -> t -> t - (** Boolean connective *) - - val of_bool : bool -> t - (** Convert an ocaml Boolean value to a formula *) - - val fold : (t -> 'a -> 'a) -> t -> 'a -> 'a - (** [fold f phi acc] folds [f] over the formula structure *) - -end