Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NodeVisitState (0.05 sec)

  1. android/guava/src/com/google/common/graph/Graphs.java

          if (top.remainingSuccessors == null) {
            NodeVisitState state = visitedNodes.get(node);
            if (state == NodeVisitState.COMPLETE) {
              stack.removeLast();
              continue;
            }
            if (state == NodeVisitState.PENDING) {
              return true;
            }
    
            visitedNodes.put(node, NodeVisitState.PENDING);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/Graphs.java

          if (top.remainingSuccessors == null) {
            NodeVisitState state = visitedNodes.get(node);
            if (state == NodeVisitState.COMPLETE) {
              stack.removeLast();
              continue;
            }
            if (state == NodeVisitState.PENDING) {
              return true;
            }
    
            visitedNodes.put(node, NodeVisitState.PENDING);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 23.3K bytes
    - Viewed (0)
Back to top