| Package | Description |
|---|---|
| graph.algorithms.connectivity |
Classes related to the planar augmentation problem.
|
| graph.tree.bc |
Classes representing a BC-tree and its elements.
|
| Modifier and Type | Method and Description |
|---|---|
BCTreeNode |
PlanarAugmentationLabel.getParent() |
| Modifier and Type | Method and Description |
|---|---|
void |
PlanarAugmentationLabel.setParent(BCTreeNode parent) |
| Constructor and Description |
|---|
PlanarAugmentationLabel(BCTreeNode parent) |
| Modifier and Type | Method and Description |
|---|---|
BCTreeNode |
BCTreeEdge.getDestination() |
BCTreeNode |
BCTreeEdge.getOrigin() |
BCTreeNode |
BCTreeNode.getParent() |
BCTreeNode |
BCTree.getRoot() |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<BCTreeNode> |
BCTree.getbVertices() |
java.util.List<BCTreeNode> |
BCTree.getcVertices() |
| Modifier and Type | Method and Description |
|---|---|
void |
BCTree.addVertex(BCTreeNode node) |
void |
BCTree.removeVertex(BCTreeNode node) |
void |
BCTreeEdge.setDestination(BCTreeNode destination) |
void |
BCTreeEdge.setOrigin(BCTreeNode origin) |
void |
BCTreeNode.setParent(BCTreeNode parent) |
void |
BCTree.setRoot(BCTreeNode root) |
| Modifier and Type | Method and Description |
|---|---|
void |
BCTree.setbVertices(java.util.List<BCTreeNode> bVertices) |
void |
BCTree.setcVertices(java.util.List<BCTreeNode> cVertices) |
| Constructor and Description |
|---|
BCTreeEdge(BCTreeNode origin,
BCTreeNode destination)
Construct a BC-tree edge with the specified origina and destination nodes
|