예제 #1
0
 /**
  * 生成线程安全的终止节点
  * @return
  */
 public static Vertex newE()
 {
     return(new Vertex(Predefine.TAG_END, " ", new CoreDictionary.Attribute(Nature.end, Predefine.MAX_FREQUENCY / 10), CoreDictionary.getWordID(Predefine.TAG_END)));
 }
예제 #2
0
 /**
  * 生成线程安全的起始节点
  * @return
  */
 public static Vertex newB()
 {
     return(new Vertex(Predefine.TAG_BIGIN, " ", new CoreDictionary.Attribute(Nature.begin, Predefine.MAX_FREQUENCY / 10), CoreDictionary.getWordID(Predefine.TAG_BIGIN)));
 }