Compounds | |
struct | vcsn::linearize_element |
The types of a linearized expression. More... | |
Enumerations | |
enum | realtime_type |
Enum to indicate which kind of realtime algorithms must be used. | |
Functions | |
template<typename A, typename T> std::set< hstate_t > | accessible_states (const Element< A, T > &a) |
Return accessible states. More... | |
template<typename A, typename T> Element< A, T > | accessible (const Element< A, T > &a) |
Extract the sub-automaton composed of accessible states. More... | |
template<typename A, typename T> void | accessible_here (Element< A, T > &a) |
In-place extract the sub-automaton of accessible states. More... | |
template<typename A, typename T> std::set< hstate_t > | coaccessible_states (const Element< A, T > &a) |
Return co-accessible states. More... | |
template<typename A, typename T> Element< A, T > | coaccessible (const Element< A, T > &a) |
Extract the sub-automaton composed of co-accessible states. More... | |
template<typename A, typename T> void | coaccessible_here (Element< A, T > &a) |
In-place extract the sub-automaton of co-accessible states. More... | |
template<class Series, class T> Element< Series, T > | canonical (const Element< Series, T > &exp) |
Transform a krat expression into its canonical form, following aci-rules. | |
template<typename A, typename T> Element< A, T >::series_elt_t | aut_to_exp (const Element< A, T > &a) |
Returns a serie which describes the language of the automaton. More... | |
template<typename A, typename T, typename Chooser_> Element< A, T >::series_elt_t | aut_to_exp (const Element< A, T > &a, const Chooser_ &c) |
Returns a serie which describes the language of the automaton. More... | |
template<typename A, typename T> void | backward_closure_here (Element< A, T > &a) |
Complete in place the given automaton to make it close over epsilon transition. More... | |
template<typename A, typename T> Element< A, T > | backward_closure (const Element< A, T > &a) |
Complete the given automaton into a copy to make it close over epsilon transition. More... | |
template<typename A, typename T> void | backward_realtime_here (Element< A, T > &a) |
In place modification of the automaton to make it realtime. More... | |
template<typename A, typename T> Element< A, T > | backward_realtime (const Element< A, T > &a) |
Returns a fresh realtime automaton. More... | |
template<typename A, typename T, typename Exp> void | berry_sethi (Element< A, T > &, const Exp &) |
Convert a krat expression into an automaton using. | |
template<typename A, typename T, typename Exp> void | brzozowski (Element< A, T > &, const Exp &) |
Convert a krat expression into an automaton using Brzozowski construction. | |
template<typename A, typename T> void | complement_here (Element< A, T > &a) |
Complement in place the set of final states. More... | |
template<typename A, typename T> Element< A, T > | complement (const Element< A, T > &a) |
Complement in place the set of final states. More... | |
template<typename A, typename T> void | complete_here (Element< A, T > &a) |
Make the transition function of an automaton total w.r.t alphabet. More... | |
template<typename A, typename T> Element< A, T > | complete (const Element< A, T > &) |
Make the transition function of an automaton total w.r.t alphabet. More... | |
template<class A, class T> bool | is_complete (const Element< A, T > &e) |
Test if the transition function is complete for each state. More... | |
template<class A, class T> Element< A, T > | concatenate (const Element< A, T > &lhs, const Element< A, T > &rhs) |
Return the concatenation of two automata. More... | |
template<class A, class T> void | concatenate_here (Element< A, T > &lhs, const Element< A, T > &rhs) |
In place concatenation of two automata. More... | |
template<typename A, typename T, typename Exp> void | derivatives_automaton (Element< A, T > &a, const Exp &e) |
Convert a krat expression into an automaton using derivatives. More... | |
template<typename A, typename T, typename Exp> Element< A, T > | derivatives_automaton (const Exp &e) |
Convert a krat expression into an automaton using derivatives. More... | |
template<typename A, typename T> Element< A, T > | determinize (const Element< A, T > &a) |
Returns the determinized of a boolean automaton. More... | |
template<typename A, typename T> bool | is_deterministic (const Element< A, T > &a) |
Test if an automaton is deterministic. More... | |
template<typename A, typename T, typename W> Element< A, T >::weight_t | eval (const Element< A, T > &a, const W &word) |
Compute the image of a word into an automaton. More... | |
template<typename A, typename T> void | forward_closure_here (Element< A, T > &a) |
Complete the given automaton into a copy to make it close over epsilon transition. More... | |
template<typename A, typename T> Element< A, T > | forward_closure (const Element< A, T > &a) |
Complete the given automaton into a copy to make it close over epsilon transition. More... | |
template<typename A, typename T> void | forward_realtime_here (Element< A, T > &a) |
In place modification of the automaton to make it realtime. More... | |
template<typename A, typename T> Element< A, T > | forward_realtime (const Element< A, T > &a) |
Returns a fresh realtime automaton. More... | |
template<typename A, typename T> Element< A, T > | minimization_hopcroft (const Element< A, T > &a) |
Return the minimal automaton using the hopcroft algorithm. More... | |
template<typename A, typename T> Element< A, T > | quotient (const Element< A, T > &a) |
Return the quotient of a non deterministic acceptor. More... | |
template<typename A, typename T> bool | is_isomorph (const Element< A, T > &a, const Element< A, T > &b) |
Returns true if the two automata are isomorph. | |
template<class Series, class T, class Letter> Element< Series, T > | cderivate (const Element< Series, T > &exp, Letter a) |
The c-derivative of the krat expression w.r.t to a letter. | |
template<class Series, class T, class Word> Element< Series, T > | word_cderivate (const Element< Series, T > &exp, Word a) |
The c-derivative of the krat expression w.r.t to a word. | |
template<class Series, class T> std::pair< typename Element< Series, T >::weight_t, bool > | constant_term (const Element< Series, T > &exp) |
Return the constant term of the krat expression. | |
template<class Series, class T, class Letter> std::pair< Element< Series, T >, bool > | derivate (const Element< Series, T > &exp, Letter a) |
The antimirov derivative of the krat expression w.r.t to a letter. | |
template<class Series, class T, class Word> std::pair< Element< Series, T >, bool > | word_derivate (const Element< Series, T > &exp, Word a) |
The antimirov derivative of the krat expression w.r.t to a word. | |
template<class Series, class T> linearize_element< Series, T >::element_t | linearize (const Element< Series, T > &exp) |
The linearization of the krat expression. | |
template<class Series, class T, class Letter> std::pair< std::set< Element< Series, T > >, bool > | partial_derivate (const Element< Series, T > &exp, Letter a) |
The partial derivative of the krat expression w.r.t to a letter. | |
template<class Series, class T> Element< Series, T > | realtime (const Element< Series, T > &exp) |
Expand words in the expression as a product of letters. | |
template<typename A, typename T> Element< A, T > | minimization_moore (const Element< A, T > &a) |
Returns the minimal deterministic automaton associated to the input one. | |
template<typename A, typename T> Element< A, T > | normalize (const Element< A, T > &a) |
Return the fresh thompson-normalized automaton. More... | |
template<typename A, typename T> void | normalize_here (Element< A, T > &a) |
In-place normalize to the thompson form. More... | |
template<typename A, typename T> bool | is_normalized (const Element< A, T > &a) |
Return true if the input automaton is thompson-normalized. More... | |
template<typename A, typename T, typename U> void | union_of_normalized_here (Element< A, T > &lhs, const Element< A, U > &rhs) |
Do the in-place union of two thompson-normalized automata. More... | |
template<typename A, typename T, typename U> Element< A, T > | union_of_normalized (const Element< A, T > &lhs, const Element< A, U > &rhs) |
Return the fresh union of two thompson-normalized automata. More... | |
template<typename A, typename T, typename U> void | concatenate_of_normalized_here (Element< A, T > &lhs, const Element< A, U > &rhs) |
Do the in-place concatenation of two thompson-normalized automata. More... | |
template<typename A, typename T, typename U> Element< A, T > | concatenate_of_normalized (const Element< A, T > &lhs, const Element< A, U > &rhs) |
Return the fresh concatenation of two thompson-normalized automata. More... | |
template<typename A, typename T> void | star_of_normalized_here (Element< A, T > &a) |
Do in-place star transformation on the thompson-normalized input. More... | |
template<typename A, typename T> Element< A, T > | star_of_normalized (const Element< A, T > &a) |
Return the fresh star transformation of its normalized input. More... | |
template<typename A, typename T, typename U> Element< A, T > | product (const Element< A, T > &lhs, const Element< A, U > &rhs) |
Returns a fresh automaton that is the product of the two input ones. | |
template<typename A, typename T> bool | is_realtime (const Element< A, T > &a) |
Test whether an automaton is realtime. More... | |
template<typename A, typename T> void | realtime_here (Element< A, T > &a, realtime_type type=forward) |
In place modification of the automaton to make it realtime. More... | |
template<typename A, typename T> Element< A, T > | realtime (const Element< A, T > &a, realtime_type type=forward) |
Returns a fresh realtime automaton. More... | |
template<typename A, typename T> void | standardize (Element< A, T > &a) |
Returns a standard automaton associated to the input. More... | |
template<typename A, typename T> bool | is_standard (const Element< A, T > &a) |
Returns true if the input automaton is standard. More... | |
template<typename A, typename T, typename U> void | union_of_standard_here (Element< A, T > &lhs, const Element< A, U > &rhs) |
In-place union of two standard automata. More... | |
template<typename A, typename T, typename U> Element< A, T > | union_of_standard (const Element< A, T > &lhs, const Element< A, U > &rhs) |
Return a fresh union of two standard automata. More... | |
template<typename A, typename T, typename U> void | concat_of_standard_here (Element< A, T > &lhs, const Element< A, U > &rhs) |
In-place concatenation of two standard automata. More... | |
template<typename A, typename T, typename U> Element< A, T > | concat_of_standard (const Element< A, T > &lhs, const Element< A, U > &rhs) |
@fresh Return a fresh concatenation of two standard automata. More... | |
template<typename A, typename T> void | star_of_standard_here (Element< A, T > &a) |
In-place star transformation of a standard automata. More... | |
template<typename A, typename T> Element< A, T > | star_of_standard (const Element< A, T > &a) |
Return the fresh star transformation of a standard automata. More... | |
template<typename A, typename T, typename Exp> void | standard_of (Element< A, T > &, const Exp &) |
Convert a krat expression into an automaton using Standard_Of construction. | |
template<typename A, typename T, typename StatesSet> Element< A, T > | sub_automaton (const Element< A, T > &a, const StatesSet &s, bool check_states=true) |
Returns a fresh automaton that is the sub-automaton defined by a set. More... | |
template<typename A, typename T, typename StatesSet> void | sub_automaton_here (Element< A, T > &a, const StatesSet &s, bool check_states=true) |
Select a sub-automaton into a given automaton. More... | |
template<typename A, typename T, typename U> void | sum_here (Element< A, T > &lhs, const Element< A, U > &rhs) |
In place summing of two automata. More... | |
template<typename A, typename T, typename U> Element< A, T > | sum (const Element< A, T > &lhs, const Element< A, U > &rhs) |
Summing of two automata. More... | |
template<typename A, typename T, typename Letter, typename Weight> void | thompson_of (Element< A, T > &out, const rat::exp< Letter, Weight > &kexp) |
The Thompson automaton associated to the krat expression. More... | |
template<class AutoType, class S, class T> Element< Automata< S >, AutoType > | thompson_of (const Element< S, T > &exp) |
The Thompson automaton associated to the krat expression. More... | |
template<typename lhs_t, typename rhs_t> void | transpose (lhs_t &dst, const rhs_t &from) |
Transposition of an automaton. More... | |
template<typename auto_t> auto_t | transpose (const auto_t &from) |
Return a fresh transposed automaton. More... | |
template<typename A, typename T> std::set< hstate_t > | useful_states (const Element< A, T > &a) |
Returns a useful states of the automaton (start reachable and final co-). | |
template<typename A, typename T> Element< A, T > | trim (const Element< A, T > &a) |
Return a fresh automaton in which non useful states are removed. |
|
Return accessible states. This functions returns the accessible states set of its input automaton.
|
|
Extract the sub-automaton composed of accessible states. This function returns a fresh sub-automaton of its input containing only accessible states.
|
|
In-place extract the sub-automaton of accessible states. This function computes the sub-autmaton of accessible states from its input automaton. The operation is performed in-place.
|
|
Return co-accessible states. This functions returns the co-accessible states set of its input automaton, i.e. states which are accessible from final states.
|
|
Extract the sub-automaton composed of co-accessible states. This function returns a fresh sub-automaton of its input containing only co-accessible states, i.e. states which are accessible from final states.
|
|
In-place extract the sub-automaton of co-accessible states. This function computes the sub-autmaton of co-accessible states from its input automaton. The operation is performed in-place.
|
|
Returns a serie which describes the language of the automaton.
This algorithm works on every kind of series. However, if, during the computation, it must take the star of it, it can fail. By passing a "generalized" automaton, that is an automaton with rational expression as label, you will be sure to have the algorithm succeed since we can always take the star of a rational expression.
|
|
Returns a serie which describes the language of the automaton.
This algorithm works on every kind of series. However, if, during the computation, it must take the star of it, it can fail. By passing a "generalized" automaton, that is an automaton with rational expression as label, you will be sure to have the algorithm succeed since we can always take the star of a rational expression.
|
|
Complete in place the given automaton to make it close over epsilon transition.
|
|
Complete the given automaton into a copy to make it close over epsilon transition.
|
|
In place modification of the automaton to make it realtime. This function make an automaton realtime, using backward version of closure for building.
|
|
Returns a fresh realtime automaton. This fonction build a fresh realtime automaton from those given, using backward version of closure.
|
|
Complement in place the set of final states.
|
|
Complement in place the set of final states.
|
|
Make the transition function of an automaton total w.r.t alphabet. Work in place.
|
|
Make the transition function of an automaton total w.r.t alphabet. Return a fresh automaton.
|
|
Test if the transition function is complete for each state.
|
|
Return the concatenation of two automata. This function produces a new automata that realizes L(lhs).L(rhs).
|
|
In place concatenation of two automata. This function modifies lhs to concatenate the language L(rhs) to its language.
|
|
Convert a krat expression into an automaton using derivatives.
|
|
Convert a krat expression into an automaton using derivatives.
|
|
Returns the determinized of a boolean automaton.
|
|
Test if an automaton is deterministic.
|
|
Compute the image of a word into an automaton. eval(a, w) returns a weight that is the image of the word 'w' in the automaton. This algorithm works an weighted deterministic or not realtime automata.
|
|
Complete the given automaton into a copy to make it close over epsilon transition.
|
|
Complete the given automaton into a copy to make it close over epsilon transition.
|
|
In place modification of the automaton to make it realtime. This function make an automaton realtime, using forward version of closure for building.
|
|
Returns a fresh realtime automaton. This fonction build a fresh realtime automaton from those given, using forward version of closure.
|
|
Return the minimal automaton using the hopcroft algorithm.
|
|
Return the quotient of a non deterministic acceptor.
|
|
Return the fresh thompson-normalized automaton. This function returns the thompson-normalized automaton corresponding to its input.
|
|
In-place normalize to the thompson form. This function performs the in-place thompson-normalization of its input.
|
|
Return true if the input automaton is thompson-normalized. This function indicates whether its input automaton is thompson-normalized or not.
|
|
Do the in-place union of two thompson-normalized automata. This function performs the in-place union of two thompson-normalized automata. The result is thompson-normalized.
|
|
Return the fresh union of two thompson-normalized automata. This function returns a fresh automaton which is the union of input automata. It is thompson-normalized.
|
|
Do the in-place concatenation of two thompson-normalized automata. This function performs the in-place concatenation of two thompson-normalized automata. The result is thompson-normalized.
|
|
Return the fresh concatenation of two thompson-normalized automata. This function returns a fresh automaton which is the concatenation of input automata. It is thompson-normalized.
|
|
Do in-place star transformation on the thompson-normalized input. This function performs the in-place star transformation of a thompson-normalized automaton. The result is thompson-normalized.
|
|
Return the fresh star transformation of its normalized input. This function performs a star transformation on its input, and returns it as a fresh automaton. The input must be thompson-normalized, and the result is thompson-normalized.
|
|
Test whether an automaton is realtime. This function returns true if the input automaton is realtime.
|
|
In place modification of the automaton to make it realtime.
This algorithm makes an automaton realtime. It calls
|
|
Returns a fresh realtime automaton.
As
|
|
Returns a standard automaton associated to the input.
|
|
Returns true if the input automaton is standard.
|
|
In-place union of two standard automata. This function make the union of two standard automata. The result is a standard automaton.
|
|
Return a fresh union of two standard automata.
As
|
|
In-place concatenation of two standard automata. This function make the concatenation of two standard automata. The result is a standard automaton.
|
|
@fresh Return a fresh concatenation of two standard automata.
As
|
|
In-place star transformation of a standard automata. This function make the star transformation of a standard automaton, and replace those given by the result.
|
|
Return the fresh star transformation of a standard automata.
As
|
|
Returns a fresh automaton that is the sub-automaton defined by a set.
|
|
Select a sub-automaton into a given automaton.
|
|
In place summing of two automata. This function adds states and edges of an automaton to states and edges of a second automaton.
|
|
Summing of two automata. This function returns the fresh union of two automata. It put edges and states of the two automata together, and create a news one with the result.
|
|
The Thompson automaton associated to the krat expression. This function build the automaton associated to the rational expression implemented by a krat_exp, using Thompson algorithm.
|
|
The Thompson automaton associated to the krat expression. This function build the automaton associated to the rational expression implemented by a krat_exp, using Thompson algorithm. The kind of returned automaton is a default one.
|
|
Transposition of an automaton.
This function copy in
|
|
Return a fresh transposed automaton. This function returns the transposition of an automaton.
|