matching.h
1 /* Copyright (C) 2012-2020 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
16 #ifndef HELIB_MATCHING_H
17 #define HELIB_MATCHING_H
18 
19 #include <unordered_map>
20 #include <helib/NumbTh.h>
21 
22 namespace helib {
23 
25 class FlowEdge
26 {
27 public:
28  long capacity, flow;
29  explicit FlowEdge(long c = 0, long f = 0)
30  {
31  capacity = c;
32  flow = f;
33  }
34 };
35 
36 typedef std::unordered_map<long, FlowEdge> FNeighborList;
37 // FNeighborList[i]=edge-to-node-i
38 
39 typedef std::vector<FNeighborList> FlowGraph;
40 // FlowGraph[i][j] is the edge i->j
41 
42 long maximum_flow(FlowGraph& fg, long src, long sink);
43 // Use the Edmonds-Karp max-flow algorithm
44 
48 {
49 public:
50  long from, to;
51  long label;
52  long color;
53  LabeledEdge(long f, long t, long l = 0, long c = 0)
54  {
55  from = f;
56  to = t;
57  label = l;
58  color = c;
59  }
60 };
61 
62 typedef std::unordered_multimap<long, LabeledEdge> LNeighborList;
63 
67 {
68 public:
69  long name;
70  long label; // We don't really use the label, but why not..
72  explicit LabeledVertex(long n, long l = 0) { name = n, label = l; }
73 
74  void addEdge(long nn, long l = 0, long c = 0)
75  { // allow parallel edges
76  neighbors.insert(
77  std::pair<long, LabeledEdge>(nn, LabeledEdge(name, nn, l, c)));
78  }
79  void addNeighbor(long nn, long l = 0, long c = 0)
80  { // dont insert a parallel edge
81  if (neighbors.count(nn) == 0)
82  neighbors.insert(
83  std::pair<long, LabeledEdge>(nn, LabeledEdge(name, nn, l, c)));
84  }
85 };
86 
89 {
90  // Construct a flow graph corresponding to this bipartite graph
91  void buildFlowGraph(FlowGraph& fg);
92 
93 public:
94  std::vector<LabeledVertex> left; // the right side is implicit
95 
96  void addEdge(long from, long to, long label, long color = 0)
97  {
98  for (long sz = left.size(); sz <= from; sz++) // insert nodes if needed
99  left.push_back(LabeledVertex(sz));
100  left.at(from).addEdge(to, label, color); // insert the edge itself
101  }
102 
103  // Partition the graph into maximum matchings, color by i=1,2,3,...
104  // the edges of the i'th matching.
105  void partitionToMatchings();
106  void printout();
107 };
108 
109 } // namespace helib
110 
111 #endif // ifndef HELIB_MATCHING_H
An edge in a flow graph.
Definition: matching.h:26
std::vector< FNeighborList > FlowGraph
Definition: matching.h:39
long maximum_flow(FlowGraph &fg, long src, long sink)
Definition: matching.cpp:177
void addNeighbor(long nn, long l=0, long c=0)
Definition: matching.h:79
std::unordered_multimap< long, LabeledEdge > LNeighborList
Definition: matching.h:62
long to
Definition: matching.h:50
void partitionToMatchings()
Definition: matching.cpp:53
long label
Definition: matching.h:70
void addEdge(long from, long to, long label, long color=0)
Definition: matching.h:96
LabeledEdge(long f, long t, long l=0, long c=0)
Definition: matching.h:53
FlowEdge(long c=0, long f=0)
Definition: matching.h:29
LNeighborList neighbors
Definition: matching.h:71
std::unordered_map< long, FlowEdge > FNeighborList
Definition: matching.h:36
long flow
Definition: matching.h:28
long name
Definition: matching.h:69
long color
Definition: matching.h:52
Definition: apiAttributes.h:21
long from
Definition: matching.h:50
LabeledVertex(long n, long l=0)
Definition: matching.h:72
void addEdge(long nn, long l=0, long c=0)
Definition: matching.h:74
long label
Definition: matching.h:51
A generic node in a graph with some labels.
Definition: matching.h:67
A generic directed edge in a graph with some labels.
Definition: matching.h:48
long capacity
Definition: matching.h:28
void printout()
Definition: matching.cpp:37
std::vector< LabeledVertex > left
Definition: matching.h:94
A bipartite flow graph.
Definition: matching.h:89