Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ArchetypeGraph (0.05 sec)

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

    /**
     * A non-public interface for the methods shared between {@link Graph}, {@link ValueGraph}, and
     * {@link Network}.
     *
     * @author Joshua O'Madadhain
     * @param <N> Node parameter type
     */
    interface ArchetypeGraph<N> extends SuccessorsFunction<N>, PredecessorsFunction<N> {
      //
      // Graph-level accessors
      //
    
      /** Returns all nodes in this graph, in the order specified by {@link #nodeOrder()}. */
      Set<N> nodes();
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Nov 11 17:11:16 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/IncidentEdgeSet.java

    abstract class IncidentEdgeSet<N> extends AbstractSet<EndpointPair<N>> {
      final N node;
      final ArchetypeGraph<N> graph;
      final EdgeType edgeType;
    
      enum EdgeType {
        INCOMING, // incoming incident edges only
        OUTGOING, // outgoing incident edges only
        BOTH // both incoming and outgoing incident edges
      }
    
      IncidentEdgeSet(ArchetypeGraph<N> graph, N node, EdgeType edgeType) {
        this.graph = graph;
        this.node = node;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/IncidentEdgeSet.java

    abstract class IncidentEdgeSet<N> extends AbstractSet<EndpointPair<N>> {
      final N node;
      final ArchetypeGraph<N> graph;
      final EdgeType edgeType;
    
      enum EdgeType {
        INCOMING, // incoming incident edges only
        OUTGOING, // outgoing incident edges only
        BOTH // both incoming and outgoing incident edges
      }
    
      IncidentEdgeSet(ArchetypeGraph<N> graph, N node, EdgeType edgeType) {
        this.graph = graph;
        this.node = node;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/Network.java

     * @param <N> Node parameter type
     * @param <E> Edge parameter type
     * @since 20.0
     */
    @Beta
    @DoNotMock("Use NetworkBuilder to create a real instance")
    public interface Network<N, E> extends ArchetypeGraph<N> {
      //
      // Network-level accessors
      //
    
      /** Returns all edges in this network, in the order specified by {@link #edgeOrder()}. */
      Set<E> edges();
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 17.7K bytes
    - Viewed (0)
Back to top