mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2026-05-04 12:41:26 +00:00
Merge branch 'next' of https://github.com/carlesfernandez/gnss-sdr into osnma
This commit is contained in:
@@ -423,9 +423,10 @@ int Viterbi_Decoder_Sbas::parity_counter(int symbol, int length)
|
||||
|
||||
|
||||
// prev helper class
|
||||
Viterbi_Decoder_Sbas::Prev::Prev(int states, int t) : num_states(states),
|
||||
t(t),
|
||||
refcount(1)
|
||||
Viterbi_Decoder_Sbas::Prev::Prev(int states,
|
||||
int tt) : num_states(states),
|
||||
t(tt),
|
||||
refcount(1)
|
||||
{
|
||||
state = std::vector<int>(num_states);
|
||||
v_bit = std::vector<int>(num_states);
|
||||
|
||||
@@ -56,7 +56,7 @@ private:
|
||||
{
|
||||
public:
|
||||
int num_states;
|
||||
Prev(int states, int t);
|
||||
Prev(int states, int tt);
|
||||
Prev(const Prev& prev);
|
||||
Prev& operator=(const Prev& other);
|
||||
~Prev();
|
||||
|
||||
Reference in New Issue
Block a user