From: Kim Nguyễn Date: Wed, 17 Jul 2013 16:00:22 +0000 (+0200) Subject: Add an interface for the evaluation module. X-Git-Tag: v0.1~76 X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=commitdiff_plain;h=077801b69291925b0ce0ff30e36b1061488ed853 Add an interface for the evaluation module. --- 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