forked from gnuradio/gnuradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviterbi_impl.h
55 lines (44 loc) · 1.29 KB
/
viterbi_impl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* -*- c++ -*- */
/*
* Copyright 2004,2012,2018 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef VITERBI_IMPL_H
#define VITERBI_IMPL_H
#include <gnuradio/trellis/viterbi.h>
namespace gr {
namespace trellis {
template <class T>
class viterbi_impl : public viterbi<T>
{
private:
fsm d_FSM;
int d_K;
int d_S0;
int d_SK;
// std::vector<int> d_trace;
public:
viterbi_impl(const fsm& FSM, int K, int S0, int SK);
~viterbi_impl() override;
fsm FSM() const override { return d_FSM; }
int K() const override { return d_K; }
int S0() const override { return d_S0; }
int SK() const override { return d_SK; }
void set_FSM(const fsm& FSM) override;
void set_K(int K) override;
void set_S0(int S0) override;
void set_SK(int SK) override;
// std::vector<int> trace () const { return d_trace; }
void forecast(int noutput_items, gr_vector_int& ninput_items_required) override;
int general_work(int noutput_items,
gr_vector_int& ninput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items) override;
};
} /* namespace trellis */
} /* namespace gr */
#endif /* VITERBI_IMPL_H */