Exception less mainloop in ata.ml
[SXSI/xpathcomp.git] / ata.ml
1 INCLUDE "debug.ml"
2 INCLUDE "utils.ml"
3 open Camlp4.Struct
4 type jump_kind = [ `TAG of Tag.t | `CONTAINS of string | `NOTHING ]
5
6 (* Todo : move elsewhere *)
7 external vb : bool -> int = "%identity"
8
9 module State : 
10 sig 
11   include Sigs.T with type t = int 
12   val make : unit -> t 
13 end =
14 struct
15   type t = int
16   let make = let id = ref ~-1 in
17   fun () -> incr id; !id
18
19   let compare = (-)
20   let equal = (==)
21   external hash : t -> int =  "%identity"
22   let print fmt x = Format.fprintf fmt "%i" x
23   let dump fmt x = print fmt x
24   let check x = 
25     if x < 0 then failwith (Printf.sprintf "State: Assertion %i < 0 failed" x)
26 end
27
28 module StateSet = Ptset.Int
29   
30 module Formula =
31 struct
32     type 'hcons expr = 
33       | False | True
34       | Or of 'hcons * 'hcons
35       | And of 'hcons * 'hcons
36       | Atom of ([ `Left | `Right  | `LLeft | `RRight  ]*bool*State.t)
37
38     type 'hcons node = {
39       pos : 'hcons expr;
40       mutable neg : 'hcons;
41       st : (StateSet.t*StateSet.t*StateSet.t)*(StateSet.t*StateSet.t*StateSet.t);
42       size: int; (* Todo check if this is needed *)
43     }
44         
45     external hash_const_variant : [> ] -> int = "%identity" 
46     module rec Node : Hcons.S with type data = Data.t = Hcons.Make (Data)
47     and Data : Hashtbl.HashedType  with type t = Node.t node =
48     struct 
49     type t =  Node.t node
50     let equal x y = x.size == y.size &&
51       match x.pos,y.pos with
52         | a,b when a == b -> true
53         | Or(xf1,xf2),Or(yf1,yf2) 
54         | And(xf1,xf2),And(yf1,yf2)  -> (xf1 == yf1) && (xf2 == yf2)
55         | Atom(d1,p1,s1), Atom(d2,p2,s2) -> d1 == d2 && (p1==p2) && s1 == s2
56         | _ -> false
57     let hash f = 
58       match f.pos with
59         | False -> 0
60         | True -> 1
61         | Or (f1,f2) -> HASHINT3(PRIME2,Uid.to_int f1.Node.id, Uid.to_int f2.Node.id)
62         | And (f1,f2) -> HASHINT3(PRIME3,Uid.to_int f1.Node.id, Uid.to_int f2.Node.id)
63         | Atom(d,p,s) -> HASHINT4(PRIME4,hash_const_variant d,vb p,s)       
64     end
65
66     type t = Node.t
67     let hash x = x.Node.key
68     let uid x = x.Node.id
69     let equal = Node.equal 
70     let expr f = f.Node.node.pos 
71     let st f = f.Node.node.st
72     let size f = f.Node.node.size
73       
74     let prio f = 
75       match expr f with
76         | True | False -> 10
77         | Atom _ -> 8
78         | And _ -> 6
79         | Or _ -> 1
80
81     let rec print ?(parent=false) ppf f =
82       if parent then Format.fprintf ppf "(";
83       let _ = match expr f with
84         | True -> Format.fprintf ppf "T"
85         | False -> Format.fprintf ppf "F"
86         | And(f1,f2) -> 
87             print ~parent:(prio f > prio f1) ppf f1;
88             Format.fprintf ppf " ∧ ";
89             print ~parent:(prio f > prio f2) ppf f2;
90         | Or(f1,f2) -> 
91             (print ppf f1);
92             Format.fprintf ppf " ∨ ";
93             (print ppf f2);
94         | Atom(dir,b,s) -> Format.fprintf ppf "%s%s[%i]"
95             (if b then "" else "¬")
96               (match  dir with 
97                  | `Left ->  "↓₁" 
98                  | `Right -> "↓₂"
99                  | `LLeft ->  "⇓₁" 
100                  | `RRight -> "⇓₂") s
101       in
102         if parent then Format.fprintf ppf ")"
103           
104     let print ppf f =  print ~parent:false ppf f
105       
106     let is_true f = (expr f) == True
107     let is_false f = (expr f) == False
108
109
110     let cons pos neg s1 s2 size1 size2 =
111       let nnode = Node.make { pos = neg; neg = (Obj.magic 0); st = s2; size = size2 } in
112       let pnode = Node.make { pos = pos; neg = nnode ; st = s1; size = size1 }
113       in 
114         (Node.node nnode).neg <- pnode; (* works because the neg field isn't taken into
115                                             account for hashing ! *)
116         pnode,nnode
117
118     let empty_triple = StateSet.empty,StateSet.empty,StateSet.empty
119     let empty_hex = empty_triple,empty_triple
120     let true_,false_ = cons True False empty_hex empty_hex 0 0
121     let atom_ d p s = 
122       let si = StateSet.singleton s in
123       let ss = match d with
124         | `Left -> (si,StateSet.empty,si),empty_triple
125         | `Right -> empty_triple,(si,StateSet.empty,si)
126         | `LLeft -> (StateSet.empty,si,si),empty_triple
127         | `RRight -> empty_triple,(StateSet.empty,si,si)
128       in fst (cons (Atom(d,p,s)) (Atom(d,not p,s)) ss ss 1 1)
129
130     let not_ f = f.Node.node.neg
131     let union_hex  ((l1,ll1,lll1),(r1,rr1,rrr1))  ((l2,ll2,lll2),(r2,rr2,rrr2)) =
132       (StateSet.mem_union l1 l2 ,StateSet.mem_union ll1 ll2,StateSet.mem_union lll1 lll2),
133       (StateSet.mem_union r1 r2 ,StateSet.mem_union rr1 rr2,StateSet.mem_union rrr1 rrr2)
134       
135     let merge_states f1 f2 =
136       let sp = 
137         union_hex (st f1) (st f2)
138       and sn = 
139         union_hex (st (not_ f1)) (st (not_ f2))
140       in
141         sp,sn
142
143     let order f1 f2 = if uid f1  < uid f2 then f2,f1 else f1,f2 
144
145     let or_ f1 f2 = 
146       (* Tautologies: x|x, x|not(x) *)
147
148       if equal f1 f2 then f1 else        
149       if equal f1 (not_ f2) then true_ else
150
151       (* simplification *)
152       if is_true f1 || is_true f2 then true_ else
153       if is_false f1 && is_false f2 then false_ else
154       if is_false f1 then f2 else
155       if is_false f2 then f1 else
156
157       (* commutativity of | *)
158       
159       let f1,f2 = order f1 f2 in
160       let psize = (size f1) + (size f2) in
161       let nsize = (size (not_ f1)) + (size (not_ f2)) in
162       let sp,sn = merge_states f1 f2 in
163       fst (cons (Or(f1,f2)) (And(not_ f1,not_ f2)) sp sn psize nsize)
164               
165                       
166     let and_ f1 f2 = 
167
168       (* Tautologies: x&x, x&not(x) *)
169
170       if equal f1 f2 then f1 else 
171       if equal f1 (not_ f2) then false_ else
172
173         (* simplifications *)
174
175       if is_true f1 && is_true f2 then true_ else
176       if is_false f1 || is_false f2 then false_ else
177       if is_true f1 then f2 else
178       if is_true f2 then f1 else
179       
180       (* commutativity of & *)
181
182       let f1,f2 = order f1 f2 in        
183       let psize = (size f1) + (size f2) in
184       let nsize = (size (not_ f1)) + (size (not_ f2)) in
185       let sp,sn = merge_states f1 f2 in
186         fst (cons (And(f1,f2)) (Or(not_ f1,not_ f2)) sp sn psize nsize)               
187     module Infix = struct
188     let ( +| ) f1 f2 = or_ f1 f2
189     let ( *& ) f1 f2 = and_ f1 f2
190     let ( *+ ) d s = atom_ d true s
191     let ( *- ) d s = atom_ d false s
192     end
193 end
194   
195 module Transition = struct
196   
197   type node = State.t*TagSet.t*bool*Formula.t*bool
198   include Hcons.Make(struct
199                        type t = node
200                        let hash (s,ts,m,f,b) = HASHINT5(s,Uid.to_int (TagSet.uid ts),
201                                                         Uid.to_int (Formula.uid f),
202                                                         vb m,vb b)
203                        let equal (s,ts,b,f,m) (s',ts',b',f',m') = 
204                          s == s' && ts == ts' && b==b' && m==m' && f == f'
205                      end)
206     
207   let print ppf f = let (st,ts,mark,form,b) = node f in
208     Format.fprintf ppf "(%i, " st;
209     TagSet.print ppf ts;
210     Format.fprintf ppf ") %s" (if mark then "⇒" else "→");
211     Formula.print ppf form;
212     Format.fprintf ppf "%s%!" (if b then " (b)" else "")
213
214
215   module Infix = struct
216   let ( ?< ) x = x
217   let ( >< ) state (l,mark) = state,(l,mark,false)
218   let ( ><@ ) state (l,mark) = state,(l,mark,true)
219   let ( >=> ) (state,(label,mark,bur)) form = (state,label,(make (state,label,mark,form,bur)))
220   end
221
222 end
223
224 module TransTable = Hashtbl
225  
226 module Formlist = struct 
227   include Hlist.Make(Transition)
228   let print ppf fl = 
229     iter (fun t -> Transition.print ppf t; Format.pp_print_newline ppf ()) fl
230 end
231
232 module Formlistlist = 
233 struct
234   include Hlist.Make(Formlist)
235   let print ppf fll =
236     iter (fun fl -> Formlist.print ppf fl; Format.pp_print_newline ppf ())fll
237 end
238   
239 type 'a t = { 
240     id : int;
241     mutable states : Ptset.Int.t;
242     init : Ptset.Int.t;
243     starstate : Ptset.Int.t option;
244     (* Transitions of the Alternating automaton *)
245     trans : (State.t,(TagSet.t*Transition.t) list) Hashtbl.t;
246     query_string: string;
247  }
248
249         
250 let dump ppf a = 
251   Format.fprintf ppf "Automaton (%i) :\n" a.id;
252   Format.fprintf ppf "States : "; StateSet.print ppf a.states;
253   Format.fprintf ppf "\nInitial states : "; StateSet.print ppf a.init;
254   Format.fprintf ppf "\nAlternating transitions :\n";
255   let l = Hashtbl.fold (fun k t acc -> 
256                           (List.map (fun (ts,tr) -> (ts,k),Transition.node tr) t) @ acc) a.trans [] in
257   let l = List.sort (fun ((tsx,x),_) ((tsy,y),_) -> 
258                        if y-x == 0 then TagSet.compare tsy tsx else y-x) l in
259   let maxh,maxt,l_print = 
260     List.fold_left (
261       fun (maxh,maxt,l) ((ts,q),(_,_,b,f,_)) ->                   
262         let s = 
263           if TagSet.is_finite ts 
264           then "{" ^ (TagSet.fold (fun t a -> a ^ " '" ^ (Tag.to_string t)^"'") ts "") ^" }"
265           else let cts = TagSet.neg ts in
266           if TagSet.is_empty cts then "*" else
267           (TagSet.fold (fun t a -> a ^ " " ^ (Tag.to_string t)) cts "*\\{"
268           )^ "}"
269         in
270         let s = Printf.sprintf "(%s,%i)" s q in
271         let s_frm =
272           Formula.print Format.str_formatter f;
273           Format.flush_str_formatter()     
274         in
275           (max (String.length s) maxh, max (String.length s_frm) maxt,
276            (s,(if b then "⇒" else "→"),s_frm)::l)) (0,0,[]) l
277   in
278     Format.fprintf ppf "%s\n%!" (String.make (maxt+maxh+3) '_');
279     List.iter (fun (s,m,f) -> let s = s ^ (String.make (maxh-(String.length s)) ' ') in
280                  Format.fprintf ppf "%s %s %s\n" s m f) l_print;
281     Format.fprintf ppf "%s\n%!" (String.make (maxt+maxh+3) '_')
282     
283
284 module FormTable = Hashtbl.Make(struct
285                                   type t = Formula.t*StateSet.t*StateSet.t
286                                   let equal (f1,s1,t1) (f2,s2,t2) =
287                                     f1 == f2 && s1 == s2 && t1 == t2
288                                   let hash (f,s,t) = 
289                                     HASHINT3(Uid.to_int (Formula.uid f),
290                                              Uid.to_int (StateSet.uid s),
291                                              Uid.to_int (StateSet.uid t))
292                                 end)
293 module F = Formula
294
295 let eval_form_bool = 
296   let h_f = FormTable.create BIG_H_SIZE in
297     fun f s1 s2 ->
298       let rec loop f =
299         match F.expr f with
300           | F.True -> true,true,true
301           | F.False -> false,false,false
302           | F.Atom((`Left|`LLeft),b,q) ->
303               if b == (StateSet.mem q s1) 
304               then (true,true,false) 
305               else false,false,false
306           | F.Atom(_,b,q) -> 
307               if b == (StateSet.mem q s2) 
308               then (true,false,true)
309               else false,false,false    
310           | f' -> 
311               try FormTable.find h_f (f,s1,s2)
312               with Not_found -> let r =
313                 match f' with
314                   | F.Or(f1,f2) ->          
315                       let b1,rl1,rr1 = loop f1
316                       in
317                         if b1 && rl1 && rr1 then (true,true,true)  else
318                           let b2,rl2,rr2 = loop f2  in
319                           let rl1,rr1 = if b1 then rl1,rr1 else false,false
320                           and rl2,rr2 = if b2 then rl2,rr2 else false,false
321                           in (b1 || b2, rl1||rl2,rr1||rr2)
322                                
323                   | F.And(f1,f2) -> 
324                       let b1,rl1,rr1 = loop f1 in
325                         if b1 && rl1 && rr1 then (true,true,true) else
326                           if b1 then 
327                             let b2,rl2,rr2 = loop f2 in
328                               if b2 then (true,rl1||rl2,rr1||rr2) else (false,false,false)
329                           else (false,false,false)
330                   | _ -> assert false
331               in FormTable.add h_f (f,s1,s2) r;r
332       in loop f
333
334            
335 module FTable = Hashtbl.Make(struct
336                                type t = Tag.t*Formlist.t*StateSet.t*StateSet.t
337                                let equal (tg1,f1,s1,t1) (tg2,f2,s2,t2) =
338                                  tg1 == tg2 && f1 == f2 &&  s1 == s2 && t1 == t2;;
339                                let hash (tg,f,s,t) =  
340                                  HASHINT4(tg, Uid.to_int (Formlist.uid f),
341                                           Uid.to_int (StateSet.uid s),
342                                           Uid.to_int (StateSet.uid t))
343                              end)
344
345
346 let h_f = FTable.create BIG_H_SIZE 
347 type merge_conf = NO | ONLY1 | ONLY2 | ONLY12 | MARK | MARK1 | MARK2 | MARK12
348 (* 000 001 010 011 100 101 110 111 *)
349 let eval_formlist tag s1 s2 fl =
350   let rec loop fl =
351           try 
352             FTable.find h_f (tag,fl,s1,s2)
353           with 
354             | Not_found  -> 
355                 match Formlist.node fl with
356                   | Formlist.Cons(f,fll) ->
357                       let q,ts,mark,f,_ = Transition.node f in
358                       let b,b1,b2 = 
359                         if TagSet.mem tag ts then eval_form_bool f s1 s2 else (false,false,false)
360                       in
361                       let (s,(b',b1',b2',amark)) as res = loop fll in
362                       let r = if b then (StateSet.add q s, (b, b1'||b1,b2'||b2,mark||amark))
363                       else res
364                       in FTable.add h_f (tag,fl,s1,s2) r;r
365                   | Formlist.Nil -> StateSet.empty,(false,false,false,false)
366   in 
367   let r,conf = loop fl
368   in
369   r,(match  conf with
370     | (false,_,_,_) -> NO
371     | (_,false,false,false) -> NO
372     | (_,true,false,false) -> ONLY1
373     | (_,false,true,false) -> ONLY2
374     | (_,true,true,false) -> ONLY12
375     | (_,false,false,true) -> MARK
376     | (_,true,false,true) -> MARK1
377     | (_,false,true,true) -> MARK2
378     | _ -> MARK12)
379
380 let bool_of_merge conf =
381   match  conf with
382     | NO -> false,false,false,false
383     | ONLY1 -> true,true,false,false
384     | ONLY2 -> true,false,true,false 
385     | ONLY12 -> true,true,true,false 
386     | MARK -> true,false,false,true
387     | MARK1 -> true,true,false,true
388     | MARK2 -> true,false,true,true
389     | MARK12 -> true,true,true,true
390
391
392 let tags_of_state a q = 
393   Hashtbl.fold  
394     (fun p l acc -> 
395        if p == q then List.fold_left 
396          (fun acc (ts,t) -> 
397             let _,_,_,_,aux = Transition.node t in
398               if aux then acc else
399                 TagSet.cup ts acc) acc l
400          
401        else acc) a.trans TagSet.empty
402       
403       
404
405     let tags a qs = 
406       let ts = Ptset.Int.fold (fun q acc -> TagSet.cup acc (tags_of_state a q)) qs TagSet.empty
407       in
408         if TagSet.is_finite ts 
409         then `Positive(TagSet.positive ts)
410         else `Negative(TagSet.negative ts)
411         
412     let inter_text a b =
413       match b with
414         | `Positive s -> let r = Ptset.Int.inter a s in (r,Ptset.Int.mem Tag.pcdata r, true)
415         | `Negative s -> let r = Ptset.Int.diff a s in (r, Ptset.Int.mem Tag.pcdata r, false)
416       
417
418     module type ResultSet = 
419     sig
420       type t
421       type elt = [` Tree ] Tree.node
422       val empty : t
423       val cons : elt -> t -> t
424       val concat : t -> t -> t
425       val iter : ( elt -> unit) -> t -> unit
426       val fold : ( elt -> 'a -> 'a) -> t -> 'a -> 'a
427       val map : ( elt -> elt) -> t -> t
428       val length : t -> int
429       val merge : merge_conf -> elt -> t -> t -> t 
430       val mk_quick_tag_loop : (elt -> elt -> 'a*t array) -> 'a -> int -> Tree.t -> Tag.t -> (elt -> elt -> 'a*t array)
431       val mk_quick_star_loop : (elt -> elt -> 'a*t array) -> 'a -> int -> Tree.t -> (elt -> elt -> 'a*t array)
432     end
433
434     module Integer : ResultSet =
435     struct
436       type t = int
437       type elt = [`Tree] Tree.node
438
439       let empty = 0
440       let cons _ x = x+1
441       let concat x y = x + y
442       let iter _ _ = failwith "iter not implemented"
443       let fold _ _ _ = failwith "fold not implemented"
444       let map _ _ = failwith "map not implemented"
445       let length x = x
446       let merge2 conf t res1 res2 = 
447         let rb,rb1,rb2,mark = conf in
448         if rb then
449           let res1 = if rb1 then res1 else 0
450           and res2 = if rb2 then res2 else 0
451           in
452             if mark then 1+res1+res2
453             else res1+res2
454         else 0
455       let merge conf t res1 res2 = 
456         match conf with
457            NO -> 0                         
458           | ONLY1 -> res1                
459           | ONLY2 -> res2           
460           | ONLY12 -> res1+res2     
461           | MARK -> 1
462           | MARK1 -> res1+1         
463           | MARK2 -> res2+1         
464           | MARK12 -> res1+res2+1   
465
466       let mk_quick_tag_loop _ sl ss tree tag = ();
467         fun t ctx ->
468           (sl, Array.make ss (Tree.subtree_tags tree tag t))
469       let mk_quick_star_loop _ sl ss tree = ();
470         fun t ctx -> 
471           (sl, Array.make ss (Tree.subtree_elements tree t))
472           
473     end
474
475     module IdSet : ResultSet= 
476     struct
477       type elt = [`Tree] Tree.node
478       type node = Nil 
479                   | Cons of elt * node 
480                   | Concat of node*node
481    
482       and t = { node : node;
483                 length :  int }
484
485       let empty = { node = Nil; length = 0 }
486         
487       let cons e t = { node = Cons(e,t.node); length = t.length+1 }
488       let concat t1 t2 = { node = Concat(t1.node,t2.node); length = t1.length+t2.length }
489       let append e t = { node = Concat(t.node,Cons(e,Nil)); length = t.length+1 } 
490         
491       let fold f l acc = 
492         let rec loop acc t = match t with
493           | Nil -> acc
494           | Cons (e,t) -> loop (f e acc) t
495           | Concat (t1,t2) -> loop (loop acc t1) t2
496         in
497           loop acc l.node
498             
499       let length l = l.length
500         
501         
502       let iter f l =
503         let rec loop = function
504           | Nil -> ()
505           | Cons (e,t) -> f e; loop t
506           | Concat(t1,t2) -> loop t1;loop t2
507         in loop l.node
508
509       let map f l =
510         let rec loop = function 
511           | Nil -> Nil
512           | Cons(e,t) -> Cons(f e, loop t)
513           | Concat(t1,t2) -> Concat(loop t1,loop t2)
514         in
515           { l with node = loop l.node }
516             
517       let merge conf t res1 res2 = 
518         match conf with
519            NO -> empty
520           | MARK -> cons t empty
521           | ONLY1 -> res1
522           | ONLY2 -> res2
523           | ONLY12 -> { node = (Concat(res1.node,res2.node));
524                         length = res1.length + res2.length ;}
525           | MARK12 -> { node = Cons(t,(Concat(res1.node,res2.node)));
526                         length = res1.length + res2.length + 1;}
527           | MARK1 -> { node = Cons(t,res1.node);
528                         length = res1.length + 1;}
529           | MARK2 -> { node = Cons(t,res2.node);
530                        length = res2.length + 1;}
531
532       let mk_quick_tag_loop f _ _ _ _ = f
533       let mk_quick_star_loop f _ _ _ = f
534     end
535     module GResult(Doc : sig val doc : Tree.t end) = struct
536       type bits
537       type elt = [` Tree] Tree.node
538       external create_empty : int -> bits = "caml_result_set_create" "noalloc"
539       external set : bits -> int -> unit = "caml_result_set_set" "noalloc"
540       external next : bits -> int -> int = "caml_result_set_next" "noalloc"
541       external count : bits -> int  = "caml_result_set_count" "noalloc"
542       external clear : bits -> elt -> elt -> unit = "caml_result_set_clear" "noalloc"
543          
544       external set_tag_bits : bits -> Tag.t -> Tree.t -> elt -> elt = "caml_set_tag_bits" "noalloc"
545       type t = 
546          { segments : elt list;
547            bits : bits;
548          }
549
550       let ebits = 
551         let size = (Tree.subtree_size Doc.doc Tree.root) in
552         create_empty (size*2+1)
553
554       let empty = { segments = [];
555                     bits = ebits }
556         
557       let cons e t = 
558         let rec loop l = match l with
559           | [] -> { bits = (set t.bits (Obj.magic e);t.bits);
560                     segments = [ e ] }
561           | p::r -> 
562               if Tree.is_binary_ancestor Doc.doc e p then
563               loop r
564               else
565               { bits = (set t.bits (Obj.magic e);t.bits);
566                 segments = e::l }
567         in
568         loop t.segments
569                     
570       let concat t1 t2 =
571         if t2.segments == [] then t1
572         else
573         if t1.segments == [] then t2
574         else
575         let h2 = List.hd t2.segments in
576         let rec loop l = match l with
577           | [] -> t2.segments
578           | p::r -> 
579               if Tree.is_binary_ancestor Doc.doc p h2 then
580               l
581               else
582               p::(loop r)
583         in
584         { bits = t1.bits;
585           segments = loop t1.segments 
586         }
587
588       let iter f t =
589         let rec loop i = 
590           if i == -1 then ()
591           else (f ((Obj.magic i):elt);loop (next t.bits i))
592         in loop (next t.bits 0)
593           
594       let fold f t acc = 
595         let rec loop i acc = 
596           if i == -1 then acc
597           else loop (next t.bits i) (f ((Obj.magic i):elt) acc)
598         in loop (next t.bits 0) acc
599
600       let map _ _ = failwith "noop"
601       (*let length t = let cpt = ref 0 in
602       iter (fun _ -> incr cpt) t; !cpt *)
603       let length t = count t.bits 
604       
605       let clear_bits t = 
606         let rec loop l = match l with
607            [] -> ()
608           | idx::ll ->
609               clear t.bits idx (Tree.closing Doc.doc idx); loop ll
610         in
611         loop t.segments;empty
612
613       let merge (rb,rb1,rb2,mark) elt t1 t2 =
614         if rb then
615 (*      let _ = Printf.eprintf "Lenght before merging is %i %i\n"
616           (List.length t1.segments) (List.length t2.segments)
617         in *)
618         match t1.segments,t2.segments with
619            [],[] -> if mark then cons elt empty else empty
620           | [_],[] when rb1 -> if mark then cons elt t1 else t1
621           | [], [_] when rb2 -> if mark then cons elt t2 else t2
622           | [_],[_] when rb1 && rb2 -> if mark then cons elt empty else
623             concat t1 t2
624           | _ -> 
625         let t1 = if rb1 then t1 else clear_bits t1
626         and t2 = if rb2 then t2 else clear_bits t2
627         in
628         (if mark then cons elt (concat t1 t2)
629          else concat t1 t2)
630         else
631         let _ = clear_bits t1 in
632         clear_bits t2
633
634       let merge conf t t1 t2 = 
635         match t1.segments,t2.segments,conf with
636           | _,_,NO -> let _ = clear_bits t1 in clear_bits t2
637           | [],[],(MARK1|MARK2|MARK12|MARK) -> cons t empty
638           | [],[],_ -> empty
639           | [_],[],(ONLY1|ONLY12) -> t1
640           | [_],[],(MARK1|MARK12) -> cons t t1
641           | [],[_],(ONLY2|ONLY12) -> t2
642           | [],[_],(MARK2|MARK12) -> cons t t2
643           | [_],[_],ONLY12 -> concat t1 t2
644           | [_],[_],MARK12 -> cons t empty
645           | _,_,MARK -> let _ = clear_bits t2 in cons t (clear_bits t1)     
646           | _,_,ONLY1 -> let _ = clear_bits t2 in t1
647           | _,_,ONLY2 -> let _ = clear_bits t1 in t2
648           | _,_,ONLY12 -> concat t1 t2
649           | _,_,MARK1 -> let _ = clear_bits t2 in cons t t1
650           | _,_,MARK2 -> let _ = clear_bits t1 in cons t t2
651           | _,_,MARK12 ->  cons t (concat t1 t2)
652
653       let mk_quick_tag_loop _ sl ss tree tag = ();
654         fun t _ ->        
655           let res = empty in
656           let first = set_tag_bits empty.bits tag tree t in
657           let res = 
658             if first == Tree.nil then res else 
659             cons first res 
660           in
661           (sl, Array.make ss res)
662
663       let mk_quick_star_loop f _ _ _ = f
664     end
665     module Run (RS : ResultSet) =
666     struct
667
668       module SList = struct 
669         include Hlist.Make (StateSet)
670         let print ppf l = 
671           Format.fprintf ppf "[ ";
672           begin
673             match l.Node.node with
674               | Nil -> ()
675               | Cons(s,ll) -> 
676                   StateSet.print ppf s;
677                   iter (fun s -> Format.fprintf ppf "; ";
678                         StateSet.print ppf s) ll
679           end;
680           Format.fprintf ppf "]%!"
681                 
682             
683       end
684
685
686 IFDEF DEBUG
687 THEN
688       module IntSet = Set.Make(struct type t = int let compare = (-) end)
689 INCLUDE "html_trace.ml"
690               
691 END             
692       let mk_fun f s = D_IGNORE_(register_funname f s,f)
693       let mk_app_fun f arg s = let g = f arg in 
694         D_IGNORE_(register_funname g ((get_funname f) ^ " " ^ s), g) 
695       let mk_app_fun f arg _ = f arg 
696       let mk_app_fun2 f arg1 arg2 s = let g = f arg1 arg2 in 
697         D_IGNORE_(register_funname g ((get_funname f) ^ " " ^ s), g) 
698 (*      let mk_app_fun2 f arg1 arg2 s = Printf.eprintf "Building f2 %s\n%!"  s; f arg1 arg2 *)
699
700       let string_of_ts tags = (Ptset.Int.fold (fun t a -> a ^ " " ^ (Tag.to_string t) ) tags "{")^ " }"
701
702
703       module Algebra =
704         struct
705           type jump = [ `NIL | `ANY |`ANYNOTEXT | `JUMP ]
706           type t = jump*Ptset.Int.t*Ptset.Int.t
707           let jts = function 
708           | `JUMP -> "JUMP"
709           | `NIL -> "NIL"
710           | `ANY -> "ANY"
711           | `ANYNOTEXT -> "ANYNOTEXT"
712           let merge_jump (j1,c1,l1) (j2,c2,l2) = 
713             match j1,j2 with
714               | _,`NIL -> (j1,c1,l1)
715               | `NIL,_ -> (j2,c2,l2)
716               | `ANY,_ -> (`ANY,Ptset.Int.empty,Ptset.Int.empty)
717               | _,`ANY -> (`ANY,Ptset.Int.empty,Ptset.Int.empty)
718               | `ANYNOTEXT,_ -> 
719                   if Ptset.Int.mem Tag.pcdata (Ptset.Int.union c2 l2) then
720                   (`ANY,Ptset.Int.empty,Ptset.Int.empty)
721                   else
722                   (`ANYNOTEXT,Ptset.Int.empty,Ptset.Int.empty)
723               | _,`ANYNOTEXT -> 
724                   if Ptset.Int.mem Tag.pcdata (Ptset.Int.union c1 l1) then
725                   (`ANY,Ptset.Int.empty,Ptset.Int.empty)
726                   else
727                   (`ANYNOTEXT,Ptset.Int.empty,Ptset.Int.empty)
728               | `JUMP,`JUMP -> (`JUMP, Ptset.Int.union c1 c2,Ptset.Int.union l1 l2)
729
730           let merge_jump_list = function 
731             | [] -> `NIL,Ptset.Int.empty,Ptset.Int.empty
732             | p::r -> 
733                 List.fold_left (merge_jump) p r
734               
735           let labels a s = 
736             Hashtbl.fold 
737             (
738               fun q l acc -> 
739                 if (q == s)
740                 then 
741
742                   (List.fold_left 
743                       (fun acc (ts,f) ->
744                         let _,_,_,_,bur = Transition.node f in
745                         if bur then acc else TagSet.cup acc ts) 
746                     acc l)
747                 else acc ) a.trans TagSet.empty
748           exception Found
749             
750           let is_rec a s access = 
751             List.exists
752               (fun (_,t) -> let _,_,_,f,_ = Transition.node t in
753               StateSet.mem s ((fun (_,_,x) -> x) (access (Formula.st f)))) (Hashtbl.find a.trans s) 
754                      
755           let is_final_marking a s =
756             List.exists (fun (_,t) -> let _,_,m,f,_ = Transition.node t in m&& (Formula.is_true f))
757               (Hashtbl.find a.trans s)
758               
759               
760           let decide a c_label l_label dir_states dir =
761                         
762             let l = StateSet.fold 
763               (fun s l -> 
764                  let s_rec = is_rec a s (if dir then fst else snd) in
765                  let s_rec = if dir then s_rec else
766                  (* right move *)
767                  is_rec a s fst
768                  in
769                  let s_lab = labels a s in
770                  let jmp,cc,ll = 
771                    if (not (TagSet.is_finite s_lab)) then
772                    if TagSet.mem Tag.pcdata s_lab then  (`ANY,Ptset.Int.empty,Ptset.Int.empty)
773                    else (`ANYNOTEXT,Ptset.Int.empty,Ptset.Int.empty)
774                    else 
775                    if s_rec 
776                    then (`JUMP,Ptset.Int.empty, TagSet.positive 
777                            (TagSet.cap (TagSet.inj_positive l_label) s_lab))
778                    else (`JUMP,TagSet.positive 
779                            (TagSet.cap (TagSet.inj_positive c_label) s_lab),
780                          Ptset.Int.empty )
781                  in
782                    (if jmp != `ANY 
783                     && jmp != `ANYNOTEXT 
784                     && Ptset.Int.is_empty cc 
785                     && Ptset.Int.is_empty ll
786                     then (`NIL,Ptset.Int.empty,Ptset.Int.empty)
787                     else  (jmp,cc,ll))::l) dir_states []
788             in merge_jump_list l                            
789             
790               
791         end 
792
793
794
795       let choose_jump (d,cl,ll) f_nil f_t1 f_s1 f_tn f_sn f_s1n f_notext f_maytext =
796         match d with
797           | `NIL -> (`NIL,f_nil)
798           | `ANYNOTEXT -> `ANY,f_notext
799           | `ANY -> `ANY,f_maytext
800           | `JUMP -> 
801               if Ptset.Int.is_empty cl then
802               if Ptset.Int.is_singleton ll then
803               let tag = Ptset.Int.choose ll in 
804               (`TAG(tag),mk_app_fun f_tn tag (Tag.to_string tag))
805               else
806               (`MANY(ll),mk_app_fun f_sn ll (string_of_ts ll))
807               else if Ptset.Int.is_empty ll then
808               if Ptset.Int.is_singleton cl then
809               let tag = Ptset.Int.choose cl in 
810               (`TAG(tag),mk_app_fun f_t1 tag (Tag.to_string tag))
811               else
812               (`MANY(cl),mk_app_fun f_s1 cl (string_of_ts cl))
813               else
814               (`ANY,mk_app_fun2 f_s1n cl ll ((string_of_ts cl) ^ " " ^ (string_of_ts ll)))
815
816           | _ -> assert false
817           
818       let choose_jump_down tree d =
819         choose_jump d
820           (mk_fun (fun _ -> Tree.nil) "Tree.mk_nil")
821           (mk_fun (Tree.tagged_child tree) "Tree.tagged_child") 
822           (mk_fun (Tree.select_child tree) "Tree.select_child")
823           (mk_fun (Tree.tagged_descendant tree) "Tree.tagged_desc")
824           (mk_fun (Tree.select_descendant tree) "Tree.select_desc") 
825           (mk_fun (fun _ _ -> Tree.first_child tree) "[FIRSTCHILD]Tree.select_child_desc")
826           (mk_fun (Tree.first_element tree) "Tree.first_element")
827           (mk_fun (Tree.first_child tree) "Tree.first_child") 
828
829       let choose_jump_next tree d = 
830         choose_jump d
831           (mk_fun (fun _ _ -> Tree.nil) "Tree.mk_nil2")
832           (mk_fun (Tree.tagged_following_sibling_below tree) "Tree.tagged_sibling_ctx")
833           (mk_fun (Tree.select_following_sibling_below tree) "Tree.select_sibling_ctx")
834           (mk_fun (Tree.tagged_following_below tree) "Tree.tagged_foll_ctx")
835           (mk_fun (Tree.select_following_below tree) "Tree.select_foll_ctx")
836           (mk_fun (fun _ _ -> Tree.next_sibling_below tree) "[NEXTSIBLING]Tree.select_sibling_foll_ctx")
837           (mk_fun (Tree.next_element_below tree) "Tree.next_element_ctx")         
838           (mk_fun (Tree.next_sibling_below tree) "Tree.node_sibling_ctx")         
839                           
840           
841     
842       module TransCache = 
843       struct 
844         external get : 'a array -> int ->'a = "%array_unsafe_get"
845         external set : 'a array -> int -> 'a -> unit = "%array_unsafe_set"
846         type fun_tree = [`Tree] Tree.node -> [`Tree] Tree.node -> Tag.t -> SList.t -> bool -> SList.t*RS.t array
847         type t = fun_tree array array
848         let dummy_cell = [||] 
849         let create n = Array.create n dummy_cell
850         let dummy = fun _ _ _ _ _ -> assert false
851         let default = ref dummy
852         let find h tag slist =
853           let tab = get h (Uid.to_int slist.SList.Node.id) in
854           if tab == dummy_cell then !default 
855           else
856           get tab tag 
857
858         let add (h : t) tag slist (data : fun_tree) =
859           let tab = get h (Uid.to_int slist.SList.Node.id) in
860           let tab = if tab == dummy_cell then
861             let x = Array.create 10000 !default in
862             (set h (Uid.to_int slist.SList.Node.id) x;x)
863           else tab
864           in
865           set tab tag data        
866         let dump t = Array.iteri (fun id t' -> 
867                                    if t' != dummy_cell then
868                                    begin
869                                      let sl = SList.with_id (Uid.of_int id) in
870                                      SList.print Format.err_formatter sl;
871                                      Format.fprintf Format.err_formatter " -> [ ";
872                                      Array.iteri 
873                                        (fun i x -> if x != !default then 
874                                         Format.fprintf Format.err_formatter "(%s,0x%x) "
875                                           (Tag.to_string i) (Obj.magic x)) t';
876                                      Format.fprintf Format.err_formatter " ]\n%!"
877
878                                    end) t
879       end
880         
881         
882       let td_trans = TransCache.create 10000 (* should be number of tags *number of states^2
883                                                 in the document *)
884
885       let empty_size n =
886         let rec loop acc = function 0 -> acc
887           | n -> loop (SList.cons StateSet.empty acc) (n-1)
888         in loop SList.nil n
889              
890      
891       module Fold2Res = struct
892         external get : 'a array -> int ->'a = "%array_unsafe_get"
893         external set : 'a array -> int -> 'a -> unit = "%array_unsafe_set"
894         external field1 : 'a -> 'b = "%field1"
895         type 'a t = 'a array array array array
896         let dummy = [||]
897         let dummy_val : 'a =
898           let v = Obj.repr ((),2,()) in
899           Obj.magic v
900
901
902         let create n = Array.create n dummy
903         let find h tag fl s1 s2 = 
904           let af = get h tag in
905           if af == dummy then raise Not_found
906           else 
907           let as1 = get af (Uid.to_int fl.Formlistlist.Node.id) in
908           if as1 == dummy then raise Not_found
909           else 
910           let as2 = get as1 (Uid.to_int s1.SList.Node.id) in
911           if as2 == dummy then raise Not_found
912           else 
913           let v = get as2 (Uid.to_int s2.SList.Node.id) in
914           if field1 v == 2 then raise Not_found
915           else 
916           v
917
918         
919         let add h tag fl s1 s2 data = 
920           let af =
921             let x = get h tag in
922             if x == dummy then 
923             begin
924               let y = Array.make 10000 dummy in
925               set h tag y;y
926             end
927             else x
928           in
929           let as1 = 
930             let x = get af (Uid.to_int fl.Formlistlist.Node.id) in 
931             if x == dummy then
932             begin
933               let y = Array.make 10000 dummy in
934               set af (Uid.to_int fl.Formlistlist.Node.id) y;y
935             end
936             else x
937           in
938           let as2 = 
939             let x = get as1 (Uid.to_int s1.SList.Node.id) in 
940             if x == dummy then 
941             begin
942               let y = Array.make 10000 dummy_val in
943               set as1 (Uid.to_int s1.SList.Node.id) y;y
944             end
945             else x
946           in
947           set as2 (Uid.to_int s2.SList.Node.id) data    
948       end
949
950         
951      
952       let h_fold2 = Fold2Res.create 10000
953       
954       let top_down ?(noright=false) a tree t slist ctx slot_size =      
955         let pempty = empty_size slot_size in    
956         let rempty = Array.make slot_size RS.empty in
957         (* evaluation starts from the right so we put sl1,res1 at the end *)
958         let eval_fold2_slist fll t tag (sl2,res2) (sl1,res1) =
959           let res = Array.copy rempty in
960            try
961              let r,b,btab = Fold2Res.find h_fold2 tag fll sl1 sl2  in
962              if b then for i=0 to slot_size - 1 do 
963              res.(0) <- RS.merge btab.(0) t res1.(0) res2.(0);
964              done;
965              r,res
966              with
967              Not_found -> 
968                begin 
969                  let btab = Array.make slot_size NO in      
970                  let rec fold l1 l2 fll i aq ab = 
971                    match fll.Formlistlist.Node.node,
972                      l1.SList.Node.node,
973                      l2.SList.Node.node
974                    with      
975                      | Formlistlist.Cons(fl,fll),
976                       SList.Cons(s1,ll1),
977                       SList.Cons(s2,ll2) ->
978                          let r',conf = eval_formlist tag s1 s2 fl in
979                          let _ = btab.(i) <- conf
980                        in
981                          fold ll1 ll2 fll (i+1) (SList.cons r' aq) ((conf!=NO)||ab)
982                      | _ -> aq,ab
983                  in
984                  let r,b = fold sl1 sl2 fll 0 SList.nil false in
985                   Fold2Res.add h_fold2 tag fll sl1 sl2 (r,b,btab); 
986                  if b then for i=0 to slot_size - 1 do
987                    res.(i) <- RS.merge btab.(i) t res1.(i) res2.(i);
988                  done;
989                  r,res;
990                end
991         in
992
993         let null_result = (pempty,Array.copy rempty) in
994         let rec loop t ctx _ slist =
995           if t == Tree.nil then null_result else 
996           let tag = Tree.tag tree t in (TransCache.find td_trans tag slist) t ctx tag slist false
997
998         and loop_tag t ctx tag slist =
999           if t == Tree.nil then null_result else (TransCache.find td_trans tag slist) t ctx tag slist false
1000
1001         and loop_no_right t ctx _ slist = 
1002           if t == Tree.nil then null_result else 
1003           let tag = Tree.tag tree t in (TransCache.find td_trans tag slist) t ctx tag slist true
1004
1005         and mk_trans t ctx tag slist noright = 
1006           let fl_list,llist,rlist,ca,da,sa,fa = 
1007             SList.fold 
1008               (fun set (fll_acc,lllacc,rllacc,ca,da,sa,fa) -> (* For each set *)
1009                  let fl,ll,rr,ca,da,sa,fa = 
1010                    StateSet.fold
1011                      (fun q acc ->                          
1012                         List.fold_left 
1013                           (fun ((fl_acc,ll_acc,rl_acc,c_acc,d_acc,s_acc,f_acc) as acc) 
1014                            (ts,t)  ->
1015                              if (TagSet.mem tag ts)
1016                              then 
1017                              let _,_,_,f,_ = t.Transition.node in
1018                              let (child,desc,below),(sibl,foll,after) = Formula.st f in
1019                              (Formlist.cons t fl_acc,
1020                               StateSet.union ll_acc below,
1021                               StateSet.union rl_acc after,
1022                               StateSet.union child c_acc,
1023                               StateSet.union desc d_acc,
1024                               StateSet.union sibl s_acc,
1025                               StateSet.union foll f_acc)                 
1026                              else acc ) acc (
1027                             try Hashtbl.find a.trans q 
1028                             with
1029                                Not_found -> Printf.eprintf "Looking for state %i, doesn't exist!!!\n%!"
1030                                  q;[]
1031                           )
1032                           
1033                      ) set (Formlist.nil,StateSet.empty,StateSet.empty,ca,da,sa,fa)
1034                  in (Formlistlist.cons fl fll_acc), (SList.cons ll lllacc), (SList.cons rr rllacc),ca,da,sa,fa)
1035               slist (Formlistlist.nil,SList.nil,SList.nil,StateSet.empty,StateSet.empty,StateSet.empty,StateSet.empty)
1036           in                    
1037           (* Logic to chose the first and next function *)
1038           let tags_child,tags_below,tags_siblings,tags_after = Tree.tags tree tag in
1039           let d_f = Algebra.decide a tags_child tags_below (StateSet.union ca da) true in
1040           let d_n = Algebra.decide a tags_siblings tags_after (StateSet.union sa fa) false in
1041           let f_kind,first = choose_jump_down tree d_f
1042           and n_kind,next = if noright then (`NIL, fun _ _ -> Tree.nil )
1043           else choose_jump_next tree d_n in 
1044           let empty_res = null_result in
1045           let cont =
1046             match f_kind,n_kind with
1047               | `NIL,`NIL ->
1048                   (fun t _ tag _ _ -> eval_fold2_slist fl_list t tag  empty_res empty_res)
1049               |  _,`NIL -> (
1050                    match f_kind with
1051                      |`TAG(tag') ->                             
1052                         fun t _ tag _ _ -> eval_fold2_slist fl_list t tag empty_res
1053                           (loop_tag  (first t) t tag' llist )                           
1054                        | _ ->
1055                            (fun t _ tag _ _ -> eval_fold2_slist fl_list t tag empty_res
1056                               (loop (first t) t Tag.dummy llist ))
1057                  )
1058               | `NIL,_ -> (
1059                   match n_kind with
1060                     |`TAG(tag') -> 
1061                        if SList.equal rlist slist && tag == tag' then
1062                        let rec loop t ctx _ _ _ = 
1063                          if t == Tree.nil then empty_res else 
1064                          let res2 = loop (next t ctx) ctx Tag.dummy slist false in                                 
1065                          eval_fold2_slist fl_list t tag res2 empty_res            
1066                        in loop
1067                        else 
1068                        (fun t ctx tag _ _ -> eval_fold2_slist fl_list t tag
1069                                  (loop_tag (next t ctx) ctx tag' rlist) empty_res) 
1070                          
1071                     | _ ->
1072                         (fun t ctx tag _ _ -> eval_fold2_slist fl_list t tag
1073                            (loop (next t ctx) ctx Tag.dummy rlist  ) empty_res)
1074                 )
1075                   
1076               | `TAG(tag1),`TAG(tag2) ->
1077                   (fun t ctx tag _ _ ->
1078                      eval_fold2_slist fl_list t tag
1079                                (loop_tag (next t ctx) ctx tag2 rlist)
1080                        (loop_tag (first t) t tag1 llist))
1081  
1082               | `TAG(tag'),`ANY ->
1083                           (fun t ctx tag _ _ ->
1084                             eval_fold2_slist fl_list t tag
1085                               (loop (next t ctx) ctx Tag.dummy rlist)
1086                               (loop_tag (first t) t tag' llist))
1087                                                                            
1088                       | `ANY,`TAG(tag')  ->
1089                           (fun t ctx tag _ _ ->
1090                             eval_fold2_slist fl_list t tag
1091                               (loop_tag (next t ctx) ctx tag' rlist )
1092                               (loop (first t) t Tag.dummy llist))
1093                                                                    
1094                       | `ANY,`ANY ->
1095                           (*if SList.equal slist rlist && SList.equal slist llist
1096                           then
1097                           let rec loop t ctx = 
1098                             if t == Tree.nil then empty_res else
1099                             let r1 = loop (first t) t
1100                             and r2 = loop (next t ctx) ctx
1101                             in
1102                             eval_fold2_slist fl_list t (Tree.tag tree t) r2 r1
1103                           in loop
1104                           else *)
1105                           (fun t ctx tag _ _ ->
1106                              eval_fold2_slist fl_list t tag
1107                                (loop (next t ctx) ctx Tag.dummy rlist )
1108                                (loop (first t) t Tag.dummy llist))
1109                       | _,_ -> 
1110                           (fun t ctx tag _ _ ->
1111                              eval_fold2_slist fl_list t tag
1112                                (loop (next t ctx) ctx Tag.dummy rlist)
1113                                (loop (first t) t Tag.dummy llist ))
1114  
1115                   in
1116           (*              let cont = D_IF_( (fun t ctx tag ->
1117                                        let a,b = cont t ctx tag in
1118                                        register_trace tree t (slist,a,fl_list,first,next,ctx);
1119                                        (a,b)
1120                                     ) ,cont)
1121                   in *)
1122           (TransCache.add td_trans tag slist cont;   cont t ctx tag slist noright)             
1123         in 
1124         let _ = TransCache.default := mk_trans in
1125         (if noright then loop_no_right else loop) t ctx Tag.document_node slist
1126
1127         let run_top_down a tree =
1128           let init = SList.cons a.init SList.nil in
1129           let _,res = top_down a tree Tree.root init Tree.root 1 
1130           in 
1131             D_IGNORE_(
1132               output_trace a tree "trace.html"
1133                 (RS.fold (fun t a -> IntSet.add (Tree.id tree t) a) res.(0) IntSet.empty),
1134               res.(0))
1135         ;;
1136
1137         module Configuration =
1138         struct
1139           module Ptss = Set.Make(StateSet)
1140           module IMap = Map.Make(StateSet)
1141           type t = { hash : int;
1142                         sets : Ptss.t;
1143                         results : RS.t IMap.t }
1144           let empty = { hash = 0;
1145                         sets = Ptss.empty;
1146                         results = IMap.empty;
1147                       }
1148           let is_empty c = Ptss.is_empty c.sets
1149           let add c s r =
1150             if Ptss.mem s c.sets then
1151               { c with results = IMap.add s (RS.concat r (IMap.find s c.results)) c.results}
1152             else
1153               { hash = HASHINT2(c.hash,Uid.to_int (Ptset.Int.uid s));
1154                 sets = Ptss.add s c.sets;
1155                 results = IMap.add s r c.results
1156               }
1157
1158           let pr fmt c = Format.fprintf fmt "{";
1159             Ptss.iter (fun s -> StateSet.print fmt s;
1160                         Format.fprintf fmt "  ") c.sets;
1161             Format.fprintf fmt "}\n%!";
1162             IMap.iter (fun k d -> 
1163                          StateSet.print fmt k;
1164                          Format.fprintf fmt "-> %i\n" (RS.length d)) c.results;                  
1165             Format.fprintf fmt "\n%!"
1166               
1167           let merge c1 c2  =
1168             let acc1 =
1169               IMap.fold 
1170                 ( fun s r acc ->
1171                     IMap.add s
1172                       (try 
1173                          RS.concat r (IMap.find s acc)
1174                        with
1175                          | Not_found -> r) acc) c1.results IMap.empty 
1176             in
1177             let imap =
1178                 IMap.fold (fun s r acc -> 
1179                              IMap.add s
1180                                (try 
1181                                   RS.concat r (IMap.find s acc)
1182                                 with
1183                                   | Not_found -> r) acc)  c2.results acc1
1184             in
1185             let h,s =
1186               Ptss.fold 
1187                 (fun s (ah,ass) -> (HASHINT2(ah, Uid.to_int (Ptset.Int.uid s)),
1188                                     Ptss.add s ass))
1189                 (Ptss.union c1.sets c2.sets) (0,Ptss.empty)
1190             in
1191               { hash = h;
1192                 sets =s;
1193                 results = imap }
1194
1195         end
1196
1197         let h_fold = Hashtbl.create 511 
1198
1199         let fold_f_conf  tree t slist fl_list conf dir= 
1200           let tag = Tree.tag tree t in
1201           let rec loop sl fl acc =
1202             match SList.node sl,fl with
1203               |SList.Nil,[] -> acc
1204               |SList.Cons(s,sll), formlist::fll ->
1205                  let r',mcnf = 
1206                    let key = SList.hash sl,Formlist.hash formlist,dir in
1207                    try 
1208                      Hashtbl.find h_fold key
1209                    with
1210                       Not_found -> let res = 
1211                         if dir then eval_formlist tag s Ptset.Int.empty formlist
1212                         else eval_formlist tag Ptset.Int.empty s formlist 
1213                       in (Hashtbl.add h_fold key res;res)
1214                  in
1215                  let (rb,rb1,rb2,mark) = bool_of_merge mcnf in
1216                  if rb && ((dir&&rb1)|| ((not dir) && rb2))
1217                  then 
1218                  let acc = 
1219                    let old_r = 
1220                      try Configuration.IMap.find s conf.Configuration.results
1221                      with Not_found -> RS.empty
1222                    in
1223                    Configuration.add acc r' (if mark then RS.cons t old_r else old_r)                   
1224                  in
1225                  loop sll fll acc
1226                  else loop sll fll acc
1227               | _ -> assert false
1228           in
1229             loop slist fl_list Configuration.empty
1230
1231         let h_trans = Hashtbl.create 4096
1232
1233         let get_up_trans slist ptag a tree =      
1234           let key = (HASHINT2(Uid.to_int slist.SList.Node.id ,ptag)) in
1235             try
1236           Hashtbl.find h_trans key              
1237           with
1238           | Not_found ->  
1239               let f_list =
1240                 Hashtbl.fold (fun q l acc ->
1241                                 List.fold_left (fun fl_acc (ts,t)  ->
1242                                                   if TagSet.mem ptag ts then Formlist.cons t fl_acc
1243                                                   else fl_acc)
1244                                   
1245                                   acc l)
1246                   a.trans Formlist.nil
1247               in
1248               let res = SList.fold (fun _ acc -> f_list::acc) slist [] 
1249               in
1250                 (Hashtbl.add h_trans key res;res) 
1251                   
1252
1253               
1254         let h_tdconf = Hashtbl.create 511 
1255         let rec bottom_up a tree t conf next jump_fun root dotd init accu = 
1256           if (not dotd) && (Configuration.is_empty conf ) then
1257           accu,conf,next 
1258           else
1259
1260           let below_right = Tree.is_below_right tree t next in 
1261           
1262           let accu,rightconf,next_of_next =         
1263             if below_right then (* jump to the next *)
1264             bottom_up a tree next conf (jump_fun next) jump_fun (Tree.next_sibling tree t) true init accu
1265             else accu,Configuration.empty,next
1266           in 
1267           let sub =
1268             if dotd then
1269             if below_right then prepare_topdown a tree t true
1270             else prepare_topdown a tree t false
1271             else conf
1272           in
1273           let conf,next =
1274             (Configuration.merge rightconf sub, next_of_next)
1275           in
1276           if t == root then  accu,conf,next else
1277           let parent = Tree.binary_parent tree t in
1278           let ptag = Tree.tag tree parent in
1279           let dir = Tree.is_left tree t in
1280           let slist = Configuration.Ptss.fold (fun e a -> SList.cons e a) conf.Configuration.sets SList.nil in
1281           let fl_list = get_up_trans slist ptag a parent in
1282           let slist = SList.rev (slist) in 
1283           let newconf = fold_f_conf tree parent slist fl_list conf dir in
1284           let accu,newconf = Configuration.IMap.fold (fun s res (ar,nc) ->
1285                                                         if Ptset.Int.intersect s init then
1286                                                           ( RS.concat res ar ,nc)
1287                                                         else (ar,Configuration.add nc s res))
1288             (newconf.Configuration.results) (accu,Configuration.empty) 
1289           in
1290
1291             bottom_up a tree parent newconf next jump_fun root false init accu
1292               
1293         and prepare_topdown a tree t noright =
1294           let tag = Tree.tag tree t in
1295           let r = 
1296             try
1297               Hashtbl.find h_tdconf tag
1298             with
1299               | Not_found -> 
1300                   let res = Hashtbl.fold (fun q l acc -> 
1301                                             if List.exists (fun (ts,_) -> TagSet.mem tag ts) l
1302                                             then Ptset.Int.add q acc
1303                                             else acc) a.trans Ptset.Int.empty
1304                   in Hashtbl.add h_tdconf tag res;res
1305           in 
1306 (*        let _ = pr ", among ";
1307             StateSet.print fmt (Ptset.Int.elements r);
1308             pr "\n%!";
1309           in *)
1310           let r = SList.cons r SList.nil in
1311           let set,res = top_down (~noright:noright) a tree t r t 1 in
1312           let set = match SList.node set with
1313             | SList.Cons(x,_) ->x
1314             | _ -> assert false 
1315           in
1316           Configuration.add Configuration.empty set res.(0) 
1317
1318
1319
1320         let run_bottom_up a tree k =
1321           let t = Tree.root in
1322           let trlist = Hashtbl.find a.trans (StateSet.choose a.init)
1323           in
1324           let init = List.fold_left 
1325             (fun acc (_,t) ->
1326                let _,_,_,f,_ = Transition.node t in 
1327                let _,_,l = fst ( Formula.st f ) in
1328                  StateSet.union acc l)
1329             StateSet.empty trlist
1330           in
1331           let tree1,jump_fun =
1332             match k with
1333               | `TAG (tag) -> 
1334                   (*Tree.tagged_lowest t tag, fun tree -> Tree.tagged_next tree tag*)
1335                   (Tree.tagged_descendant tree tag t, let jump = Tree.tagged_following_below tree tag
1336                   in fun n -> jump n t )
1337               | `CONTAINS(_) -> (Tree.text_below tree t,let jump = Tree.text_next tree 
1338                                  in fun n -> jump n t)
1339               | _ -> assert false
1340           in
1341           let tree2 = jump_fun tree1 in
1342           let rec loop t next acc = 
1343             let acc,conf,next_of_next = bottom_up a tree t
1344               Configuration.empty next jump_fun (Tree.root) true init acc
1345             in 
1346             let acc = Configuration.IMap.fold 
1347               ( fun s res acc -> if StateSet.intersect init s
1348                 then RS.concat res acc else acc) conf.Configuration.results acc
1349             in
1350               if Tree.is_nil next_of_next  (*|| Tree.equal next next_of_next *)then
1351                 acc
1352               else loop next_of_next (jump_fun next_of_next) acc
1353           in
1354           loop tree1 tree2 RS.empty
1355
1356
1357     end
1358           
1359     let top_down_count a t = let module RI = Run(Integer) in let r = Integer.length (RI.run_top_down a t)
1360     in (*RI.TransCache.dump RI.td_trans; *)r
1361      let top_down a t = let module RI = Run(IdSet) in (RI.run_top_down a t)
1362     let bottom_up_count a t k = let module RI = Run(Integer) in Integer.length (RI.run_bottom_up a t k)
1363     let bottom_up a t k = let module RI = Run(IdSet) in (RI.run_bottom_up a t k)
1364
1365     module Test (Doc : sig val doc : Tree.t end) =
1366       struct
1367         module Results = GResult(Doc)
1368         let top_down a t = let module R = Run(Results) in (R.run_top_down a t)
1369       end
1370