public class ViterbiPoint extends Object
Constructor and Description |
---|
ViterbiPoint(Target target)
Creates a ViterbiPoint for the given target.
|
Modifier and Type | Method and Description |
---|---|
List<ViterbiCandidate> |
getCandidates()
Gets the candidates of this point
|
ViterbiPoint |
getNext()
Gets the next point in the queue
|
List<ViterbiPath> |
getPaths()
Gets the sorted set containting the paths of the candidates of this point, sorted by score.
|
Target |
getTarget()
Gets the target of this point
|
void |
setCandidates(ArrayList<ViterbiCandidate> candidates)
Sets the candidates of this point
|
void |
setNext(ViterbiPoint next)
Sets the next point in the queue
|
void |
setTarget(Target target)
Sets the target of this point
|
String |
toString() |
public ViterbiPoint(Target target)
target
- the target of interestpublic Target getTarget()
public void setTarget(Target target)
target
- the new targetpublic List<ViterbiCandidate> getCandidates()
public void setCandidates(ArrayList<ViterbiCandidate> candidates)
candidates
- the candidatespublic List<ViterbiPath> getPaths()
public ViterbiPoint getNext()
public void setNext(ViterbiPoint next)
next
- the next pointCopyright © 2000–2016 DFKI GmbH. All rights reserved.