Vaucanson 1.4
|
00001 // trim.hxx: this file is part of the Vaucanson project. 00002 // 00003 // Vaucanson, a generic library for finite state machines. 00004 // 00005 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2008 The Vaucanson Group. 00006 // 00007 // This program is free software; you can redistribute it and/or 00008 // modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 00010 // of the License, or (at your option) any later version. 00011 // 00012 // The complete GNU General Public Licence Notice can be found as the 00013 // `COPYING' file in the root directory. 00014 // 00015 // The Vaucanson Group consists of people listed in the `AUTHORS' file. 00016 // 00017 #ifndef VCSN_ALGORITHMS_TRIM_HXX 00018 # define VCSN_ALGORITHMS_TRIM_HXX 00019 00020 # include <vaucanson/algorithms/trim.hh> 00021 00022 # include <vaucanson/automata/concept/automata_base.hh> 00023 00024 # include <vaucanson/algorithms/sub_automaton.hh> 00025 # include <vaucanson/algorithms/accessible.hh> 00026 00027 # include <algorithm> 00028 00029 namespace vcsn { 00030 00031 /*---------------------. 00032 | do_start_trim_states | 00033 `---------------------*/ 00034 // preconditions : 00035 // 00036 // 00037 template <typename A, typename AI> 00038 std::set<typename Element<A, AI>::hstate_t> 00039 do_useful_states(const AutomataBase<A>&, 00040 const Element<A, AI>& a) 00041 { 00042 BENCH_TASK_SCOPED("useful_states"); 00043 typedef typename Element<A, AI>::hstate_t hstate_t; 00044 00045 std::set<hstate_t> start = accessible_states(a); 00046 std::set<hstate_t> final = coaccessible_states(a); 00047 std::set<hstate_t> result; 00048 std::insert_iterator<std::set<hstate_t> > i(result, result.begin()); 00049 00050 set_intersection(start.begin(), start.end(), final.begin(), final.end(), i); 00051 return result; 00052 } 00053 00054 template<typename A, typename AI> 00055 std::set<typename Element<A, AI>::hstate_t> 00056 useful_states(const Element<A, AI>& a) 00057 { 00058 return do_useful_states(a.structure(), a); 00059 } 00060 00061 template<typename A, typename AI> 00062 Element<A, AI> 00063 trim(const Element<A, AI>& a) 00064 { 00065 return sub_automaton(a, useful_states(a)); 00066 } 00067 00068 template<typename A, typename AI> 00069 void 00070 trim_here(Element<A, AI>& a) 00071 { 00072 sub_automaton_here(a, useful_states(a)); 00073 } 00074 00075 } // vcsn 00076 00077 #endif // ! VCSN_ALGORITHMS_TRIM_HXX