~ubuntu-branches/ubuntu/trusty/gnuradio/trusty-updates

« back to all changes in this revision

Viewing changes to gr-trellis/src/lib/trellis_viterbi_combined_ii.h

  • Committer: Package Import Robot
  • Author(s): A. Maitland Bottoms
  • Date: 2012-02-26 21:26:16 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120226212616-vsfkbi1158xshdql
Tags: 3.5.1-1
* new upstream version, re-packaged from scratch with modern tools
    closes: #642716, #645332, #394849, #616832, #590048, #642580,
    #647018, #557050, #559640, #631863
* CMake build

Show diffs side-by-side

added added

removed removed

Lines of Context:
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_II_H
26
 
#define INCLUDED_TRELLIS_VITERBI_COMBINED_II_H
27
 
 
28
 
#include "fsm.h"
29
 
#include <gr_block.h>
30
 
#include "trellis_calc_metric.h"
31
 
 
32
 
class trellis_viterbi_combined_ii;
33
 
typedef boost::shared_ptr<trellis_viterbi_combined_ii> trellis_viterbi_combined_ii_sptr;
34
 
 
35
 
trellis_viterbi_combined_ii_sptr trellis_make_viterbi_combined_ii (
36
 
    const fsm &FSM,
37
 
    int K,
38
 
    int S0,
39
 
    int SK,
40
 
    int D,
41
 
    const std::vector<int> &TABLE,
42
 
    trellis_metric_type_t TYPE);
43
 
 
44
 
 
45
 
/*!
46
 
 *  \ingroup coding_blk
47
 
 */
48
 
class trellis_viterbi_combined_ii : public gr_block
49
 
{
50
 
  fsm d_FSM;
51
 
  int d_K;
52
 
  int d_S0;
53
 
  int d_SK;
54
 
  int d_D;
55
 
  std::vector<int> d_TABLE;
56
 
  trellis_metric_type_t d_TYPE;
57
 
  //std::vector<int> d_trace;
58
 
 
59
 
  friend trellis_viterbi_combined_ii_sptr trellis_make_viterbi_combined_ii (
60
 
    const fsm &FSM,
61
 
    int K,
62
 
    int S0,
63
 
    int SK,
64
 
    int D,
65
 
    const std::vector<int> &TABLE,
66
 
    trellis_metric_type_t TYPE);
67
 
 
68
 
 
69
 
  trellis_viterbi_combined_ii (
70
 
    const fsm &FSM,
71
 
    int K,
72
 
    int S0,
73
 
    int SK,
74
 
    int D,
75
 
    const std::vector<int> &TABLE,
76
 
    trellis_metric_type_t TYPE);
77
 
 
78
 
 
79
 
public:
80
 
  fsm FSM () const { return d_FSM; }
81
 
  int K () const { return d_K; }
82
 
  int S0 () const { return d_S0; }
83
 
  int SK () const { return d_SK; }
84
 
  int D () const { return d_D; }
85
 
  std::vector<int> TABLE () const { return d_TABLE; }
86
 
  trellis_metric_type_t TYPE () const { return d_TYPE; }
87
 
  //std::vector<int> trace () const { return d_trace; }
88
 
  void set_TABLE (const std::vector<int> &table);
89
 
  void forecast (int noutput_items,
90
 
                 gr_vector_int &ninput_items_required);
91
 
  int general_work (int noutput_items,
92
 
                    gr_vector_int &ninput_items,
93
 
                    gr_vector_const_void_star &input_items,
94
 
                    gr_vector_void_star &output_items);
95
 
};
96
 
 
97
 
#endif