00001 // determinize.hh: 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, 2007, 2008 The 00006 // Vaucanson Group. 00007 // 00008 // This program is free software; you can redistribute it and/or 00009 // modify it under the terms of the GNU General Public License 00010 // as published by the Free Software Foundation; either version 2 00011 // of the License, or (at your option) any later version. 00012 // 00013 // The complete GNU General Public Licence Notice can be found as the 00014 // `COPYING' file in the root directory. 00015 // 00016 // The Vaucanson Group consists of people listed in the `AUTHORS' file. 00017 // 00018 #ifndef VCSN_ALGORITHMS_IS_DETERMINISTIC_HH 00019 # define VCSN_ALGORITHMS_IS_DETERMINISTIC_HH 00020 00034 // INTERFACE: bool is_deterministic(const Automaton& a) { return vcsn::is_deterministic(*a); } 00035 00036 # include <vaucanson/design_pattern/design_pattern.hh> 00037 00038 namespace vcsn { 00039 00058 template<typename A, typename AI> 00059 bool 00060 is_deterministic(const Element<A, AI>& a); 00061 00064 } // vcsn 00065 00066 # if !defined VCSN_USE_INTERFACE_ONLY && !defined VCSN_USE_LIB 00067 # include <vaucanson/algorithms/is_deterministic.hxx> 00068 # endif // VCSN_USE_INTERFACE_ONLY 00069 00070 #endif // ! VCSN_ALGORITHMS_DETERMINIZE_HH