Package it.unimi.dsi.webgraph.scratch
Class DynamicDAG.DAGNode<K>
- java.lang.Object
-
- it.unimi.dsi.webgraph.scratch.DynamicDAG.DAGNode<K>
-
- Enclosing class:
- DynamicDAG<K>
public static class DynamicDAG.DAGNode<K> extends java.lang.Object
The type of a DAG node.
-
-
Field Summary
Fields Modifier and Type Field Description K
content
The node content.java.util.ArrayList<DynamicOrderedList.DOLNode<DynamicDAG.DAGNode<K>>>
successors
The node successors (that must be already part of the topological order).
-
Constructor Summary
Constructors Constructor Description DAGNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
content
public K content
The node content.
-
successors
public java.util.ArrayList<DynamicOrderedList.DOLNode<DynamicDAG.DAGNode<K>>> successors
The node successors (that must be already part of the topological order).
-
-