25 #ifndef INCLUDED_TRELLIS_VITERBI_COMBINED_SS_H
26 #define INCLUDED_TRELLIS_VITERBI_COMBINED_SS_H
44 typedef boost::shared_ptr<viterbi_combined_ss>
sptr;
46 static sptr make(
const fsm &FSM,
int K,
47 int S0,
int SK,
int D,
48 const std::vector<short> &TABLE,
51 virtual fsm FSM()
const = 0;
52 virtual int K()
const = 0;
53 virtual int S0()
const = 0;
54 virtual int SK()
const = 0;
55 virtual int D()
const = 0;
56 virtual std::vector<short> TABLE()
const = 0;
59 virtual void set_FSM(
const fsm &FSM) =0;
60 virtual void set_K(
int K) =0;
61 virtual void set_S0(
int S0) =0;
62 virtual void set_SK(
int SK) =0;
63 virtual void set_D(
int D) =0;
64 virtual void set_TABLE (
const std::vector<short> &table) = 0;
trellis_metric_type_t
Definition: metric_type.h:29
Definition: viterbi_combined_ss.h:40
Include this header to use the message passing features.
Definition: logger.h:131
boost::shared_ptr< viterbi_combined_ss > sptr
Definition: viterbi_combined_ss.h:44
#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:60
Finite State Machine Specification class.
Definition: fsm.h:43