X-Git-Url: https://git.gag.com/?a=blobdiff_plain;ds=sidebyside;f=gr-trellis%2Fsrc%2Flib%2Ffsm.h;h=0a90b2cd332587d3552a14f385ddea0d2387aab0;hb=ea29b08aeb54227e6628f655ccfdb96fe4d8c378;hp=cecc5e14b788a7ac056f0c10b1b874d718dc4b16;hpb=09a1e803a9e6587c78d20cdf16891e5295874668;p=debian%2Fgnuradio diff --git a/gr-trellis/src/lib/fsm.h b/gr-trellis/src/lib/fsm.h index cecc5e14..0a90b2cd 100644 --- a/gr-trellis/src/lib/fsm.h +++ b/gr-trellis/src/lib/fsm.h @@ -24,6 +24,7 @@ #define INCLUDED_TRELLIS_FSM_H #include +#include /*! * \brief FSM class @@ -35,8 +36,8 @@ private: int d_O; std::vector d_NS; std::vector d_OS; - std::vector d_PS; - std::vector d_PI; + std::vector< std::vector > d_PS; + std::vector< std::vector > d_PI; std::vector d_TMi; std::vector d_TMl; void generate_PS_PI (); @@ -49,15 +50,20 @@ public: fsm(const char *name); fsm(int k, int n, const std::vector &G); fsm(int mod_size, int ch_length); + fsm(int P, int M, int L); + fsm(const fsm &FSM1, const fsm &FSM2); + fsm(const fsm &FSM, int n); int I () const { return d_I; } int S () const { return d_S; } int O () const { return d_O; } const std::vector & NS () const { return d_NS; } const std::vector & OS () const { return d_OS; } - const std::vector & PS () const { return d_PS; } - const std::vector & PI () const { return d_PI; } + const std::vector< std::vector > & PS () const { return d_PS; } + const std::vector< std::vector > & PI () const { return d_PI; } const std::vector & TMi () const { return d_TMi; } const std::vector & TMl () const { return d_TMl; } + void write_trellis_svg(std::string filename ,int number_stages); + void write_fsm_txt(std::string filename); }; #endif