From 077801b69291925b0ce0ff30e36b1061488ed853 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kim=20Nguy=E1=BB=85n?= Date: Wed, 17 Jul 2013 18:00:22 +0200 Subject: [PATCH 1/1] Add an interface for the evaluation module. --- src/eval.mli | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/eval.mli diff --git a/src/eval.mli b/src/eval.mli new file mode 100644 index 0000000..8476326 --- /dev/null +++ b/src/eval.mli @@ -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 -- 2.17.1