Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for UndirectedGraphConnections (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

      }
    
      private GraphConnections<N, V> newConnections() {
        return isDirected()
            ? DirectedGraphConnections.<N, V>of(incidentEdgeOrder)
            : UndirectedGraphConnections.<N, V>of(incidentEdgeOrder);
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 6.3K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/graph/ImmutableGraph.java

            (Function<N, Presence>) Functions.constant(Presence.EDGE_EXISTS);
        return graph.isDirected()
            ? DirectedGraphConnections.ofImmutable(node, graph.incidentEdges(node), edgeValueFn)
            : UndirectedGraphConnections.ofImmutable(
                Maps.asMap(graph.adjacentNodes(node), edgeValueFn));
      }
    
      @Override
      BaseGraph<N> delegate() {
        return backingGraph;
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 7.2K bytes
    - Click Count (0)
Back to Top