|
std::string | vname (bool full=true) const |
|
automaton_t | naked_automaton () |
| The automaton we are decorating (typically a mutable_automaton). More...
|
|
auto | strip () -> decltype(transpose(vcsn::strip(this->naked_automaton()))) |
|
auto | all_in (state_t s) const -> decltype(aut_-> all_out(s)) |
|
template<typename Pred > |
auto | all_in (state_t s, Pred pred) const -> decltype(aut_-> all_out(s, pred)) |
|
auto | all_out (state_t s) const -> decltype(aut_-> all_in(s)) |
|
template<typename Pred > |
auto | all_out (state_t s, Pred pred) const -> decltype(aut_-> all_in(s, pred)) |
|
auto | dst_of (transition_t t) const -> decltype(aut_-> src_of(t)) |
|
auto | final_transitions () const -> decltype(aut_-> initial_transitions()) |
|
auto | in (state_t s) const -> decltype(aut_-> out(s)) |
|
auto | initial_transitions () const -> decltype(aut_-> final _transitions()) |
|
auto | is_final (state_t s) const -> decltype(aut_-> is_initial(s)) |
|
auto | num_finals () const -> decltype(aut_-> num_initials()) |
|
auto | num_initials () const -> decltype(aut_-> num_ final s()) |
|
auto | out (state_t s) const -> decltype(aut_-> in(s)) |
|
auto | outin (state_t s, state_t d) const -> decltype(aut_-> outin(d, s)) |
|
auto | src_of (transition_t t) const -> decltype(aut_-> dst_of(t)) |
|
auto | is_initial (state_t s) const -> decltype(aut_-> is_ final(s)) |
|
auto | in (state_t s, label_t l) const -> decltype(aut_-> out(s, aut_->labelset() ->transpose(l))) |
|
auto | out (state_t s, label_t l) const -> decltype(aut_-> in(s, aut_->labelset() ->transpose(l))) |
|
auto | get_transition (state_t s, state_t d, label_t l) const -> decltype(aut_-> get_transition(d, s, aut_->labelset() ->transpose(l))) |
|
auto | has_transition (state_t s, state_t d, label_t l) const -> decltype(aut_-> has_transition(d, s, aut_->labelset() ->transpose(l))) |
|
auto | label_of (transition_t t) const -> decltype(aut_-> labelset() ->transpose(aut_->label_of(t))) |
|
ATTRIBUTE_PURE auto | get_initial_weight (state_t s) const -> decltype(aut_-> weightset() ->transpose(aut_->get_ final _weight(s))) |
|
ATTRIBUTE_PURE auto | get_final_weight (state_t s) const -> decltype(aut_-> weightset() ->transpose(aut_->get_initial_weight(s))) |
|
ATTRIBUTE_PURE auto | weight_of (transition_t t) const -> decltype(aut_-> weightset() ->transpose(aut_->weight_of(t))) |
|
auto | set_initial (state_t s) -> decltype(aut_-> set_ final(s)) |
|
auto | set_final (state_t s) -> decltype(aut_-> set_initial(s)) |
|
auto | unset_initial (state_t s) -> decltype(aut_-> unset_ final(s)) |
|
auto | unset_final (state_t s) -> decltype(aut_-> unset_initial(s)) |
|
auto | set_weight (transition_t t, weight_t k) -> decltype(aut_-> set_weight(t, aut_->weightset() ->transpose(k))) |
|
auto | add_weight (transition_t t, weight_t k) -> decltype(aut_-> add_weight(t, aut_->weightset() ->transpose(k))) |
|
auto | lmul_weight (transition_t t, weight_t k) -> decltype(aut_-> lmul_weight(t, aut_->weightset() ->transpose(k))) |
|
auto | rmul_weight (transition_t t, weight_t k) -> decltype(aut_-> rmul_weight(t, aut_->weightset() ->transpose(k))) |
|
auto | del_transition (transition_t t) -> decltype(aut_-> del_transition(t)) |
|
auto | del_transition (state_t s, state_t d, label_t l) -> decltype(aut_-> del_transition(d, s, aut_->labelset() ->transpose(l))) |
|
auto | add_transition (state_t s, state_t d, label_t l, weight_t k) -> decltype(aut_-> add_transition(d, s, aut_->labelset() ->transpose(l), aut_->weightset() ->transpose(k))) |
|
auto | add_transition (state_t s, state_t d, label_t l) -> decltype(aut_-> add_transition(d, s, aut_->labelset() ->transpose(l))) |
|
auto | new_transition (state_t s, state_t d, label_t l, weight_t k) -> decltype(aut_-> new_transition(d, s, aut_->labelset() ->transpose(l), aut_->weightset() ->transpose(k))) |
|
auto | new_transition (state_t s, state_t d, label_t l) -> decltype(aut_-> new_transition(d, s, aut_->labelset() ->transpose(l))) |
|
auto | set_transition (state_t s, state_t d, label_t l, weight_t k) -> decltype(aut_-> set_transition(d, s, aut_->labelset() ->transpose(l), aut_->weightset() ->transpose(k))) |
|
auto | set_initial (state_t s, weight_t k) -> decltype(aut_-> set_ final(s |
|
auto aut_ | weightset () -> transpose(k))) |
|
auto | set_final (state_t s, weight_t k) -> decltype(aut_-> set_initial(s, aut_->weightset() ->transpose(k))) |
|
auto | add_initial (state_t s, weight_t k) -> decltype(aut_-> add_ final(s |
|
auto aut_ | weightset () -> transpose(k))) |
|
auto | add_final (state_t s, weight_t k) -> decltype(aut_-> add_initial(s, aut_->weightset() ->transpose(k))) |
|
template<typename A > |
auto | add_transition_copy (state_t src, state_t dst, const A &aut, typename A::element_type::transition_t t, bool transpose=false) -> decltype(aut_-> add_transition_copy(dst, src, aut, t,!transpose)) |
|
template<typename A > |
auto | new_transition_copy (state_t src, state_t dst, const A &aut, typename A::element_type::transition_t t, bool transpose=false) -> decltype(aut_-> new_transition_copy(dst, src, aut, t,!transpose)) |
|
| automaton_decorator (automaton_t aut) |
|
| automaton_decorator (const automaton_decorator &aut) |
|
| automaton_decorator (const context_t &ctx) |
|
| automaton_decorator (automaton_decorator &&aut) |
|
automaton_decorator & | operator= (automaton_decorator &&that) |
|
automaton_t | strip () |
|
auto | all_in (Args &&...args) const -> decltype(aut_-> all_in(std::forward< Args >(args)...)) |
|
auto | all_out (Args &&...args) const -> decltype(aut_-> all_out(std::forward< Args >(args)...)) |
|
auto | all_states (Args &&...args) const -> decltype(aut_-> all_states(std::forward< Args >(args)...)) |
|
auto | all_transitions (Args &&...args) const -> decltype(aut_-> all_transitions(std::forward< Args >(args)...)) |
|
auto | context (Args &&...args) const -> decltype(aut_-> context(std::forward< Args >(args)...)) |
|
auto | dst_of (Args &&...args) const -> decltype(aut_-> dst_of(std::forward< Args >(args)...)) |
|
auto | final_transitions (Args &&...args) const -> decltype(aut_-> final _transitions(std |
|
auto | get_final_weight (Args &&...args) const -> decltype(aut_-> get_ final _weight(std |
|
auto | get_initial_weight (Args &&...args) const -> decltype(aut_-> get_initial_weight(std::forward< Args >(args)...)) |
|
auto | get_transition (Args &&...args) const -> decltype(aut_-> get_transition(std::forward< Args >(args)...)) |
|
auto | has_transition (Args &&...args) const -> decltype(aut_-> has_transition(std::forward< Args >(args)...)) |
|
auto | has_state (Args &&...args) const -> decltype(aut_-> has_state(std::forward< Args >(args)...)) |
|
auto | in (Args &&...args) const -> decltype(aut_-> in(std::forward< Args >(args)...)) |
|
auto | initial_transitions (Args &&...args) const -> decltype(aut_-> initial_transitions(std::forward< Args >(args)...)) |
|
auto | is_final (Args &&...args) const -> decltype(aut_-> is_ final(std |
|
auto | is_initial (Args &&...args) const -> decltype(aut_-> is_initial(std::forward< Args >(args)...)) |
|
auto | label_of (Args &&...args) const -> decltype(aut_-> label_of(std::forward< Args >(args)...)) |
|
auto | labelset (Args &&...args) const -> decltype(aut_-> labelset(std::forward< Args >(args)...)) |
|
auto | num_all_states (Args &&...args) const -> decltype(aut_-> num_all_states(std::forward< Args >(args)...)) |
|
auto | num_finals (Args &&...args) const -> decltype(aut_-> num_ final s(std |
|
auto | num_initials (Args &&...args) const -> decltype(aut_-> num_initials(std::forward< Args >(args)...)) |
|
auto | num_states (Args &&...args) const -> decltype(aut_-> num_states(std::forward< Args >(args)...)) |
|
auto | num_transitions (Args &&...args) const -> decltype(aut_-> num_transitions(std::forward< Args >(args)...)) |
|
auto | out (Args &&...args) const -> decltype(aut_-> out(std::forward< Args >(args)...)) |
|
auto | outin (Args &&...args) const -> decltype(aut_-> outin(std::forward< Args >(args)...)) |
|
auto | print_state (Args &&...args) const -> decltype(aut_-> print_state(std::forward< Args >(args)...)) |
|
auto | print_state_name (Args &&...args) const -> decltype(aut_-> print_state_name(std::forward< Args >(args)...)) |
|
auto | src_of (Args &&...args) const -> decltype(aut_-> src_of(std::forward< Args >(args)...)) |
|
auto | state_has_name (Args &&...args) const -> decltype(aut_-> state_has_name(std::forward< Args >(args)...)) |
|
auto | states (Args &&...args) const -> decltype(aut_-> states(std::forward< Args >(args)...)) |
|
auto | transitions (Args &&...args) const -> decltype(aut_-> transitions(std::forward< Args >(args)...)) |
|
auto | vname (Args &&...args) const -> decltype(aut_-> vname(std::forward< Args >(args)...)) |
|
auto | weight_of (Args &&...args) const -> decltype(aut_-> weight_of(std::forward< Args >(args)...)) |
|
auto | weightset (Args &&...args) const -> decltype(aut_-> weightset(std::forward< Args >(args)...)) |
|
auto | add_final (Args &&...args) -> decltype(aut_-> add_ final(std |
|
auto | add_initial (Args &&...args) -> decltype(aut_-> add_initial(std::forward< Args >(args)...)) |
|
auto | add_transition (Args &&...args) -> decltype(aut_-> add_transition(std::forward< Args >(args)...)) |
|
auto | add_transition_copy (Args &&...args) -> decltype(aut_-> add_transition_copy(std::forward< Args >(args)...)) |
|
auto | add_weight (Args &&...args) -> decltype(aut_-> add_weight(std::forward< Args >(args)...)) |
|
auto | del_state (Args &&...args) -> decltype(aut_-> del_state(std::forward< Args >(args)...)) |
|
auto | del_transition (Args &&...args) -> decltype(aut_-> del_transition(std::forward< Args >(args)...)) |
|
auto | lmul_weight (Args &&...args) -> decltype(aut_-> lmul_weight(std::forward< Args >(args)...)) |
|
auto | new_state (Args &&...args) -> decltype(aut_-> new_state(std::forward< Args >(args)...)) |
|
auto | new_transition (Args &&...args) -> decltype(aut_-> new_transition(std::forward< Args >(args)...)) |
|
auto | new_transition_copy (Args &&...args) -> decltype(aut_-> new_transition_copy(std::forward< Args >(args)...)) |
|
auto | rmul_weight (Args &&...args) -> decltype(aut_-> rmul_weight(std::forward< Args >(args)...)) |
|
auto | set_final (Args &&...args) -> decltype(aut_-> set_ final(std |
|
auto | set_initial (Args &&...args) -> decltype(aut_-> set_initial(std::forward< Args >(args)...)) |
|
auto | set_transition (Args &&...args) -> decltype(aut_-> set_transition(std::forward< Args >(args)...)) |
|
auto | set_weight (Args &&...args) -> decltype(aut_-> set_weight(std::forward< Args >(args)...)) |
|
auto | unset_final (Args &&...args) -> decltype(aut_-> unset_ final(std |
|
auto | unset_initial (Args &&...args) -> decltype(aut_-> unset_initial(std::forward< Args >(args)...)) |
|
template<typename Aut>
class vcsn::detail::transpose_automaton_impl< Aut >
Read-write on an automaton, that transposes everything.
Definition at line 55 of file fwd.hh.