File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
android/guava/src/com/google/common/graph
guava/src/com/google/common/graph Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 2424/**
2525 * An interface for <a
2626 * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data,
27- * whose edges are unique objects.
27+ * whose edges are <a
28+ * href="https://github.com/google/guava/wiki/GraphsExplained#uniqueness">unique</a> objects.
2829 *
2930 * <p>A graph is composed of a set of nodes and a set of edges connecting pairs of nodes.
3031 *
4647 * <li>graphs that do/don't allow parallel edges
4748 * <li>graphs that do/don't allow self-loops
4849 * <li>graphs whose nodes/edges are insertion-ordered, sorted, or unordered
49- * <li>graphs whose edges are unique objects
50+ * <li>graphs whose edges are <a
51+ * href="https://github.com/google/guava/wiki/GraphsExplained#uniqueness">unique</a> objects
5052 * </ul>
5153 *
5254 * <h3>Building a {@code Network}</h3>
Original file line number Diff line number Diff line change 2525/**
2626 * An interface for <a
2727 * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data,
28- * whose edges are unique objects.
28+ * whose edges are <a
29+ * href="https://github.com/google/guava/wiki/GraphsExplained#uniqueness">unique</a> objects.
2930 *
3031 * <p>A graph is composed of a set of nodes and a set of edges connecting pairs of nodes.
3132 *
4748 * <li>graphs that do/don't allow parallel edges
4849 * <li>graphs that do/don't allow self-loops
4950 * <li>graphs whose nodes/edges are insertion-ordered, sorted, or unordered
50- * <li>graphs whose edges are unique objects
51+ * <li>graphs whose edges are <a
52+ * href="https://github.com/google/guava/wiki/GraphsExplained#uniqueness">unique</a> objects
5153 * </ul>
5254 *
5355 * <h3>Building a {@code Network}</h3>
You can’t perform that action at this time.
0 commit comments