00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef VCSN_ALGEBRA_IMPLEMENTATION_ALPHABETS_SET_ALPHABET_HXX
00018 # define VCSN_ALGEBRA_IMPLEMENTATION_ALPHABETS_SET_ALPHABET_HXX
00019
00020 # include <vaucanson/algebra/concept/letter.hh>
00021 # include <vaucanson/algebra/implementation/alphabets/set_alphabet.hh>
00022
00023 # include <limits>
00024
00025 namespace vcsn
00026 {
00027
00028
00029
00030
00031
00032 template <typename L>
00033 size_t
00034 op_max_size(const algebra::AlphabetSet<L>&, const std::set<L>&)
00035 {
00036 return algebra::letter_traits<L>::cardinal;
00037 }
00038
00039 template<typename L>
00040 bool op_contains(const algebra::AlphabetSet<L>&, const std::set<L>&)
00041 {
00042 return true;
00043 }
00044
00045 template<typename L>
00046 bool op_is_finite(const algebra::AlphabetSet<L>&, const std::set<L>&)
00047 {
00048 return true;
00049 }
00050
00051 template<typename L>
00052 bool op_contains_e(const algebra::AlphabetSet<L>&, const std::set<L>& a,
00053 const L& v)
00054 {
00055 return a.find(v) != a.end();
00056 }
00057
00058
00059 }
00060
00061 #endif // ! VCSN_ALGEBRA_IMPLEMENTATION_ALPHABETS_SET_ALPHABET_HXX