blob: 037d613c3c38eb1f569f8d1e5f5624d72854429b [file] [log] [blame]
dburgessb3a0ca42011-10-12 07:44:40 +00001Basic model:
2
3Have channel H = {h_0, h_1, ..., h_{K-1}}.
4Have received sequence Y = {y_0, ..., y_{K+N}}.
5Have transmitted sequence X = {x_0, ..., x_{N-1}}.
6Denote state S_n = {x_n, x_{n-1}, ..., x_{n-L}}.
7
8Define a bag as an unordered collection with two operations, add and take.
9We have three bags:
10 S: a bag of survivors.
11 F: a bag of available data structures.
12
13At time n, start with a non-empty bag S of survivors from time n-1.
14Take a member out of S, and create all possible branches and their corresponding metrics. If metric ratio is above T, discard branch. Otherwise, check branch against entry in pruning table P. If branch metric is smaller than the existing entry's metric in P, then replace entry with branch. Otherwise, discard branch.
15Once all possible branches of S have been created and pruned, S should be empty.Empty pruning table back into S, thus P is now empty. Repeat.