X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gr-trellis%2Fsrc%2Flib%2Ffsm.h;h=0a90b2cd332587d3552a14f385ddea0d2387aab0;hb=ea29b08aeb54227e6628f655ccfdb96fe4d8c378;hp=4b0453a72a0085cb1e41fb092c0da6a23349807e;hpb=18a684bf3dc144c48fc4cc6cc72f5070febd8074;p=debian%2Fgnuradio diff --git a/gr-trellis/src/lib/fsm.h b/gr-trellis/src/lib/fsm.h index 4b0453a7..0a90b2cd 100644 --- a/gr-trellis/src/lib/fsm.h +++ b/gr-trellis/src/lib/fsm.h @@ -6,7 +6,7 @@ * * GNU Radio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) + * the Free Software Foundation; either version 3, or (at your option) * any later version. * * GNU Radio is distributed in the hope that it will be useful, @@ -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