org.apache.lucene.util.automaton.Operations.getLiveStates()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(2.8k)|赞(0)|评价(0)|浏览(125)

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

Operations.getLiveStates介绍

[英]Returns the set of live states. A state is "live" if an accept state is reachable from it and if it is reachable from the initial state.
[中]返回活动状态集。如果接受状态可以从它访问,并且可以从初始状态访问,则该状态为“活动”。

代码示例

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

  1. /** Returns true if this automaton has any states that cannot
  2. * be reached from the initial state or cannot reach an accept state.
  3. * Cost is O(numTransitions+numStates). */
  4. public static boolean hasDeadStates(Automaton a) {
  5. BitSet liveStates = getLiveStates(a);
  6. int numLive = liveStates.cardinality();
  7. int numStates = a.getNumStates();
  8. assert numLive <= numStates: "numLive=" + numLive + " numStates=" + numStates + " " + liveStates;
  9. return numLive < numStates;
  10. }

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

  1. BitSet liveSet = getLiveStates(a);

代码示例来源:origin: org.infinispan/infinispan-embedded-query

  1. /** Returns true if this automaton has any states that cannot
  2. * be reached from the initial state or cannot reach an accept state.
  3. * Cost is O(numTransitions+numStates). */
  4. public static boolean hasDeadStates(Automaton a) {
  5. BitSet liveStates = getLiveStates(a);
  6. int numLive = liveStates.cardinality();
  7. int numStates = a.getNumStates();
  8. assert numLive <= numStates: "numLive=" + numLive + " numStates=" + numStates + " " + liveStates;
  9. return numLive < numStates;
  10. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.lucene

  1. /** Returns true if this automaton has any states that cannot
  2. * be reached from the initial state or cannot reach an accept state.
  3. * Cost is O(numTransitions+numStates). */
  4. public static boolean hasDeadStates(Automaton a) {
  5. BitSet liveStates = getLiveStates(a);
  6. int numLive = liveStates.cardinality();
  7. int numStates = a.getNumStates();
  8. assert numLive <= numStates: "numLive=" + numLive + " numStates=" + numStates + " " + liveStates;
  9. return numLive < numStates;
  10. }

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

  1. /** Returns true if this automaton has any states that cannot
  2. * be reached from the initial state or cannot reach an accept state.
  3. * Cost is O(numTransitions+numStates). */
  4. public static boolean hasDeadStates(Automaton a) {
  5. BitSet liveStates = getLiveStates(a);
  6. int numLive = liveStates.cardinality();
  7. int numStates = a.getNumStates();
  8. assert numLive <= numStates: "numLive=" + numLive + " numStates=" + numStates + " " + liveStates;
  9. return numLive < numStates;
  10. }

代码示例来源:origin: org.infinispan/infinispan-embedded-query

  1. BitSet liveSet = getLiveStates(a);

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.lucene

  1. BitSet liveSet = getLiveStates(a);

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

  1. BitSet liveSet = getLiveStates(a);

相关文章