Imported Upstream version 3.2.2
[debian/gnuradio] / gr-trellis / src / lib / fsm.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2002 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  *
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifndef INCLUDED_TRELLIS_FSM_H
24 #define INCLUDED_TRELLIS_FSM_H
25
26 #include <vector>
27 #include <iosfwd>
28
29 /*!
30  * \brief  FSM class
31  */
32 class fsm {
33 private:
34   int d_I;
35   int d_S;
36   int d_O;
37   std::vector<int> d_NS;
38   std::vector<int> d_OS;
39   std::vector< std::vector<int> > d_PS;
40   std::vector< std::vector<int> > d_PI;
41   std::vector<int> d_TMi;
42   std::vector<int> d_TMl;
43   void generate_PS_PI ();
44   void generate_TM ();
45   bool find_es(int es);
46 public:
47   fsm();
48   fsm(const fsm &FSM);
49   fsm(int I, int S, int O, const std::vector<int> &NS, const std::vector<int> &OS);
50   fsm(const char *name);
51   fsm(int k, int n, const std::vector<int> &G);
52   fsm(int mod_size, int ch_length);
53   fsm(int P, int M, int L);
54   fsm(const fsm &FSM1, const fsm &FSM2);
55   fsm(const fsm &FSM, int n);
56   int I () const { return d_I; }
57   int S () const { return d_S; }
58   int O () const { return d_O; }
59   const std::vector<int> & NS () const { return d_NS; }
60   const std::vector<int> & OS () const { return d_OS; }
61   const std::vector< std::vector<int> > & PS () const { return d_PS; }
62   const std::vector< std::vector<int> > & PI () const { return d_PI; }
63   const std::vector<int> & TMi () const { return d_TMi; }
64   const std::vector<int> & TMl () const { return d_TMl; }
65   void write_trellis_svg(std::string filename ,int number_stages);
66   void write_fsm_txt(std::string filename);
67 };
68
69 #endif