org.apache.lucene.util.fst.Util.readCeilArc()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(164)

本文整理了Java中org.apache.lucene.util.fst.Util.readCeilArc()方法的一些代码示例,展示了Util.readCeilArc()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.readCeilArc()方法的具体详情如下:
包路径:org.apache.lucene.util.fst.Util
类名称:Util
方法名:readCeilArc

Util.readCeilArc介绍

[英]Reads the first arc greater or equal that the given label into the provided arc in place and returns it iff found, otherwise return null.
[中]将大于或等于给定标签的第一个圆弧读入提供的圆弧中,并在找到时返回,否则返回[$0$]。

代码示例

代码示例来源:origin: org.apache.lucene/lucene-codecs

/** Load frame for target arc(node) on fst, so that 
 *  arc.label >= label and !fsa.reject(arc.label) */
Frame loadCeilFrame(int label, Frame top, Frame frame) throws IOException {
 FST.Arc<Long> arc = frame.arc;
 arc = Util.readCeilArc(label, fst, top.arc, arc, fstReader);
 if (arc == null) {
  return null;
 }
 frame.state = fsa.step(top.state, arc.label);
 //if (TEST) System.out.println(" loadCeil frame="+frame);
 if (frame.state == -1) {
  return loadNextFrame(top, frame);
 }
 return frame;
}

代码示例来源:origin: org.apache.lucene/lucene-codecs

/** Load frame for target arc(node) on fst, so that 
 *  arc.label &gt;= label and !fsa.reject(arc.label) */
Frame loadCeilFrame(int label, Frame top, Frame frame) throws IOException {
 FST.Arc<FSTTermOutputs.TermData> arc = frame.fstArc;
 arc = Util.readCeilArc(label, fst, top.fstArc, arc, fstReader);
 if (arc == null) {
  return null;
 }
 frame.fsaState = fsa.step(top.fsaState, arc.label);
 //if (TEST) System.out.println(" loadCeil frame="+frame);
 if (frame.fsaState == -1) {
  return loadNextFrame(top, frame);
 }
 return frame;
}

代码示例来源:origin: harbby/presto-connectors

FST.Arc<T> nextArc = Util.readCeilArc(min, fst, path.fstNode,
  scratchArc, fstReader);
while (nextArc != null && nextArc.label <= max) {

相关文章