Actually fix the problems with negation.
authorKim Nguyễn <kn@lri.fr>
Fri, 8 Mar 2013 17:45:21 +0000 (18:45 +0100)
committerKim Nguyễn <kn@lri.fr>
Fri, 8 Mar 2013 17:45:21 +0000 (18:45 +0100)
src/auto/ata.ml
src/auto/eval.ml
tests/docs/tiny.xml

index 275d657..13c4854 100644 (file)
@@ -14,7 +14,7 @@
 (***********************************************************************)
 
 (*
-  Time-stamp: <Last modified on 2013-03-05 18:25:03 CET by Kim Nguyen>
+  Time-stamp: <Last modified on 2013-03-08 16:24:41 CET by Kim Nguyen>
 *)
 
 INCLUDE "utils.ml"
@@ -272,10 +272,10 @@ let normalize_negations auto =
               (* create a new state and add it to the todo queue *)
               let nq = State.make () in
               auto.states <- StateSet.add nq auto.states;
-(*              if not (StateSet.mem q auto.bottom_states) then
+              if not (StateSet.mem q auto.bottom_states) then
                 auto.bottom_states <- StateSet.add nq auto.bottom_states;
               if not (StateSet.mem q auto.top_states) then
-                auto.top_states <- StateSet.add nq auto.top_states; *)
+                auto.top_states <- StateSet.add nq auto.top_states;
               Hashtbl.add memo_state (q, false) nq;
               Queue.add (q, false) todo; nq
         in
@@ -296,10 +296,10 @@ let normalize_negations auto =
           let nq = if b then q else
               let nq = State.make () in
               auto.states <- StateSet.add nq auto.states;
-(*              if not (StateSet.mem q auto.bottom_states) then
+              if not (StateSet.mem q auto.bottom_states) then
                 auto.bottom_states <- StateSet.add nq auto.bottom_states;
               if not (StateSet.mem q auto.top_states) then
-                auto.top_states <- StateSet.add nq auto.top_states; *)
+                auto.top_states <- StateSet.add nq auto.top_states;
               nq
           in
           Hashtbl.add memo_state key nq; nq
index f3b81cb..80df253 100644 (file)
@@ -14,7 +14,7 @@
 (***********************************************************************)
 
 (*
-  Time-stamp: <Last modified on 2013-03-05 18:35:19 CET by Kim Nguyen>
+  Time-stamp: <Last modified on 2013-03-08 16:25:12 CET by Kim Nguyen>
 *)
 
 INCLUDE "utils.ml"
@@ -50,9 +50,9 @@ module Make (T : Tree.Sig.S) = struct
         let states0 = get cache tree node in
         let tag = T.tag tree node in
         let trans0 = Ata.get_trans auto auto.Ata.states tag in
-        let parent_states = (*if parent == T.nil then auto.Ata.top_states else*) get cache tree parent in
-        let fc_states = (*if fc == T.nil then auto.Ata.bottom_states else*) get cache tree fc in
-        let ns_states = (*if ns == T.nil then auto.Ata.bottom_states else*) get cache tree ns in
+        let parent_states = if parent == T.nil then auto.Ata.top_states else get cache tree parent in
+        let fc_states = if fc == T.nil then auto.Ata.bottom_states else get cache tree fc in
+        let ns_states = if ns == T.nil then auto.Ata.bottom_states else get cache tree ns in
         let is_root = parent == T.nil in
         let ctx0 =
           if is_left then
index 3d99bb9..647d3fc 100644 (file)
@@ -3,7 +3,7 @@
   <c/>
   <d/>
   <e>
-    <f id="1" value="2" > <g/> <h/> </f>
+    <f> <g/> <h/> </f>
     <i> </i>
   </e>
   <j> <k/> <l/> <m/> </j>