-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathEdmondsKarp_Tests.cs
103 lines (79 loc) · 2.84 KB
/
EdmondsKarp_Tests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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
95
96
97
98
99
100
101
102
103
using Advanced.Algorithms.DataStructures.Graph.AdjacencyList;
using Advanced.Algorithms.Graph;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Advanced.Algorithms.Tests.Graph
{
[TestClass]
public class EdmondKarpTests
{
/// <summary>
/// EdmondKarp Max Flow test
/// </summary>
[TestMethod]
public void EdmondKarp_AdjacencyListGraph_Smoke_Test()
{
var graph = new WeightedDiGraph<char, int>();
graph.AddVertex('S');
graph.AddVertex('A');
graph.AddVertex('B');
graph.AddVertex('C');
graph.AddVertex('D');
graph.AddVertex('T');
graph.AddEdge('S', 'A', 10);
graph.AddEdge('S', 'C', 10);
graph.AddEdge('A', 'B', 4);
graph.AddEdge('A', 'C', 2);
graph.AddEdge('A', 'D', 8);
graph.AddEdge('B', 'T', 10);
graph.AddEdge('C', 'D', 9);
graph.AddEdge('D', 'B', 6);
graph.AddEdge('D', 'T', 10);
var algorithm = new EdmondKarpMaxFlow<char, int>(new EdmondKarpOperators());
var result = algorithm.ComputeMaxFlow(graph, 'S', 'T');
Assert.AreEqual(result, 19);
}
/// <summary>
/// EdmondKarp Max Flow test
/// </summary>
[TestMethod]
public void EdmondKarp_AdjacencyMatrixGraph_Smoke_Test()
{
var graph = new Algorithms.DataStructures.Graph.AdjacencyMatrix.WeightedDiGraph<char, int>();
graph.AddVertex('S');
graph.AddVertex('A');
graph.AddVertex('B');
graph.AddVertex('C');
graph.AddVertex('D');
graph.AddVertex('T');
graph.AddEdge('S', 'A', 10);
graph.AddEdge('S', 'C', 10);
graph.AddEdge('A', 'B', 4);
graph.AddEdge('A', 'C', 2);
graph.AddEdge('A', 'D', 8);
graph.AddEdge('B', 'T', 10);
graph.AddEdge('C', 'D', 9);
graph.AddEdge('D', 'B', 6);
graph.AddEdge('D', 'T', 10);
var algorithm = new EdmondKarpMaxFlow<char, int>(new EdmondKarpOperators());
var result = algorithm.ComputeMaxFlow(graph, 'S', 'T');
Assert.AreEqual(result, 19);
}
/// <summary>
/// operators for generics
/// implemented for int type for edge weights
/// </summary>
public class EdmondKarpOperators : IFlowOperators<int>
{
public int AddWeights(int a, int b)
{
return checked(a + b);
}
public int DefaultWeight => 0;
public int MaxWeight => int.MaxValue;
public int SubstractWeights(int a, int b)
{
return checked(a - b);
}
}
}
}