00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef VCSN_TOOLS_AUTOMATON_TOOLS_HH
00018 # define VCSN_TOOLS_AUTOMATON_TOOLS_HH
00019
00020 # include <algorithm>
00021 # include <deque>
00022 # include <vaucanson/automata/concept/automata.hh>
00023 # include <vaucanson/misc/random.hh>
00024
00025 namespace vcsn {
00026
00027 template <class Auto>
00028 std::deque<hstate_t>
00029 choose_n_states(const Auto& a, unsigned n)
00030 {
00031 std::deque<hstate_t> s;
00032 std::insert_iterator<std::deque<hstate_t> > i(s, s.begin());
00033 utility::random::sample_n(a.states().begin(),
00034 a.states().end(),
00035 i,
00036 n);
00037 return s;
00038 }
00039
00040 }
00041
00042 #endif // ! VCSN_TOOLS_AUTOMATON_TOOLS_HH