Package | Description |
---|---|
org.processmining.rootcauseanalysis.models.graph |
Modifier and Type | Method and Description |
---|---|
Node |
Graph.addNode(Node node) |
Node |
Node.clone() |
Node |
Edge.getSource() |
Node |
Edge.getTarget() |
Modifier and Type | Method and Description |
---|---|
java.util.Set<Node> |
Graph.getNodes() |
Modifier and Type | Method and Description |
---|---|
Node |
Graph.addNode(Node node) |
boolean |
Graph.ancestor(Node child,
Node parent)
Checks whether there exists an ancestry relationship between two nodes
(unidirectional).
|
java.util.Set<Edge> |
Graph.getEdges(Node node)
Returns all edges in this graph for which the specified node is either
the source or the target node.
|
java.util.Set<Edge> |
Graph.getEdges(Node node,
boolean source,
boolean target)
Returns all edges in this graph for which the specified node is either
the source of the target node, depending on the specified flags.
|
void |
Edge.setSource(Node source) |
void |
Edge.setTarget(Node target) |
Modifier and Type | Method and Description |
---|---|
void |
Graph.setNodes(java.util.Set<Node> nodes) |
Constructor and Description |
---|
Edge(Node source,
Node target) |
Edge(Node source,
Node target,
java.lang.String label) |