Implement set-theoretic operation on 2WSATA (union, intersection,
[tatoo.git] / src / state.mli
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                               TAToo                                 *)
4 (*                                                                     *)
5 (*                     Kim Nguyen, LRI UMR8623                         *)
6 (*                   Université Paris-Sud & CNRS                       *)
7 (*                                                                     *)
8 (*  Copyright 2010-2012 Université Paris-Sud and Centre National de la *)
9 (*  Recherche Scientifique. All rights reserved.  This file is         *)
10 (*  distributed under the terms of the GNU Lesser General Public       *)
11 (*  License, with the special exception on linking described in file   *)
12 (*  ../LICENSE.                                                        *)
13 (*                                                                     *)
14 (***********************************************************************)
15
16 (** Implementation of states *)
17
18 include Common_sig.Type with type t = int
19
20 val make : unit -> t
21 (** Generate a fresh state *)
22
23 val dummy : t
24 (** Dummy state that can never be returned by [make ()] *)
25
26 val print : Format.formatter -> t -> unit
27 (** Pretty printer *)