forked from gnuradio/gnuradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetrics_impl.h
57 lines (45 loc) · 1.41 KB
/
metrics_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
56
57
/* -*- 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 METRICS_IMPL_H
#define METRICS_IMPL_H
#include <gnuradio/trellis/metrics.h>
namespace gr {
namespace trellis {
template <class T>
class metrics_impl : public metrics<T>
{
private:
int d_O;
int d_D;
digital::trellis_metric_type_t d_TYPE;
std::vector<T> d_TABLE;
public:
metrics_impl(int O,
int D,
const std::vector<T>& TABLE,
digital::trellis_metric_type_t TYPE);
~metrics_impl() override;
int O() const override { return d_O; }
int D() const override { return d_D; }
digital::trellis_metric_type_t TYPE() const override { return d_TYPE; }
std::vector<T> TABLE() const override { return d_TABLE; }
void set_O(int O) override;
void set_D(int D) override;
void set_TYPE(digital::trellis_metric_type_t type) override;
void set_TABLE(const std::vector<T>& table) override;
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 /* METRICS_IMPL_H */