/// <summary>
 /// Populates the specified array with the probabilities of the last decoded sequence.  The
 /// sequence was determined based on the previous call to <code>chunk</code>.  The
 /// specified array should be at least as large as the numbe of tokens in the previous call to <code>chunk</code>.
 /// </summary>
 /// <param name="probabilities">
 /// An array used to hold the probabilities of the last decoded sequence.
 /// </param>
 public virtual void GetProbabilities(double[] probabilities)
 {
     mBestSequence.GetProbabilities(probabilities);
 }