- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for AbstractNetwork (0.09 seconds)
-
android/guava/src/com/google/common/graph/AbstractNetwork.java
* @param <E> Edge parameter type * @since 20.0 */ public abstract class AbstractNetwork<N, E> implements Network<N, E> { /** Constructor for use by subclasses. */ public AbstractNetwork() {} @Override public Graph<N> asGraph() { return new AbstractGraph<N>() { @Override public Set<N> nodes() { return AbstractNetwork.this.nodes(); } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 11 01:10:31 GMT 2026 - 10K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/AbstractBaseGraph.java
N nodeV = endpoints.nodeV(); return nodes().contains(nodeU) && successors(nodeU).contains(nodeV); } @Override public Network<N, EndpointPair<N>> asNetwork() { return new AbstractNetwork<N, EndpointPair<N>>() { @Override public Set<N> nodes() { return AbstractBaseGraph.this.nodes(); } @Override public Set<EndpointPair<N>> edges() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Oct 07 15:57:03 GMT 2025 - 11.5K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/StandardNetwork.java
* * @author James Sexton * @author Joshua O'Madadhain * @author Omar Darwish * @param <N> Node parameter type * @param <E> Edge parameter type */ class StandardNetwork<N, E> extends AbstractNetwork<N, E> { private final boolean isDirected; private final boolean allowsParallelEdges; private final boolean allowsSelfLoops; private final ElementOrder<N> nodeOrder; private final ElementOrder<E> edgeOrder;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Apr 02 14:49:41 GMT 2026 - 6.9K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/Network.java
* the order in which they are iterated over, are irrelevant. * * <p>A reference implementation of this is provided by {@link AbstractNetwork#equals(Object)}. */ @Override boolean equals(@Nullable Object object); /** * Returns the hash code for this network. The hash code of a network is defined as the hash codeCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 11 01:10:31 GMT 2026 - 17.6K bytes - Click Count (0)