22a3b5f483cdff0c0e7bc3140c8d8a2dbfce703c
[tatoo.git] / src / eval.ml
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                               TAToo                                 *)
4 (*                                                                     *)
5 (*                     Kim Nguyen, LRI UMR8623                         *)
6 (*                   Université Paris-Sud & CNRS                       *)
7 (*                                                                     *)
8 (*  Copyright 2010-2013 Université Paris-Sud and Centre National de la *)
9 (*  Recherche Scientifique. All rights reserved.  This file is         *)
10 (*  distributed under the terms of the GNU Lesser General Public       *)
11 (*  License, with the special exception on linking described in file   *)
12 (*  ../LICENSE.                                                        *)
13 (*                                                                     *)
14 (***********************************************************************)
15
16 (*
17   Time-stamp: <Last modified on 2013-04-23 15:45:14 CEST by Kim Nguyen>
18 *)
19
20 INCLUDE "utils.ml"
21 open Format
22
23 module Make (T : Tree.S) :
24   sig
25     val eval : Ata.t -> T.t -> T.node -> T.node list
26   end
27  = struct
28
29
30 IFDEF HTMLTRACE
31   THEN
32 DEFINE TRACE(e) = (e)
33   ELSE
34 DEFINE TRACE(e) = ()
35 END
36
37    let html tree node i config msg =
38      let config = config.Ata.Config.node in
39      let oldi = config.Ata.round in
40      Html.trace (T.preorder tree node) i oldi
41        "%s<br/>sat: %a<br/>unsat: %a<br/>todo: %around: %i<br/>"
42        msg
43        StateSet.print config.Ata.sat
44        StateSet.print config.Ata.unsat
45        (Ata.TransList.print ~sep:"<br/>") config.Ata.todo oldi
46
47
48   type cache = StateSet.t Cache.N1.t
49   let get c t n = Cache.N1.find c (T.preorder t n)
50
51   let set c t n v i =
52     v.Ata.Config.node.Ata.round <- i;
53     Cache.N1.add c (T.preorder t n) v
54
55
56   let top_down_run auto tree node cache _i =
57     let redo = ref false in
58     let rec loop node =
59       if node != T.nil then begin
60         let parent = T.parent tree node in
61         let fc = T.first_child tree node in
62         let ns = T.next_sibling tree node in
63         let tag = T.tag tree node in
64         let config0 =
65           let c = get cache tree node in
66           if c == Cache.N1.dummy cache then
67            Ata.Config.make
68              { c.Ata.Config.node with
69                Ata.todo = Ata.get_trans auto tag auto.Ata.states;
70                summary = Ata.node_summary
71                  (node == T.first_child tree parent) (* is_left *)
72                  (node == T.next_sibling tree parent) (* is_right *)
73                  (fc != T.nil) (* has_left *)
74                  (ns != T.nil) (* has_right *)
75                  (T.kind tree node) (* kind *)
76              }
77           else c
78         in
79
80         TRACE(html tree node _i config0 "Entering node");
81
82         let ps = get cache tree parent in
83         let fcs = get cache tree fc in
84         let nss = get cache tree ns in
85         let config1 = Ata.eval_trans auto fcs nss ps config0 in
86
87         TRACE(html tree node _i config1 "Updating transitions");
88
89         if config0 != config1 then set cache tree node config1 _i;
90         let () = loop fc in
91         let fcs1 = get cache tree fc in
92         let config2 = Ata.eval_trans auto fcs1 nss ps config1 in
93
94         TRACE(html tree node _i config2 "Updating transitions (after first-child)");
95
96         if config1 != config2 then set cache tree node config2 _i;
97         let () = loop ns in
98         let config3 = Ata.eval_trans auto fcs1 (get cache tree ns) ps config2 in
99
100         TRACE(html tree node _i config3 "Updating transitions (after next-sibling)");
101
102         if config2 != config3 then set cache tree node config3 _i;
103         (* We do set the redo flat if : *)
104         if not (
105           config0 == config3 (* did not gain any new information *)
106           || !redo (* already set *)
107           || Ata.TransList.nil == config3.Ata.Config.node.Ata.todo ) (* no more transition to check *)
108         then redo := true
109       end
110     in
111     loop node;
112     !redo
113
114   let get_results auto tree node cache =
115     let rec loop node acc =
116       if node == T.nil then acc
117       else
118         let acc0 = loop (T.next_sibling tree node) acc in
119         let acc1 = loop (T.first_child tree node) acc0 in
120
121         if StateSet.intersect
122           (get cache tree node).Ata.Config.node.Ata.sat
123           auto.Ata.selection_states then node::acc1
124         else acc1
125     in
126     loop node []
127
128   let eval auto tree node =
129     let cache = Cache.N1.create
130       (Ata.Config.make { Ata.sat = StateSet.empty;
131                          Ata.unsat = StateSet.empty;
132                          Ata.todo = Ata.TransList.nil;
133                          Ata.summary = Ata.dummy_summary;
134                          Ata.round = ~-1;
135                        })
136     in
137     let redo = ref true in
138     let iter = ref 0 in
139     Ata.reset auto;
140     while !redo do
141       redo := false;
142       Ata.reset auto; (* prevents the .cache2 and .cache4 memoization tables from growing too much *)
143       redo := top_down_run auto tree node cache !iter;
144       incr iter;
145     done;
146     at_exit (fun () -> eprintf "@[STATS: %i iterations@]@." !iter);
147     let r = get_results auto tree node cache in
148     TRACE(Html.gen_trace (module T : Tree.S with type t = T.t) (tree));
149     r
150
151 end