Class to copy a bipartite graph to another graph (duplicate a graph). The simplest way of using it is through the bpGraphCopy()
function.
This class not only make a copy of a bipartite graph, but it can create references and cross references between the nodes, edges and arcs of the two graphs, and it can copy maps for using with the newly created graph.
To make a copy from a graph, first an instance of BpGraphCopy should be created, then the data belongs to the graph should assigned to copy. In the end, the run()
member should be called.
The next code copies a graph with several data:
#include <lemon/core.h>
Public Member Functions | |
BpGraphCopy (const From &from, To &to) | |
Constructor of BpGraphCopy. | |
~BpGraphCopy () | |
template<typename NodeRef > | |
BpGraphCopy & | nodeRef (NodeRef &map) |
Copy the node references into the given map. | |
template<typename NodeCrossRef > | |
BpGraphCopy & | nodeCrossRef (NodeCrossRef &map) |
Copy the node cross references into the given map. | |
template<typename FromMap , typename ToMap > | |
BpGraphCopy & | nodeMap (const FromMap &map, ToMap &tmap) |
Make a copy of the given node map. | |
BpGraphCopy & | node (const Node &node, TNode &tnode) |
Make a copy of the given node. | |
template<typename RedRef > | |
BpGraphCopy & | redRef (RedRef &map) |
Copy the red node references into the given map. | |
template<typename RedCrossRef > | |
BpGraphCopy & | redCrossRef (RedCrossRef &map) |
Copy the red node cross references into the given map. | |
template<typename FromMap , typename ToMap > | |
BpGraphCopy & | redNodeMap (const FromMap &map, ToMap &tmap) |
Make a copy of the given red node map. | |
BpGraphCopy & | redNode (const RedNode &node, TRedNode &tnode) |
Make a copy of the given red node. | |
template<typename BlueRef > | |
BpGraphCopy & | blueRef (BlueRef &map) |
Copy the blue node references into the given map. | |
template<typename BlueCrossRef > | |
BpGraphCopy & | blueCrossRef (BlueCrossRef &map) |
Copy the blue node cross references into the given map. | |
template<typename FromMap , typename ToMap > | |
BpGraphCopy & | blueNodeMap (const FromMap &map, ToMap &tmap) |
Make a copy of the given blue node map. | |
BpGraphCopy & | blueNode (const BlueNode &node, TBlueNode &tnode) |
Make a copy of the given blue node. | |
template<typename ArcRef > | |
BpGraphCopy & | arcRef (ArcRef &map) |
Copy the arc references into the given map. | |
template<typename ArcCrossRef > | |
BpGraphCopy & | arcCrossRef (ArcCrossRef &map) |
Copy the arc cross references into the given map. | |
template<typename FromMap , typename ToMap > | |
BpGraphCopy & | arcMap (const FromMap &map, ToMap &tmap) |
Make a copy of the given arc map. | |
BpGraphCopy & | arc (const Arc &arc, TArc &tarc) |
Make a copy of the given arc. | |
template<typename EdgeRef > | |
BpGraphCopy & | edgeRef (EdgeRef &map) |
Copy the edge references into the given map. | |
template<typename EdgeCrossRef > | |
BpGraphCopy & | edgeCrossRef (EdgeCrossRef &map) |
Copy the edge cross references into the given map. | |
template<typename FromMap , typename ToMap > | |
BpGraphCopy & | edgeMap (const FromMap &map, ToMap &tmap) |
Make a copy of the given edge map. | |
BpGraphCopy & | edge (const Edge &edge, TEdge &tedge) |
Make a copy of the given edge. | |
void | run () |
Execute copying. | |
|
inline |
Constructor of BpGraphCopy for copying the content of the from
graph into the to
graph.
|
inline |
Destructor of BpGraphCopy.
|
inline |
This function copies the node references into the given map. The parameter should be a map, whose key type is the Node type of the source graph, while the value type is the Node type of the destination graph.
|
inline |
This function copies the node cross references (reverse references) into the given map. The parameter should be a map, whose key type is the Node type of the destination graph, while the value type is the Node type of the source graph.
|
inline |
This function makes a copy of the given node map for the newly created graph. The key type of the new map tmap
should be the Node type of the destination graph, and the key type of the original map map
should be the Node type of the source graph.
|
inline |
This function makes a copy of the given node.
|
inline |
This function copies the red node references into the given map. The parameter should be a map, whose key type is the Node type of the source graph with the red item set, while the value type is the Node type of the destination graph.
|
inline |
This function copies the red node cross references (reverse references) into the given map. The parameter should be a map, whose key type is the Node type of the destination graph with the red item set, while the value type is the Node type of the source graph.
|
inline |
This function makes a copy of the given red node map for the newly created graph. The key type of the new map tmap
should be the Node type of the destination graph with the red items, and the key type of the original map map
should be the Node type of the source graph.
|
inline |
This function makes a copy of the given red node.
|
inline |
This function copies the blue node references into the given map. The parameter should be a map, whose key type is the Node type of the source graph with the blue item set, while the value type is the Node type of the destination graph.
|
inline |
This function copies the blue node cross references (reverse references) into the given map. The parameter should be a map, whose key type is the Node type of the destination graph with the blue item set, while the value type is the Node type of the source graph.
|
inline |
This function makes a copy of the given blue node map for the newly created graph. The key type of the new map tmap
should be the Node type of the destination graph with the blue items, and the key type of the original map map
should be the Node type of the source graph.
|
inline |
This function makes a copy of the given blue node.
|
inline |
This function copies the arc references into the given map. The parameter should be a map, whose key type is the Arc type of the source graph, while the value type is the Arc type of the destination graph.
|
inline |
This function copies the arc cross references (reverse references) into the given map. The parameter should be a map, whose key type is the Arc type of the destination graph, while the value type is the Arc type of the source graph.
|
inline |
This function makes a copy of the given arc map for the newly created graph. The key type of the new map tmap
should be the Arc type of the destination graph, and the key type of the original map map
should be the Arc type of the source graph.
|
inline |
This function makes a copy of the given arc.
|
inline |
This function copies the edge references into the given map. The parameter should be a map, whose key type is the Edge type of the source graph, while the value type is the Edge type of the destination graph.
|
inline |
This function copies the edge cross references (reverse references) into the given map. The parameter should be a map, whose key type is the Edge type of the destination graph, while the value type is the Edge type of the source graph.
|
inline |
This function makes a copy of the given edge map for the newly created graph. The key type of the new map tmap
should be the Edge type of the destination graph, and the key type of the original map map
should be the Edge type of the source graph.
|
inline |
This function makes a copy of the given edge.
|
inline |
This function executes the copying of the graph along with the copying of the assigned data.