Add an interface for the evaluation module.
authorKim Nguyễn <kn@lri.fr>
Wed, 17 Jul 2013 16:00:22 +0000 (18:00 +0200)
committerKim Nguyễn <kn@lri.fr>
Wed, 17 Jul 2013 16:09:27 +0000 (18:09 +0200)
src/eval.mli [new file with mode: 0644]

diff --git a/src/eval.mli b/src/eval.mli
new file mode 100644 (file)
index 0000000..8476326
--- /dev/null
@@ -0,0 +1,19 @@
+(***********************************************************************)
+(*                                                                     *)
+(*                               TAToo                                 *)
+(*                                                                     *)
+(*                     Kim Nguyen, LRI UMR8623                         *)
+(*                   Université Paris-Sud & CNRS                       *)
+(*                                                                     *)
+(*  Copyright 2010-2013 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.                                                        *)
+(*                                                                     *)
+(***********************************************************************)
+
+module Make (T : Tree.S) :
+  sig
+    val eval : Ata.t -> T.t -> T.node -> T.node list
+  end