Minor
[tatoo.git] / src / run.ml
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                  Lucca Hirschi, ?   *)
4 (*                  ?   *)
5 (*                                                                     *)
6 (*  Copyright 2010-2012 Université Paris-Sud and Centre National de la *)
7 (*  Recherche Scientifique. All rights reserved.  This file is         *)
8 (*  distributed under the terms of the GNU Lesser General Public       *)
9 (*  License, with the special exception on linking described in file   *)
10 (*  ../LICENSE.                                                        *)
11 (*                                                                     *)
12 (***********************************************************************)
13
14
15 (* Il faut tout paramétrer par tr!!!! je ne sais pas comment faire >< **)
16
17 module Node  =
18 struct
19   type t = Tree.node
20   let tr = Tree.load_xml_string ""
21   let compare n1 n2 = (Tree.preorder tr n2) - (Tree.preorder tr n1)
22 end
23   
24 module NodeMap = Map.Make (Node)
25
26 type t = StateSet.t NodeMap.t
27
28 let compute tree asta = NodeMap.empty
29
30 let print fmt run = ()