X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fasta.mli;h=3fd98866fda59723cae6cda15afa203933eded4e;hb=5e7268fb95cdc7e56fe24f324a710550ade3d851;hp=e3d3c0de58e70ef30afa79766296d9ca9e79a52c;hpb=83c90cb5eeebfffa05d0383430eb80e7905b46a0;p=tatoo.git diff --git a/src/asta.mli b/src/asta.mli index e3d3c0d..3fd9886 100644 --- a/src/asta.mli +++ b/src/asta.mli @@ -42,6 +42,10 @@ 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 transitions_st_lab : t -> state -> QName.t -> formula list * formula list +(** Give the list of formulae from queries and recognizing transitions for a + given state and tag *) + val empty : t (** The empty automaton *) @@ -75,8 +79,11 @@ 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 top_states_s : t -> StateSet.t +(** Give the set of top states of an ASTA *) + +val bot_states_s : t -> StateSet.t +(** Give the set of bottom states of an ASTA *) val selec_states : t -> StateSet.t (** Give the list of selecting states of an ASTA *)