23 #ifndef INCLUDED_TRELLIS_SISO_COMBINED_F_H 24 #define INCLUDED_TRELLIS_SISO_COMBINED_F_H 43 typedef boost::shared_ptr<siso_combined_f>
sptr;
45 static sptr make(
const fsm &FSM,
int K,
47 bool POSTI,
bool POSTO,
50 const std::vector<float> &TABLE,
53 virtual fsm FSM()
const = 0;
54 virtual int K()
const = 0;
55 virtual int S0()
const = 0;
56 virtual int SK()
const = 0;
57 virtual bool POSTI()
const = 0;
58 virtual bool POSTO()
const = 0;
60 virtual int D()
const = 0;
61 virtual std::vector<float> TABLE()
const = 0;
64 virtual void set_FSM(
const fsm &FSM) =0;
65 virtual void set_K(
int K) =0;
66 virtual void set_S0(
int S0) =0;
67 virtual void set_SK(
int SK) =0;
68 virtual void set_POSTI(
bool POSTI) =0;
69 virtual void set_POSTO(
bool POSTO) =0;
71 virtual void set_D(
int D) =0;
72 virtual void set_TABLE(
const std::vector<float> &table) =0;
trellis_metric_type_t
Definition: metric_type.h:29
Include this header to use the message passing features.
Definition: logger.h:695
Definition: siso_combined_f.h:39
#define TRELLIS_API
Definition: gr-trellis/include/gnuradio/trellis/api.h:30
The abstract base class for all 'terminal' processing blocks.A signal processing flow is constructed ...
Definition: block.h:65
Finite State Machine Specification class.
Definition: fsm.h:43
siso_type_t
Definition: siso_type.h:29
boost::shared_ptr< siso_combined_f > sptr
Definition: siso_combined_f.h:43