GNU Radio 3.5.3.1 C++ API
trellis_viterbi_combined_cs.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004 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 // WARNING: this file is machine generated. Edits will be over written
24 
25 #ifndef INCLUDED_TRELLIS_VITERBI_COMBINED_CS_H
26 #define INCLUDED_TRELLIS_VITERBI_COMBINED_CS_H
27 
28 #include <trellis_api.h>
29 #include "fsm.h"
30 #include <gr_block.h>
31 #include "calc_metric.h"
32 #include "core_algorithms.h"
33 
36 
38  const fsm &FSM,
39  int K,
40  int S0,
41  int SK,
42  int D,
43  const std::vector<gr_complex> &TABLE,
45 
46 
47 /*!
48  * \ingroup coding_blk
49  */
51 {
52  fsm d_FSM;
53  int d_K;
54  int d_S0;
55  int d_SK;
56  int d_D;
57  std::vector<gr_complex> d_TABLE;
58  trellis_metric_type_t d_TYPE;
59  //std::vector<int> d_trace;
60 
62  const fsm &FSM,
63  int K,
64  int S0,
65  int SK,
66  int D,
67  const std::vector<gr_complex> &TABLE,
69 
70 
72  const fsm &FSM,
73  int K,
74  int S0,
75  int SK,
76  int D,
77  const std::vector<gr_complex> &TABLE,
79 
80 
81 public:
82  fsm FSM () const { return d_FSM; }
83  int K () const { return d_K; }
84  int S0 () const { return d_S0; }
85  int SK () const { return d_SK; }
86  int D () const { return d_D; }
87  std::vector<gr_complex> TABLE () const { return d_TABLE; }
88  trellis_metric_type_t TYPE () const { return d_TYPE; }
89  //std::vector<int> trace () const { return d_trace; }
90  void set_TABLE (const std::vector<gr_complex> &table);
91  void forecast (int noutput_items,
92  gr_vector_int &ninput_items_required);
93  int general_work (int noutput_items,
94  gr_vector_int &ninput_items,
95  gr_vector_const_void_star &input_items,
96  gr_vector_void_star &output_items);
97 };
98 
99 #endif