bpp-core3
3.0.0
|
#include <Bpp/Graph/TreeGraph.h>
Public Types | |
typedef unsigned int | NodeId |
typedef unsigned int | EdgeId |
Public Member Functions | |
virtual bool | isValid () const =0 |
virtual Graph::NodeId | getFatherOfNode (Graph::NodeId nodeid) const =0 |
virtual Graph::EdgeId | getEdgeToFather (Graph::NodeId node) const =0 |
virtual bool | hasFather (Graph::NodeId node) const =0 |
virtual bool | isLeaf (Graph::NodeId node) const =0 |
virtual std::vector< Graph::NodeId > | getLeavesUnderNode (Graph::NodeId node) const =0 |
virtual std::vector< Graph::NodeId > | getSons (Graph::NodeId node) const =0 |
virtual std::vector< Graph::EdgeId > | getBranches (Graph::NodeId node) const =0 |
virtual std::unique_ptr< Graph::NodeIterator > | sonsIterator (Graph::NodeId node)=0 |
virtual std::unique_ptr< Graph::NodeIterator > | sonsIterator (Graph::NodeId node) const =0 |
virtual std::unique_ptr< Graph::EdgeIterator > | branchesIterator (Graph::NodeId node)=0 |
virtual std::unique_ptr< Graph::EdgeIterator > | branchesIterator (Graph::NodeId node) const =0 |
virtual size_t | getNumberOfSons (Graph::NodeId node) const =0 |
Get the number of sons node. More... | |
virtual void | setFather (Graph::NodeId node, Graph::NodeId fatherNode)=0 |
virtual void | setFather (Graph::NodeId node, Graph::NodeId fatherNode, Graph::EdgeId edgeId)=0 |
virtual void | addSon (Graph::NodeId node, Graph::NodeId sonNode)=0 |
virtual void | addSon (Graph::NodeId node, Graph::NodeId sonNode, Graph::EdgeId edgeId)=0 |
std::vector< Graph::NodeId > | removeSons (Graph::NodeId node) |
virtual void | removeSon (Graph::NodeId node, Graph::NodeId son)=0 |
virtual void | rootAt (Graph::NodeId newRoot)=0 |
virtual void | unRoot (bool joinRootSons)=0 |
virtual void | setOutGroup (Graph::NodeId newOutGroup)=0 |
virtual std::vector< Graph::NodeId > | getSubtreeNodes (Graph::NodeId localRoot) const =0 |
virtual std::vector< Graph::EdgeId > | getSubtreeEdges (Graph::NodeId localRoot) const =0 |
virtual std::vector< Graph::NodeId > | getNodePathBetweenTwoNodes (Graph::NodeId nodeA, Graph::NodeId nodeB, bool includeAncestor=true) const =0 |
virtual std::vector< Graph::EdgeId > | getEdgePathBetweenTwoNodes (Graph::NodeId nodeA, Graph::NodeId nodeB) const =0 |
virtual Graph::NodeId | MRCA (const std::vector< Graph::NodeId > &nodes) const =0 |
virtual NodeId | getRoot () const =0 |
virtual void | makeDirected ()=0 |
virtual void | makeUndirected ()=0 |
Observers Management | |
Managing communication with the observers: subscribe, unsubscribe. | |
virtual void | registerObserver (GraphObserver *observer)=0 |
virtual void | unregisterObserver (GraphObserver *observer)=0 |
Iterator interface on Nodes | |
virtual std::unique_ptr< NodeIterator > | allNodesIterator ()=0 |
virtual std::unique_ptr< NodeIterator > | allNodesIterator () const =0 |
virtual std::unique_ptr< NodeIterator > | outgoingNeighborNodesIterator (NodeId node)=0 |
virtual std::unique_ptr< NodeIterator > | incomingNeighborNodesIterator (NodeId node)=0 |
virtual size_t | getNumberOfNodes () const =0 |
virtual size_t | getNumberOfEdges () const =0 |
virtual size_t | getDegree (NodeId node) const =0 |
virtual size_t | getNumberOfNeighbors (NodeId node) const =0 |
virtual size_t | getNumberOfOutgoingNeighbors (NodeId node) const =0 |
virtual size_t | getNumberOfIncomingNeighbors (const NodeId node) const =0 |
virtual std::vector< NodeId > | getNeighbors (const NodeId node) const =0 |
virtual std::vector< NodeId > | getOutgoingNeighbors (const NodeId node) const =0 |
virtual std::vector< NodeId > | getIncomingNeighbors (NodeId node) const =0 |
virtual std::vector< NodeId > | getLeavesFromNode (NodeId node, unsigned int maxDepth) const =0 |
virtual std::vector< NodeId > | getAllLeaves () const =0 |
virtual std::set< NodeId > | getSetOfAllLeaves () const =0 |
virtual std::vector< NodeId > | getAllInnerNodes () const =0 |
virtual std::vector< NodeId > | getAllNodes () const =0 |
virtual std::pair< NodeId, NodeId > | getNodes (EdgeId edge) const =0 |
virtual NodeId | getTop (EdgeId edge) const =0 |
virtual NodeId | getBottom (EdgeId edge) const =0 |
virtual std::unique_ptr< EdgeIterator > | allEdgesIterator ()=0 |
virtual std::unique_ptr< EdgeIterator > | outgoingEdgesIterator (NodeId node)=0 |
virtual std::unique_ptr< EdgeIterator > | incomingEdgesIterator (NodeId node)=0 |
virtual std::vector< EdgeId > | getEdges (const NodeId node) const =0 |
virtual std::vector< EdgeId > | getOutgoingEdges (const NodeId node) const =0 |
virtual std::vector< EdgeId > | getIncomingEdges (NodeId node) const =0 |
virtual std::vector< EdgeId > | getAllEdges () const =0 |
virtual EdgeId | getEdge (NodeId nodeA, NodeId nodeB) const =0 |
virtual EdgeId | getAnyEdge (NodeId nodeA, NodeId nodeB) const =0 |
Topological Properties | |
These methodes check some topological properties. | |
virtual bool | isTree () const =0 |
virtual bool | isDA () const =0 |
virtual void | orientate ()=0 |
virtual bool | isDirected () const =0 |
virtual bool | containsReciprocalRelations () const =0 |
Protected Member Functions | |
virtual void | setRoot (NodeId newRoot)=0 |
Relations management | |
virtual NodeId | createNode ()=0 |
virtual NodeId | createNodeFromNode (NodeId origin)=0 |
virtual NodeId | createNodeOnEdge (NodeId edge)=0 |
virtual NodeId | createNodeFromEdge (NodeId origin)=0 |
virtual void | deleteNode (NodeId node)=0 |
virtual EdgeId | link (NodeId nodeA, NodeId nodeB)=0 |
virtual void | link (Graph::NodeId nodeA, Graph::NodeId nodeB, Graph::EdgeId edgeID)=0 |
virtual std::vector< EdgeId > | unlink (NodeId nodeA, NodeId nodeB)=0 |
Updating the changes on the observers | |
virtual void | outputToDot (std::ostream &out, const std::string &name) const =0 |
virtual void | notifyDeletedEdges (const std::vector< EdgeId > &edgesToDelete) const =0 |
virtual void | notifyDeletedNodes (const std::vector< NodeId > &nodesToDelete) const =0 |
Definition at line 19 of file TreeGraph.h.
|
inherited |
|
inherited |
|
pure virtual |
Add a son to a node in a rooted tree
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtual |
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtualinherited |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::EdgeIterator::~EdgeIterator().
|
pure virtualinherited |
Implemented in bpp::GlobalGraph.
Referenced by bpp::DAGraphImpl< GraphImpl >::isRooted().
|
pure virtualinherited |
Implemented in bpp::GlobalGraph.
|
pure virtual |
Get a iterator on the branches to sons of a node
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtual |
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtualinherited |
Does the graph contain reciprocal relations such as A->B and B->A?
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Creates an orphaned node.
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::~Graph().
Creates a node linked to new node.
origin | existing edge. In a directed graph: origin -> newNode. |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::~Graph().
Creates a node linked to an existing node.
origin | existing node. In a directed graph: origin -> newNode. |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::~Graph().
Creates new node on an existing Edge, splitting an edge0. A -> B will be A -> N -> B
edge | existing edge. |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::~Graph().
|
pure virtualinherited |
Delete one node
node | node to be deleted |
Implemented in bpp::GlobalGraph.
Referenced by bpp::TreeGraphImpl< GraphImpl >::setOutGroup(), and bpp::Graph::~Graph().
|
pure virtualinherited |
Get all edges of a graph.
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::EdgeIterator::~EdgeIterator().
|
pure virtualinherited |
Get all the inner nodes, ie, nodes with degree > 1.
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Get all leaves of a graph, ie, nodes with no son (or only one neighbor is not directet).
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Returns the Edge between two nodes, trying both directions
nodeA | any node implied in the relation |
nodeB | any other node implied in the relation |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::EdgeIterator::~EdgeIterator().
Get node located at the bottom of an edge
Implemented in bpp::GlobalGraph.
|
pure virtual |
Get the branches to the sons of a node
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtualinherited |
Get the degree of a node (ie the number of neighbors) in the graph.
node | the node one wants to count its neighbors |
Implemented in bpp::GlobalGraph.
Returns the Edge between two nodes
nodeA | if directed, origin node |
nodeB | if directed, destination node |
Implemented in bpp::GlobalGraph.
Referenced by bpp::TreeGraphImpl< GraphImpl >::setOutGroup(), and bpp::Graph::EdgeIterator::~EdgeIterator().
|
pure virtual |
Implemented in bpp::TreeGraphImpl< GraphImpl >.
Get all the edges to/from a node in the graph.
node | the node one wants to get its edges |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::EdgeIterator::~EdgeIterator().
|
pure virtual |
Get the branch leading to the father in a rooted tree
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtual |
Get the father node of a node in a rooted tree
Implemented in bpp::TreeGraphImpl< GraphImpl >.
In an directed graph, get all the edges which are coming to a node in the graph.
node | the node one wants to get its edges |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::EdgeIterator::~EdgeIterator().
|
pure virtualinherited |
In an directed graph, get all the neighbors which are coming to a node in the graph.
node | the node one wants to get its neighbors |
Implemented in bpp::GlobalGraph.
Referenced by bpp::TreeGraphImpl< GraphImpl >::getFatherOfNode(), and bpp::DAGraphImpl< GraphImpl >::getFathers().
|
pure virtualinherited |
Get the leaves of a graph, ie, nodes with only one neighbor, starting from a peculiar node.
node | the starting node |
maxDepth | the maximum number of allowed depth. |
Implemented in bpp::GlobalGraph.
|
pure virtual |
Get the leaves under a node
node | the starting node |
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtualinherited |
Get all the neighbors of a node in the graph.
node | the node one wants to get its neighbors |
Implemented in bpp::GlobalGraph.
|
pure virtual |
Implemented in bpp::TreeGraphImpl< GraphImpl >.
Get nodes located at the extremities of an edge
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Get the number of edges in the graph.
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Get the number of incoming neighbors of a node (ie the number of fathers) in the graph.
node | the node one wants to count its fathers |
Implemented in bpp::GlobalGraph.
Referenced by bpp::DAGraphImpl< GraphImpl >::removeFather().
|
pure virtualinherited |
Get the number of neighbors of a node in the graph.
node | the node one wants to count its sons |
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Get the number of nodes in the graph.
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Get the number of outgoing neighbors of a node (ie the number of sons) in the graph.
node | the node one wants to count its sons |
Implemented in bpp::GlobalGraph.
|
pure virtual |
Get the number of sons node.
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtualinherited |
In an directed graph, get all the edges which are leaving a node in the graph.
node | the node one wants to get its edges |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::EdgeIterator::~EdgeIterator().
|
pure virtualinherited |
In an directed graph, get all the neighbors which are leaving a node in the graph.
node | the node one wants to get its neighbors |
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
get the root node
Implemented in bpp::GlobalGraph.
Referenced by bpp::TreeGraphImpl< GraphImpl >::MRCA(), and bpp::Graph::~Graph().
|
pure virtualinherited |
Implemented in bpp::GlobalGraph.
|
pure virtual |
Get the sons node of a node
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtual |
Get all the branches of a subtree
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtual |
Get all the nodes of a subtree
Implemented in bpp::TreeGraphImpl< GraphImpl >.
Get node located at the top of an edge
Implemented in bpp::GlobalGraph.
|
pure virtual |
Check if node has a father
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtualinherited |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::EdgeIterator::~EdgeIterator().
|
pure virtualinherited |
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Is the graph directed acyclic?
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Is the graph directed?
Implemented in bpp::GlobalGraph.
|
pure virtual |
Says if a node is a leaf (ie has at most one neighbor).
Implements bpp::Graph.
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtualinherited |
Is the graph a tree?
Implemented in bpp::GlobalGraph.
|
pure virtual |
Is the graph a tree? A tree must be acyclic and with no isolated node.
Implemented in bpp::TreeGraphImpl< GraphImpl >.
Creates a link between two existing nodes. If directed graph: nodeA -> nodeB.
nodeA | source node (or first node if undirected) |
nodeB | target node (or second node if undirected) |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::~Graph().
|
protectedpure virtualinherited |
Sets a link between two existing nodes, using existing edge. If directed graph: nodeA -> nodeB.
nodeA | source node (or first node if undirected) |
nodeB | target node (or second node if undirected) |
edgeID | the used edge |
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Make the graph directed
Please note that the resulting directions are totaly arbritrary. One might consider to use the makeLocalRoot method.
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::~Graph().
|
pure virtualinherited |
Make the graph directed
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::~Graph().
|
pure virtual |
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
protectedpure virtualinherited |
Trigger E objects deleting on the observers
edgesToDelete | list of edges to delete |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::EdgeIterator::~EdgeIterator().
|
protectedpure virtualinherited |
Trigger N objects deleting on the observers
nodesToDelete | list of edges to delete |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::EdgeIterator::~EdgeIterator().
|
pure virtualinherited |
Orientates the graph hanging from the root
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::EdgeIterator::~EdgeIterator().
|
pure virtualinherited |
Implemented in bpp::GlobalGraph.
|
pure virtualinherited |
Output the graph in DOT format
out | a ostream where the DOT format will be output |
name | a string naming the graph |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::EdgeIterator::~EdgeIterator().
|
pure virtualinherited |
Attach a new observer to this Graph. As a subscriber, the observer will be warned of all the changes.
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::~Graph().
|
pure virtual |
Remove one son
Implemented in bpp::TreeGraphImpl< GraphImpl >.
std::vector<Graph::NodeId> bpp::TreeGraph::removeSons | ( | Graph::NodeId | node | ) |
Remove all the sons
|
pure virtual |
Re-root the tree with the new root
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtual |
set the father node of a node in a rooted tree
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtual |
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtual |
Set a node as a new outgroup in a rooted tree, will make a root between the given node and its father.
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
protectedpure virtualinherited |
set the root node to an existing node. Will not affect the topology.
newRoot | the new root |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::~Graph().
|
pure virtual |
Get a iterator on the sons node of a node
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
pure virtual |
Implemented in bpp::TreeGraphImpl< GraphImpl >.
|
protectedpure virtualinherited |
Remove all links between two existing nodes. If directed graph: nodeA -> nodeB.
nodeA | source node (or first node if undirected) |
nodeB | target node (or second node if undirected) |
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::~Graph().
|
pure virtualinherited |
Detach an observer from this Graph. The observer will not be warned of changes anymore.
Implemented in bpp::GlobalGraph.
Referenced by bpp::Graph::~Graph().
|
pure virtual |
Set the tree to its flat unrooted version. As an algorithmical convenience, a root node is kept, but it has no logical significance.
Implemented in bpp::TreeGraphImpl< GraphImpl >.