Package org.biojava.bio.dp
Class BackPointer
- java.lang.Object
- 
- org.biojava.bio.dp.BackPointer
 
- 
 public class BackPointer extends Object A backpointer.This is used to facilitate traceback after the Viterbi computation. - Author:
- Matthew Pocock
 
- 
- 
Field SummaryFields Modifier and Type Field Description BackPointerbackThe previous backpointer (towards origin of DP matrix) in traceback.doublescoreThe score of this element of the DP matrix.StatestateThe state with which this backpointer is associated.
 - 
Constructor SummaryConstructors Constructor Description BackPointer(State s)BackPointer(State state, BackPointer back, double score)
 
- 
- 
- 
Field Detail- 
backpublic final BackPointer back The previous backpointer (towards origin of DP matrix) in traceback.
 - 
scorepublic final double score The score of this element of the DP matrix.
 
- 
 - 
Constructor Detail- 
BackPointerpublic BackPointer(State state, BackPointer back, double score) 
 - 
BackPointerpublic BackPointer(State s) 
 
- 
 
-