Full implem of BU_over_Max and TP_max (to be tested) + my.xml from thesis + stuffs...
[tatoo.git] / src / asta.mli
index 14c2562..e3d3c0d 100644 (file)
@@ -34,10 +34,14 @@ type t
 val transition : t -> state -> label -> formula
 (** Give the formula which must hold for a current state and label *)
 
-val transitions : t -> state -> ((label*formula) list)*((label*formula) list)
+val transitions : t -> state -> (label*formula) list * (label*formula) list
 (** Give the list of labels and formulae from queries and recognizing
     transitions for a given state *)
 
+val transitions_lab : t -> QName.t -> (state*formula) list *(state*formula) list
+(** Give the list of states and formulae from queries and recognizing
+    transitions for a given tag *)
+
 val empty : t
 (** The empty automaton *)
 
@@ -71,6 +75,12 @@ val init_top : t -> unit
 val top_states : t -> state list
 (** Give the list of top states of an ASTA *)
 
+val bot_states : t -> StateSet.t
+(** Give the list of bottom states of an ASTA *)
+
+val selec_states : t -> StateSet.t
+(** Give the list of selecting states of an ASTA *)
+
 val print : Format.formatter -> t -> unit
 (** Pretty printer *)