Vcsn  2.0
Be Rational
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
blind.cc
Go to the documentation of this file.
2 #include <vcsn/algos/blind.hh>
3 #include <vcsn/dyn/algos.hh>
4 
5 namespace vcsn
6 {
7  namespace dyn
8  {
9  /*-------------------.
10  | blind(automaton). |
11  `-------------------*/
12  REGISTER_DEFINE(blind);
13  automaton
14  blind(automaton& aut, unsigned tape)
15  {
17  = {"std::integral_constant<unsigned, " + std::to_string(tape) + ">"};
18  return detail::blind_registry().call(aut, t);
19  }
20  }
21 }
automaton blind(automaton &aut, unsigned tape)
Focus on a specific tape of a tupleset automaton.
Definition: blind.cc:14
std::shared_ptr< detail::automaton_base > automaton
Definition: automaton.hh:71
std::string to_string(identities i)
Definition: identities.cc:13
A simple placeholder for integral constants.
Definition: name.hh:155