mirror of
				https://github.com/RangeNetworks/openbts.git
				synced 2025-10-31 03:43:33 +00:00 
			
		
		
		
	git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2307 19bc5d8c-e614-43d4-8b26-e1612bc8e597
		
			
				
	
	
		
			16 lines
		
	
	
		
			903 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			903 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| Basic model:
 | |
| 
 | |
| Have channel H = {h_0, h_1, ..., h_{K-1}}.
 | |
| Have received sequence Y = {y_0, ..., y_{K+N}}.
 | |
| Have transmitted sequence X = {x_0, ..., x_{N-1}}.
 | |
| Denote state S_n = {x_n, x_{n-1}, ..., x_{n-L}}.
 | |
| 
 | |
| Define a bag as an unordered collection with two operations, add and take.
 | |
| We have three bags:
 | |
|    S: a bag of survivors.
 | |
|    F: a bag of available data structures.
 | |
| 
 | |
| At time n, start with a non-empty bag S of survivors from time n-1.
 | |
| Take 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.
 | |
| Once 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.
 |