00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef VCSN_ALGORITHMS_HAS_SUCC_COMP_HXX
00018 # define VCSN_ALGORITHMS_HAS_SUCC_COMP_HXX
00019
00020 # include <vaucanson/algorithms/has_succ_comp.hh>
00021 # include <vaucanson/algorithms/trim.hh>
00022
00023 # include <vaucanson/automata/concept/automata_base.hh>
00024
00025 # include <algorithm>
00026
00027 namespace vcsn {
00028
00029 template<typename A, typename T>
00030 bool
00031 has_succ_comp(const Element<A, T>& a)
00032 {
00033 return trim (a).states ().size () > 0;
00034 }
00035
00036 }
00037
00038 #endif // ! VCSN_ALGORITHMS_HAS_SUCC_COMP_HXX