Vcsn  2.0
Be Rational
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
star-height.cc
Go to the documentation of this file.
1 #include <vcsn/dyn/ratexp.hh>
2 #include <vcsn/dyn/algos.hh>
5 
6 namespace vcsn
7 {
8  namespace dyn
9  {
10 
11  /*-------------------.
12  | star-height(exp). |
13  `-------------------*/
14  REGISTER_DEFINE(star_height);
15 
16  unsigned
17  star_height(const ratexp& e)
18  {
19  return detail::star_height_registry().call(e);
20  }
21  }
22 }
std::shared_ptr< detail::ratexp_base > ratexp
Definition: fwd.hh:64
unsigned star_height(const ratexp &rs)
Star height of a ratexp.
Definition: star-height.cc:17