using System; using System.Collections.Generic; namespace JiebaNet.Segmenter.FinalSeg { /// /// 在词典切分之后,使用此接口进行切分,默认实现为HMM方法。 /// public interface IFinalSeg { IEnumerable Cut(string sentence); } }