diff options
author | Achilleas Anastasopoulos <anastas@umich.edu> | 2014-10-01 18:22:53 -0400 |
---|---|---|
committer | Achilleas Anastasopoulos <anastas@umich.edu> | 2014-10-08 12:46:21 -0400 |
commit | be8e888f80934a884287f0ec9eb62dd0d2b7f5e5 (patch) | |
tree | dc3406eb0a25bb3171458bfded74cfe192a775a5 /gr-trellis/doc | |
parent | 46e9dfed237990da20b5fb054b7fd33b1c152b4a (diff) |
Updated documentation and grc/python examples in gr-trellis.
Removed weird pyhton examples and made them grc files.
Diffstat (limited to 'gr-trellis/doc')
-rw-r--r-- | gr-trellis/doc/gr-trellis.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-trellis/doc/gr-trellis.xml b/gr-trellis/doc/gr-trellis.xml index 6ffbb9ec2c..aabf9ad535 100644 --- a/gr-trellis/doc/gr-trellis.xml +++ b/gr-trellis/doc/gr-trellis.xml @@ -176,8 +176,8 @@ private: int d_O; std::vector<int> d_NS; std::vector<int> d_OS; - std::vector<int> d_PS; - std::vector<int> d_PI; + std::vector< std::vector< int> > d_PS; + std::vector< std::vector< int> > d_PI; std::vector<int> d_TMi; std::vector<int> d_TMl; void generate_PS_PI (); @@ -195,8 +195,8 @@ public: int O () const { return d_O; } const std::vector<int> & NS () const { return d_NS; } const std::vector<int> & OS () const { return d_OS; } - const std::vector<int> & PS () const { return d_PS; } - const std::vector<int> & PI () const { return d_PI; } + const std::vector< std::vector< int> > & PS () const { return d_PS; } + const std::vector< std::vector< int> > & PI () const { return d_PI; } const std::vector<int> & TMi () const { return d_TMi; } const std::vector<int> & TMl () const { return d_TMl; } }; |