Include dependency graph for normalized.hh:

This graph shows which files directly or indirectly include this file:

Namespaces | |
| namespace | vcsn | 
Functions | |
| template<typename A, typename T> | |
| Element< A, T > | normalize (const Element< A, T > &a) | 
| Return the fresh thompson-normalized automaton.   | |
| template<typename A, typename T> | |
| void | normalize_here (Element< A, T > &a) | 
| In-place normalize to the thompson form.   | |
| template<typename A, typename T> | |
| bool | is_normalized (const Element< A, T > &a) | 
| Return true if the input automaton is thompson-normalized.   | |
| 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.   | |
| 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.   | |
| 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.   | |
| 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.   | |
| template<typename A, typename T> | |
| void | star_of_normalized_here (Element< A, T > &a) | 
| Do in-place star transformation on the thompson-normalized input.   | |
| 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.   | |
This file contains algorithms related to thompson automata normalization, and thompson-normalized automata operations.
 1.4.1