(***********************************************************************) (* *) (* Lucca Hirschi, ? *) (* ? *) (* *) (* Copyright 2010-2012 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. *) (* *) (***********************************************************************) (* Il faut tout paramétrer par tr!!!! je ne sais pas comment faire >< **) module Node = struct type t = Tree.node let tr = Tree.load_xml_string "" let compare n1 n2 = (Tree.preorder tr n2) - (Tree.preorder tr n1) end module NodeMap = Map.Make (Node) type t = StateSet.t NodeMap.t let compute tree asta = NodeMap.empty let print fmt run = ()