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 namespace tools {
00027
00028 template <class Auto>
00029 std::deque<hstate_t>
00030 choose_n_states(const Auto& a, unsigned n)
00031 {
00032 std::deque<hstate_t> s;
00033 std::insert_iterator<std::deque<hstate_t> > i(s, s.begin());
00034 misc::random::sample_n(a.states().begin(),
00035 a.states().end(),
00036 i,
00037 n);
00038 return s;
00039 }
00040
00041 }
00042 }
00043
00044 #endif // ! VCSN_TOOLS_AUTOMATON_TOOLS_HH