public class BackPointer extends Object
This is used to facilitate traceback after the Viterbi computation.
Modifier and Type | Field and Description |
---|---|
BackPointer |
back
The previous backpointer (towards origin of DP matrix) in traceback.
|
double |
score
The score of this element of the DP matrix.
|
State |
state
The state with which this backpointer is associated.
|
Constructor and Description |
---|
BackPointer(State s) |
BackPointer(State state,
BackPointer back,
double score) |
public final BackPointer back
public final double score
public BackPointer(State state, BackPointer back, double score)
public BackPointer(State s)
Copyright © 2014 BioJava. All rights reserved.