graph_op.h 3.31 KB
Newer Older
1
2
3
4
5
/*!
 *  Copyright (c) 2018 by Contributors
 * \file dgl/graph_op.h
 * \brief Operations on graph index.
 */
Minjie Wang's avatar
Minjie Wang committed
6
7
8
#ifndef DGL_GRAPH_OP_H_
#define DGL_GRAPH_OP_H_

9
#include <vector>
Minjie Wang's avatar
Minjie Wang committed
10
11
12
13
14
15
#include "graph.h"

namespace dgl {

class GraphOp {
 public:
16
17
  /*!
   * \brief Return the line graph.
Minjie Wang's avatar
Minjie Wang committed
18
19
20
21
22
   *
   * If i~j and j~i are two edges in original graph G, then
   * (i,j)~(j,i) and (j,i)~(i,j) are the "backtracking" edges on
   * the line graph.
   *
23
   * \param graph The input graph.
Minjie Wang's avatar
Minjie Wang committed
24
   * \param backtracking Whether the backtracking edges are included or not
25
26
   * \return the line graph
   */
Minjie Wang's avatar
Minjie Wang committed
27
  static Graph LineGraph(const Graph* graph, bool backtracking);
GaiYu0's avatar
GaiYu0 committed
28

Minjie Wang's avatar
Minjie Wang committed
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  /*!
   * \brief Return a disjoint union of the input graphs.
   *
   * The new graph will include all the nodes/edges in the given graphs.
   * Nodes/Edges will be relabled by adding the cumsum of the previous graph sizes
   * in the given sequence order. For example, giving input [g1, g2, g3], where
   * they have 5, 6, 7 nodes respectively. Then node#2 of g2 will become node#7
   * in the result graph. Edge ids are re-assigned similarly.
   *
   * \param graphs A list of input graphs to be unioned.
   * \return the disjoint union of the graphs
   */
  static Graph DisjointUnion(std::vector<const Graph*> graphs);

  /*!
   * \brief Partition the graph into several subgraphs.
   *
Minjie Wang's avatar
Minjie Wang committed
46
47
   * This is a reverse operation of DisjointUnion. The graph will be partitioned
   * into num graphs. This requires the given number of partitions to evenly
Minjie Wang's avatar
Minjie Wang committed
48
49
   * divides the number of nodes in the graph.
   * 
Minjie Wang's avatar
Minjie Wang committed
50
   * \param graph The graph to be partitioned.
Minjie Wang's avatar
Minjie Wang committed
51
52
53
   * \param num The number of partitions.
   * \return a list of partitioned graphs
   */
Minjie Wang's avatar
Minjie Wang committed
54
55
56
57
58
59
60
61
62
63
64
65
66
67
  static std::vector<Graph> DisjointPartitionByNum(const Graph* graph, int64_t num);

  /*!
   * \brief Partition the graph into several subgraphs.
   *
   * This is a reverse operation of DisjointUnion. The graph will be partitioned
   * based on the given sizes. This requires the sum of the given sizes is equal
   * to the number of nodes in the graph.
   * 
   * \param graph The graph to be partitioned.
   * \param sizes The number of partitions.
   * \return a list of partitioned graphs
   */
  static std::vector<Graph> DisjointPartitionBySizes(const Graph* graph, IdArray sizes);
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94

  /*!
   * \brief Map vids in the parent graph to the vids in the subgraph.
   *
   * \param parent_vid_map An array that maps the vids in the parent graph to the
   * subgraph. The elements store the vertex Ids in the parent graph, and the
   * indices indicate the vertex Ids in the subgraph.
   * \param query The vertex Ids in the parent graph.
   * \return an Id array that contains the subgraph node Ids.
   */
  static IdArray MapParentIdToSubgraphId(IdArray parent_vid_map, IdArray query);

  /*!
   * \brief Expand an Id array based on the offset array.
   *
   * For example,
   * ids:     [0, 1, 2, 3, 4],
   * offset:  [0, 2, 2, 5, 6, 7],
   * result:  [0, 0, 2, 2, 2, 3, 4].
   * The offset array has one more element than the ids array.
   * (offset[i], offset[i+1]) shows the location of ids[i] in the result array.
   *
   * \param ids An array that contains the node or edge Ids.
   * \param offset An array that contains the offset after expansion.
   * \return a expanded Id array.
   */
  static IdArray ExpandIds(IdArray ids, IdArray offset);
Minjie Wang's avatar
Minjie Wang committed
95
96
97
98
99
};

}  // namespace dgl

#endif  // DGL_GRAPH_OP_H_