forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 9
/
min_cost_flow_test.cc
979 lines (893 loc) · 41.5 KB
/
min_cost_flow_test.cc
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
// Copyright 2010-2024 Google LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "ortools/graph/min_cost_flow.h"
#include <algorithm> // For max.
#include <cstdint>
#include <limits>
#include <memory>
#include <random>
#include <vector>
#include "absl/log/check.h"
#include "absl/random/distributions.h"
#include "absl/strings/str_format.h"
#include "absl/types/span.h"
#include "benchmark/benchmark.h"
#include "gtest/gtest.h"
#include "ortools/algorithms/binary_search.h"
#include "ortools/base/logging.h"
#include "ortools/graph/ebert_graph.h"
#include "ortools/graph/graph.h"
#include "ortools/graph/graphs.h"
#include "ortools/linear_solver/linear_solver.h"
namespace operations_research {
template <typename Graph>
void GenericMinCostFlowTester(
const typename Graph::NodeIndex num_nodes,
const typename Graph::ArcIndex num_arcs, const FlowQuantity* node_supply,
const typename Graph::NodeIndex* tail,
const typename Graph::NodeIndex* head, const CostValue* cost,
const FlowQuantity* capacity, const CostValue expected_flow_cost,
const FlowQuantity* expected_flow,
const typename GenericMinCostFlow<Graph>::Status expected_status) {
Graph graph(num_nodes, num_arcs);
for (int arc = 0; arc < num_arcs; ++arc) {
graph.AddArc(tail[arc], head[arc]);
}
std::vector<typename Graph::ArcIndex> permutation;
Graphs<Graph>::Build(&graph, &permutation);
EXPECT_TRUE(permutation.empty());
GenericMinCostFlow<Graph> min_cost_flow(&graph);
for (int arc = 0; arc < num_arcs; ++arc) {
min_cost_flow.SetArcUnitCost(arc, cost[arc]);
min_cost_flow.SetArcCapacity(arc, capacity[arc]);
EXPECT_EQ(min_cost_flow.UnitCost(arc), cost[arc]);
EXPECT_EQ(min_cost_flow.Capacity(arc), capacity[arc]);
}
for (int i = 0; i < num_nodes; ++i) {
min_cost_flow.SetNodeSupply(i, node_supply[i]);
EXPECT_EQ(min_cost_flow.Supply(i), node_supply[i]);
}
for (int options = 0; options < 2; ++options) {
min_cost_flow.SetUseUpdatePrices(options & 1);
bool ok = min_cost_flow.Solve();
typename GenericMinCostFlow<Graph>::Status status = min_cost_flow.status();
EXPECT_EQ(expected_status, status);
if (expected_status == GenericMinCostFlow<Graph>::OPTIMAL) {
EXPECT_TRUE(ok);
CostValue total_flow_cost = min_cost_flow.GetOptimalCost();
EXPECT_EQ(expected_flow_cost, total_flow_cost);
for (int i = 0; i < num_arcs; ++i) {
EXPECT_EQ(expected_flow[i], min_cost_flow.Flow(i)) << " i = " << i;
}
} else if (expected_status == GenericMinCostFlow<Graph>::INFEASIBLE) {
EXPECT_FALSE(ok);
for (int node = 0; node < graph.num_nodes(); ++node) {
FlowQuantity delta = min_cost_flow.InitialSupply(node) -
min_cost_flow.FeasibleSupply(node);
EXPECT_EQ(0, delta) << "at node " << node;
}
}
}
}
template <typename Graph>
class GenericMinCostFlowTest : public ::testing::Test {};
typedef ::testing::Types<StarGraph, util::ReverseArcListGraph<>,
util::ReverseArcStaticGraph<>,
util::ReverseArcMixedGraph<>>
GraphTypes;
TYPED_TEST_SUITE(GenericMinCostFlowTest, GraphTypes);
TYPED_TEST(GenericMinCostFlowTest, CapacityRange) {
// Check that we can set capacities to large numbers.
const int kNumNodes = 7;
const int kNumArcs = 12;
const FlowQuantity kNodeSupply[kNumNodes] = {20, 10, 25, -11, -13, -17, -14};
const NodeIndex kTail[kNumArcs] = {0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2};
const NodeIndex kHead[kNumArcs] = {3, 4, 5, 6, 3, 4, 5, 6, 3, 4, 5, 6};
const CostValue kCost[kNumArcs] = {1, 6, 3, 5, 7, 3, 1, 6, 9, 4, 5, 3};
// Since MinCostFlow stores node excess as a FlowQuantity, one must take care
// to check that the total flow in/out of a node is less than kint64max. To
// guarantee this here, we set kCapMax to kint64max / 4 since the maximum
// degree of a node is 4.
const int64_t kCapMax = std::numeric_limits<int64_t>::max() / 4;
const FlowQuantity kCapacity[kNumArcs] = {kCapMax, kCapMax, kCapMax, kCapMax,
kCapMax, kCapMax, kCapMax, kCapMax,
kCapMax, kCapMax, kCapMax, kCapMax};
const CostValue kExpectedFlowCost = 138;
const FlowQuantity kExpectedFlow[kNumArcs] = {11, 0, 9, 0, 0, 2,
8, 0, 0, 11, 0, 14};
GenericMinCostFlowTester<TypeParam>(
kNumNodes, kNumArcs, kNodeSupply, kTail, kHead, kCost, kCapacity,
kExpectedFlowCost, kExpectedFlow, GenericMinCostFlow<TypeParam>::OPTIMAL);
}
TYPED_TEST(GenericMinCostFlowTest, Test1) {
const int kNumNodes = 2;
const int kNumArcs = 1;
const FlowQuantity kNodeSupply[kNumNodes] = {12, -12};
const NodeIndex kTail[kNumArcs] = {0};
const NodeIndex kHead[kNumArcs] = {1};
const CostValue kCost[kNumArcs] = {10};
const FlowQuantity kCapacity[kNumArcs] = {20};
const CostValue kExpectedFlowCost = 120;
const FlowQuantity kExpectedFlow[kNumArcs] = {12};
GenericMinCostFlowTester<TypeParam>(
kNumNodes, kNumArcs, kNodeSupply, kTail, kHead, kCost, kCapacity,
kExpectedFlowCost, kExpectedFlow, GenericMinCostFlow<TypeParam>::OPTIMAL);
}
TYPED_TEST(GenericMinCostFlowTest, Test2) {
const int kNumNodes = 7;
const int kNumArcs = 12;
const FlowQuantity kNodeSupply[kNumNodes] = {20, 10, 25, -11, -13, -17, -14};
const NodeIndex kTail[kNumArcs] = {0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2};
const NodeIndex kHead[kNumArcs] = {3, 4, 5, 6, 3, 4, 5, 6, 3, 4, 5, 6};
const CostValue kCost[kNumArcs] = {1, 6, 3, 5, 7, 3, 1, 6, 9, 4, 5, 3};
const FlowQuantity kCapacity[kNumArcs] = {100, 100, 100, 100, 100, 100,
100, 100, 100, 100, 100, 100};
const CostValue kExpectedFlowCost = 138;
const FlowQuantity kExpectedFlow[kNumArcs] = {11, 0, 9, 0, 0, 2,
8, 0, 0, 11, 0, 14};
GenericMinCostFlowTester<TypeParam>(
kNumNodes, kNumArcs, kNodeSupply, kTail, kHead, kCost, kCapacity,
kExpectedFlowCost, kExpectedFlow, GenericMinCostFlow<TypeParam>::OPTIMAL);
}
TYPED_TEST(GenericMinCostFlowTest, Test3) {
const int kNumNodes = 7;
const int kNumArcs = 12;
const FlowQuantity kNodeSupply[kNumNodes] = {20, 10, 25, -11, -13, -17, -14};
const NodeIndex kTail[kNumArcs] = {0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2};
const NodeIndex kHead[kNumArcs] = {3, 4, 5, 6, 3, 4, 5, 6, 3, 4, 5, 6};
const CostValue kCost[kNumArcs] = {0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0};
const FlowQuantity kCapacity[kNumArcs] = {100, 100, 100, 100, 100, 100,
100, 100, 100, 100, 100, 100};
const CostValue kExpectedFlowCost = 0;
const FlowQuantity kExpectedFlow[kNumArcs] = {7, 13, 0, 0, 0, 0,
10, 0, 4, 0, 7, 14};
GenericMinCostFlowTester<TypeParam>(
kNumNodes, kNumArcs, kNodeSupply, kTail, kHead, kCost, kCapacity,
kExpectedFlowCost, kExpectedFlow, GenericMinCostFlow<TypeParam>::OPTIMAL);
}
TYPED_TEST(GenericMinCostFlowTest, Infeasible) {
const int kNumNodes = 6;
const int kNumArcs = 9;
const FlowQuantity kNodeSupply[kNumNodes] = {20, 0, 0, 0, 0, -20};
const FlowQuantity kNodeInfeasibility[kNumNodes] = {4, 0, 0, 0, 0, -4};
const NodeIndex kTail[kNumArcs] = {0, 0, 1, 1, 1, 2, 3, 4, 4};
const NodeIndex kHead[kNumArcs] = {1, 2, 1, 3, 4, 3, 5, 3, 5};
const CostValue kCost[kNumArcs] = {1, 6, 3, 5, 7, 3, 1, 6, 9};
const FlowQuantity kCapacity[kNumArcs] = {10, 10, 10, 6, 6, 6, 10, 10, 10};
const NodeIndex kInfeasibleSupplyNode[] = {0};
const NodeIndex kInfeasibleDemandNode[] = {5};
const NodeIndex kFeasibleSupply[] = {16};
const NodeIndex kFeasibleDemand[] = {-16};
TypeParam graph(kNumNodes, kNumArcs);
for (ArcIndex arc = 0; arc < kNumArcs; ++arc) {
graph.AddArc(kTail[arc], kHead[arc]);
}
std::vector<ArcIndex> permutation;
Graphs<TypeParam>::Build(&graph, &permutation);
EXPECT_TRUE(permutation.empty());
GenericMinCostFlow<TypeParam> min_cost_flow(&graph);
for (ArcIndex arc = 0; arc < kNumArcs; ++arc) {
min_cost_flow.SetArcUnitCost(arc, kCost[arc]);
min_cost_flow.SetArcCapacity(arc, kCapacity[arc]);
}
for (ArcIndex arc = 0; arc < kNumNodes; ++arc) {
min_cost_flow.SetNodeSupply(arc, kNodeSupply[arc]);
}
std::vector<NodeIndex> infeasible_supply_node;
std::vector<NodeIndex> infeasible_demand_node;
bool feasible = min_cost_flow.CheckFeasibility(&infeasible_supply_node,
&infeasible_demand_node);
EXPECT_FALSE(feasible);
for (int i = 0; i < infeasible_supply_node.size(); ++i) {
const NodeIndex node = infeasible_supply_node[i];
EXPECT_EQ(node, kInfeasibleSupplyNode[i]);
EXPECT_EQ(min_cost_flow.FeasibleSupply(node), kFeasibleSupply[i]);
}
for (int i = 0; i < infeasible_demand_node.size(); ++i) {
const NodeIndex node = infeasible_demand_node[i];
EXPECT_EQ(node, kInfeasibleDemandNode[i]);
EXPECT_EQ(min_cost_flow.FeasibleSupply(node), kFeasibleDemand[i]);
}
bool ok = min_cost_flow.Solve();
EXPECT_FALSE(ok);
EXPECT_EQ(GenericMinCostFlow<TypeParam>::INFEASIBLE, min_cost_flow.status());
for (NodeIndex node = 0; node < kNumNodes; ++node) {
FlowQuantity delta =
min_cost_flow.InitialSupply(node) - min_cost_flow.FeasibleSupply(node);
EXPECT_EQ(kNodeInfeasibility[node], delta);
}
EXPECT_EQ(min_cost_flow.GetOptimalCost(), 0);
min_cost_flow.MakeFeasible();
ok = min_cost_flow.Solve();
EXPECT_TRUE(ok);
EXPECT_EQ(GenericMinCostFlow<TypeParam>::OPTIMAL, min_cost_flow.status());
}
// Test on a 4x4 matrix. Example taken from
// http://www.ee.oulu.fi/~mpa/matreng/eem1_2-1.htm
TYPED_TEST(GenericMinCostFlowTest, Small4x4Matrix) {
const int kNumSources = 4;
const int kNumTargets = 4;
const CostValue kCost[kNumSources][kNumTargets] = {{90, 75, 75, 80},
{35, 85, 55, 65},
{125, 95, 90, 105},
{45, 110, 95, 115}};
const CostValue kExpectedCost = 275;
TypeParam graph(kNumSources + kNumTargets, kNumSources * kNumTargets);
for (NodeIndex source = 0; source < kNumSources; ++source) {
for (NodeIndex target = 0; target < kNumTargets; ++target) {
graph.AddArc(source, kNumSources + target);
}
}
std::vector<ArcIndex> permutation;
Graphs<TypeParam>::Build(&graph, &permutation);
EXPECT_TRUE(permutation.empty());
GenericMinCostFlow<TypeParam> min_cost_flow(&graph);
int arc = 0;
for (NodeIndex source = 0; source < kNumSources; ++source) {
for (NodeIndex target = 0; target < kNumTargets; ++target) {
min_cost_flow.SetArcUnitCost(arc, kCost[source][target]);
min_cost_flow.SetArcCapacity(arc, 1);
++arc;
}
}
for (NodeIndex source = 0; source < kNumSources; ++source) {
min_cost_flow.SetNodeSupply(source, 1);
}
for (NodeIndex target = 0; target < kNumTargets; ++target) {
min_cost_flow.SetNodeSupply(kNumSources + target, -1);
}
EXPECT_TRUE(min_cost_flow.Solve());
EXPECT_EQ(GenericMinCostFlow<TypeParam>::OPTIMAL, min_cost_flow.status());
CostValue total_flow_cost = min_cost_flow.GetOptimalCost();
EXPECT_EQ(kExpectedCost, total_flow_cost);
}
// Test that very large flow quantities do not overflow and that the total flow
// cost in cases of overflows stays capped at INT64_MAX.
TYPED_TEST(GenericMinCostFlowTest, TotalFlowCostOverflow) {
const int kNumNodes = 2;
const int kNumArcs = 1;
const FlowQuantity kNodeSupply[kNumNodes] = {1LL << 61, -1LL << 61};
const NodeIndex kTail[kNumArcs] = {0};
const NodeIndex kHead[kNumArcs] = {1};
const CostValue kCost[kNumArcs] = {10};
const FlowQuantity kCapacity[kNumArcs] = {1LL << 61};
const CostValue kExpectedFlowCost = std::numeric_limits<int64_t>::max();
const FlowQuantity kExpectedFlow[kNumArcs] = {1LL << 61};
GenericMinCostFlowTester<TypeParam>(
kNumNodes, kNumArcs, kNodeSupply, kTail, kHead, kCost, kCapacity,
kExpectedFlowCost, kExpectedFlow, GenericMinCostFlow<TypeParam>::OPTIMAL);
}
TEST(GenericMinCostFlowTest, OverflowPrevention1) {
util::ReverseArcListGraph<> graph;
const int arc = graph.AddArc(0, 1);
GenericMinCostFlow<util::ReverseArcListGraph<>> mcf(&graph);
mcf.SetArcCapacity(arc, std::numeric_limits<int64_t>::max() - 1);
mcf.SetArcUnitCost(arc, -std::numeric_limits<int64_t>::max() + 1);
mcf.SetNodeSupply(0, std::numeric_limits<int64_t>::max());
mcf.SetNodeSupply(1, -std::numeric_limits<int64_t>::max());
EXPECT_FALSE(mcf.Solve());
EXPECT_EQ(mcf.status(), MinCostFlowBase::BAD_COST_RANGE);
}
TEST(GenericMinCostFlowTest, OverflowPrevention2) {
util::ReverseArcListGraph<> graph;
const int arc = graph.AddArc(0, 0);
GenericMinCostFlow<util::ReverseArcListGraph<>> mcf(&graph);
mcf.SetArcCapacity(arc, std::numeric_limits<int64_t>::max() - 1);
mcf.SetArcUnitCost(arc, -std::numeric_limits<int64_t>::max() + 1);
EXPECT_FALSE(mcf.Solve());
EXPECT_EQ(mcf.status(), MinCostFlowBase::BAD_COST_RANGE);
}
TEST(GenericMinCostFlowTest, SelfLoop) {
util::ReverseArcListGraph<> graph;
const int arc = graph.AddArc(0, 0);
GenericMinCostFlow<util::ReverseArcListGraph<>> mcf(&graph);
const int64_t kMaxCost = std::numeric_limits<int64_t>::max();
mcf.SetArcCapacity(arc, kMaxCost - 1);
mcf.SetArcUnitCost(arc, -kMaxCost / 4);
EXPECT_TRUE(mcf.Solve());
EXPECT_EQ(mcf.status(), MinCostFlowBase::OPTIMAL);
EXPECT_EQ(mcf.GetOptimalCost(), kMaxCost); // Indicate overflow.
EXPECT_EQ(mcf.Flow(arc), kMaxCost - 1);
}
TEST(SimpleMinCostFlowTest, Empty) {
SimpleMinCostFlow min_cost_flow;
EXPECT_EQ(SimpleMinCostFlow::OPTIMAL, min_cost_flow.Solve());
EXPECT_EQ(0, min_cost_flow.NumNodes());
EXPECT_EQ(0, min_cost_flow.NumArcs());
EXPECT_EQ(0, min_cost_flow.OptimalCost());
EXPECT_EQ(0, min_cost_flow.MaximumFlow());
}
TEST(SimpleMinCostFlowTest, NegativeCost) {
SimpleMinCostFlow min_cost_flow;
min_cost_flow.AddArcWithCapacityAndUnitCost(0, 1, 10, -10);
min_cost_flow.AddArcWithCapacityAndUnitCost(1, 2, 10, -10);
min_cost_flow.SetNodeSupply(0, 8);
min_cost_flow.SetNodeSupply(2, -8);
EXPECT_EQ(SimpleMinCostFlow::OPTIMAL, min_cost_flow.Solve());
EXPECT_EQ(-160, min_cost_flow.OptimalCost());
EXPECT_EQ(8, min_cost_flow.MaximumFlow());
}
TEST(SimpleMinCostFlowTest, NegativeCostWithLoop) {
SimpleMinCostFlow min_cost_flow;
// We have a loop 0 -> 1 -> 2 -> 0 with negative cost (but capacity bounded).
min_cost_flow.AddArcWithCapacityAndUnitCost(0, 1, 10, -10);
min_cost_flow.AddArcWithCapacityAndUnitCost(1, 2, 10, -10);
min_cost_flow.AddArcWithCapacityAndUnitCost(2, 0, 10, -10);
min_cost_flow.AddArcWithCapacityAndUnitCost(0, 3, 10, -10);
min_cost_flow.SetNodeSupply(0, 8);
min_cost_flow.SetNodeSupply(3, -8);
EXPECT_EQ(SimpleMinCostFlow::OPTIMAL, min_cost_flow.Solve());
EXPECT_EQ(-300 - 80, min_cost_flow.OptimalCost());
EXPECT_EQ(8, min_cost_flow.MaximumFlow());
}
TEST(SimpleMinCostFlowTest, SelfLoop) {
SimpleMinCostFlow min_cost_flow;
min_cost_flow.AddArcWithCapacityAndUnitCost(0, 0, 10, 0);
min_cost_flow.AddArcWithCapacityAndUnitCost(0, 1, 10, 0);
min_cost_flow.AddArcWithCapacityAndUnitCost(1, 1, 10, 0);
min_cost_flow.AddArcWithCapacityAndUnitCost(1, 2, 10, 0);
min_cost_flow.AddArcWithCapacityAndUnitCost(2, 2, 10, 0);
min_cost_flow.SetNodeSupply(0, 8);
min_cost_flow.SetNodeSupply(2, -8);
EXPECT_EQ(SimpleMinCostFlow::OPTIMAL, min_cost_flow.Solve());
EXPECT_EQ(0, min_cost_flow.OptimalCost());
EXPECT_EQ(8, min_cost_flow.MaximumFlow());
EXPECT_EQ(8, min_cost_flow.Flow(1));
EXPECT_EQ(8, min_cost_flow.Flow(3));
}
TEST(SimpleMinCostFlowTest, SelfLoopWithNegativeCost) {
SimpleMinCostFlow min_cost_flow;
min_cost_flow.AddArcWithCapacityAndUnitCost(0, 0, 10, 0);
min_cost_flow.AddArcWithCapacityAndUnitCost(0, 1, 10, 0);
min_cost_flow.AddArcWithCapacityAndUnitCost(1, 1, 10, -10);
min_cost_flow.AddArcWithCapacityAndUnitCost(1, 2, 10, 0);
min_cost_flow.AddArcWithCapacityAndUnitCost(2, 2, 10, 0);
min_cost_flow.SetNodeSupply(0, 8);
min_cost_flow.SetNodeSupply(2, -8);
EXPECT_EQ(SimpleMinCostFlow::OPTIMAL, min_cost_flow.Solve());
EXPECT_EQ(-100, min_cost_flow.OptimalCost());
EXPECT_EQ(8, min_cost_flow.MaximumFlow());
EXPECT_EQ(8, min_cost_flow.Flow(1));
EXPECT_EQ(10, min_cost_flow.Flow(2));
EXPECT_EQ(8, min_cost_flow.Flow(3));
}
TEST(SimpleMinCostFlowTest, FeasibleProblem) {
const int kNumNodes = 7;
const int kNumArcs = 12;
const FlowQuantity kNodeSupply[kNumNodes] = {20, 10, 25, -11, -13, -17, -14};
const NodeIndex kTail[kNumArcs] = {0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2};
const NodeIndex kHead[kNumArcs] = {3, 4, 5, 6, 3, 4, 5, 6, 3, 4, 5, 6};
const CostValue kCost[kNumArcs] = {0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0};
const FlowQuantity kCapacity[kNumArcs] = {100, 100, 100, 100, 100, 100,
100, 100, 100, 100, 100, 100};
const CostValue kExpectedFlowCost = 0;
const CostValue kExpectedFlowVolume = 55;
const FlowQuantity kExpectedFlow[kNumArcs] = {7, 13, 0, 0, 0, 0,
10, 0, 4, 0, 7, 14};
SimpleMinCostFlow min_cost_flow;
for (NodeIndex node = 0; node < kNumNodes; ++node) {
min_cost_flow.SetNodeSupply(node, kNodeSupply[node]);
}
for (ArcIndex arc = 0; arc < kNumArcs; ++arc) {
EXPECT_EQ(arc, min_cost_flow.AddArcWithCapacityAndUnitCost(
kTail[arc], kHead[arc], kCapacity[arc], kCost[arc]));
}
SimpleMinCostFlow::Status status = min_cost_flow.Solve();
EXPECT_EQ(SimpleMinCostFlow::OPTIMAL, status);
EXPECT_EQ(kExpectedFlowCost, min_cost_flow.OptimalCost());
EXPECT_EQ(kExpectedFlowVolume, min_cost_flow.MaximumFlow());
for (ArcIndex arc = 0; arc < kNumArcs; ++arc) {
EXPECT_EQ(kExpectedFlow[arc], min_cost_flow.Flow(arc))
<< " for Arc #" << arc << ": " << kTail[arc] << "->" << kHead[arc];
}
}
TEST(SimpleMinCostFlowTest, InfeasibleProblem) {
const int kNumNodes = 7;
const int kNumArcs = 12;
const FlowQuantity kNodeSupply[kNumNodes] = {20, 10, 25, -11, -13, -17, -14};
const NodeIndex kTail[kNumArcs] = {0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2};
const NodeIndex kHead[kNumArcs] = {3, 4, 5, 6, 3, 4, 5, 6, 3, 4, 5, 6};
const CostValue kCost[kNumArcs] = {0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0};
SimpleMinCostFlow min_cost_flow;
for (NodeIndex node = 0; node < kNumNodes; ++node) {
min_cost_flow.SetNodeSupply(node, kNodeSupply[node]);
}
for (ArcIndex arc = 0; arc < kNumArcs; ++arc) {
min_cost_flow.AddArcWithCapacityAndUnitCost(kTail[arc], kHead[arc], 1.0,
kCost[arc]);
}
EXPECT_EQ(SimpleMinCostFlow::INFEASIBLE, min_cost_flow.Solve());
EXPECT_EQ(SimpleMinCostFlow::OPTIMAL,
min_cost_flow.SolveMaxFlowWithMinCost());
// There should be unit flow through all the arcs we added.
EXPECT_EQ(6, min_cost_flow.OptimalCost());
EXPECT_EQ(12, min_cost_flow.MaximumFlow());
for (ArcIndex arc = 0; arc < kNumArcs; ++arc) {
EXPECT_EQ(1, min_cost_flow.Flow(arc))
<< " for Arc #" << arc << ": " << kTail[arc] << "->" << kHead[arc];
}
}
// Create a single path graph with large arc unit cost.
// Note that the capacity does not directly influence the max usable cost.
TEST(SimpleMinCostFlowTest, OverflowCostBound) {
const int n = 100;
const int64_t kCapacity = 1'000'000;
const int64_t kint64Max = std::numeric_limits<int64_t>::max();
const int64_t safe_divisor =
BinarySearch<int64_t>(kint64Max, 1, [](int64_t divisor) {
SimpleMinCostFlow min_cost_flow;
const int64_t kMaxCost = kint64Max / divisor;
for (int i = 0; i + 1 < n; ++i) {
min_cost_flow.AddArcWithCapacityAndUnitCost(i, i + 1, kCapacity,
kMaxCost);
}
min_cost_flow.SetNodeSupply(0, kCapacity);
min_cost_flow.SetNodeSupply(n - 1, -kCapacity);
const auto status = min_cost_flow.Solve();
if (status == SimpleMinCostFlow::OPTIMAL) return true;
CHECK_EQ(status, SimpleMinCostFlow::BAD_COST_RANGE);
return false;
});
// On a single path graph, the threshold is around n ^ 2.
EXPECT_EQ(safe_divisor, 11009);
}
template <typename Graph>
void GenerateCompleteGraph(const NodeIndex num_sources,
const NodeIndex num_targets, Graph* graph) {
const NodeIndex num_nodes = num_sources + num_targets;
const ArcIndex num_arcs = num_sources * num_targets;
graph->Reserve(num_nodes, num_arcs);
for (NodeIndex source = 0; source < num_sources; ++source) {
for (NodeIndex target = 0; target < num_targets; ++target) {
graph->AddArc(source, target + num_sources);
}
}
}
template <typename Graph>
void GeneratePartialRandomGraph(const NodeIndex num_sources,
const NodeIndex num_targets,
const NodeIndex degree, Graph* graph) {
const NodeIndex num_nodes = num_sources + num_targets;
const ArcIndex num_arcs = num_sources * degree;
graph->Reserve(num_nodes, num_arcs);
std::mt19937 randomizer(12345);
for (NodeIndex source = 0; source < num_sources; ++source) {
// For each source, we create degree - 1 random arcs.
for (NodeIndex d = 0; d < degree - 1; ++d) {
NodeIndex target = absl::Uniform(randomizer, 0, num_targets);
graph->AddArc(source, target + num_sources);
}
}
// Make sure that each target has at least one corresponding source.
for (NodeIndex target = 0; target < num_targets; ++target) {
NodeIndex source = absl::Uniform(randomizer, 0, num_sources);
graph->AddArc(source, target + num_sources);
}
}
void GenerateRandomSupply(const NodeIndex num_sources,
const NodeIndex num_targets,
const NodeIndex num_generations, const int64_t range,
std::vector<int64_t>* supply) {
const NodeIndex num_nodes = num_sources + num_targets;
supply->resize(num_nodes, 0);
std::mt19937 randomizer(12345);
for (int64_t i = 0; i < num_sources * num_generations; ++i) {
FlowQuantity q = absl::Uniform(randomizer, 0, range);
int supply_index = absl::Uniform(randomizer, 0, num_sources);
int demand_index = absl::Uniform(randomizer, 0, num_targets) + num_sources;
(*supply)[supply_index] += q;
(*supply)[demand_index] -= q;
}
}
void GenerateAssignmentSupply(const NodeIndex num_sources,
const NodeIndex num_targets,
std::vector<int64_t>* supply) {
supply->resize(num_sources + num_targets);
for (int i = 0; i < num_sources; ++i) {
(*supply)[i] = 1;
}
for (int i = 0; i < num_targets; ++i) {
(*supply)[i + num_sources] = -1;
}
}
void GenerateRandomArcValuations(const ArcIndex num_arcs,
const int64_t max_range,
std::vector<int64_t>* arc_valuation) {
arc_valuation->resize(num_arcs);
std::mt19937 randomizer(12345);
for (ArcIndex arc = 0; arc < num_arcs; ++arc) {
(*arc_valuation)[arc] = absl::Uniform(randomizer, 0, max_range);
}
}
template <typename Graph>
void SetUpNetworkData(absl::Span<const ArcIndex> permutation,
absl::Span<const int64_t> supply,
absl::Span<const int64_t> arc_cost,
absl::Span<const int64_t> arc_capacity, Graph* graph,
GenericMinCostFlow<Graph>* min_cost_flow) {
for (NodeIndex node = 0; node < graph->num_nodes(); ++node) {
min_cost_flow->SetNodeSupply(node, supply[node]);
}
for (ArcIndex arc = 0; arc < graph->num_arcs(); ++arc) {
ArcIndex permuted_arc = arc < permutation.size() ? permutation[arc] : arc;
min_cost_flow->SetArcUnitCost(permuted_arc, arc_cost[arc]);
min_cost_flow->SetArcCapacity(permuted_arc, arc_capacity[arc]);
}
}
template <typename Graph>
CostValue SolveMinCostFlow(GenericMinCostFlow<Graph>* min_cost_flow) {
bool ok = min_cost_flow->Solve();
if (ok && min_cost_flow->status() == GenericMinCostFlow<Graph>::OPTIMAL) {
CostValue cost = min_cost_flow->GetOptimalCost();
CostValue computed_cost = 0;
for (ArcIndex arc = 0; arc < min_cost_flow->graph()->num_arcs(); ++arc) {
const FlowQuantity flow = min_cost_flow->Flow(arc);
EXPECT_GE(min_cost_flow->Capacity(arc), flow);
computed_cost += min_cost_flow->UnitCost(arc) * flow;
}
EXPECT_EQ(cost, computed_cost);
return cost;
} else {
return 0;
}
}
template <typename Graph>
CostValue SolveMinCostFlowWithLP(GenericMinCostFlow<Graph>* min_cost_flow) {
MPSolver solver("LPSolver", MPSolver::GLOP_LINEAR_PROGRAMMING);
const Graph* graph = min_cost_flow->graph();
const NodeIndex num_nodes = graph->num_nodes();
const ArcIndex num_arcs = graph->num_arcs();
std::unique_ptr<MPConstraint*[]> constraint(new MPConstraint*[num_nodes]);
for (NodeIndex node = 0; node < graph->num_nodes(); ++node) {
constraint[node] = solver.MakeRowConstraint();
FlowQuantity supply = min_cost_flow->Supply(node);
constraint[node]->SetBounds(supply, supply);
}
std::unique_ptr<MPVariable*[]> var(new MPVariable*[num_arcs]);
MPObjective* const objective = solver.MutableObjective();
for (ArcIndex arc = 0; arc < graph->num_arcs(); ++arc) {
var[arc] = solver.MakeNumVar(0.0, min_cost_flow->Capacity(arc),
absl::StrFormat("v%d", arc));
constraint[graph->Tail(arc)]->SetCoefficient(var[arc], 1.0);
constraint[graph->Head(arc)]->SetCoefficient(var[arc], -1.0);
objective->SetCoefficient(var[arc], min_cost_flow->UnitCost(arc));
}
solver.Solve();
return static_cast<CostValue>(objective->Value() + .5);
}
template <typename Graph>
bool CheckAssignmentFeasibility(const Graph& graph,
absl::Span<const int64_t> supply) {
for (NodeIndex node = 0; node < graph.num_nodes(); ++node) {
if (supply[node] != 0) {
typename Graph::OutgoingOrOppositeIncomingArcIterator it(graph, node);
EXPECT_TRUE(it.Ok()) << node << " has no incident arc";
}
}
return true;
}
template <typename Graph>
struct MinCostFlowSolver {
typedef FlowQuantity (*Solver)(GenericMinCostFlow<Graph>* min_cost_flow);
};
template <typename Graph>
void FullRandomAssignment(typename MinCostFlowSolver<Graph>::Solver f,
NodeIndex num_sources, NodeIndex num_targets,
CostValue expected_cost1,
CostValue /*expected_cost2*/) {
const CostValue kCostRange = 1000;
Graph graph;
GenerateCompleteGraph(num_sources, num_targets, &graph);
std::vector<typename Graph::ArcIndex> permutation;
Graphs<Graph>::Build(&graph, &permutation);
std::vector<int64_t> supply;
GenerateAssignmentSupply(num_sources, num_targets, &supply);
EXPECT_TRUE(CheckAssignmentFeasibility(graph, supply));
std::vector<int64_t> arc_capacity(graph.num_arcs(), 1);
std::vector<int64_t> arc_cost(graph.num_arcs());
GenerateRandomArcValuations(graph.num_arcs(), kCostRange, &arc_cost);
GenericMinCostFlow<Graph> min_cost_flow(&graph);
SetUpNetworkData(permutation, supply, arc_cost, arc_capacity, &graph,
&min_cost_flow);
CostValue cost = f(&min_cost_flow);
EXPECT_EQ(expected_cost1, cost);
}
template <typename Graph>
void PartialRandomAssignment(typename MinCostFlowSolver<Graph>::Solver f,
NodeIndex num_sources, NodeIndex num_targets,
CostValue expected_cost1,
CostValue /*expected_cost2*/) {
const NodeIndex kDegree = 10;
const CostValue kCostRange = 1000;
Graph graph;
GeneratePartialRandomGraph(num_sources, num_targets, kDegree, &graph);
std::vector<typename Graph::ArcIndex> permutation;
Graphs<Graph>::Build(&graph, &permutation);
std::vector<int64_t> supply;
GenerateAssignmentSupply(num_sources, num_targets, &supply);
EXPECT_TRUE(CheckAssignmentFeasibility(graph, supply));
EXPECT_EQ(graph.num_arcs(), num_sources * kDegree);
std::vector<int64_t> arc_capacity(graph.num_arcs(), 1);
std::vector<int64_t> arc_cost(graph.num_arcs());
GenerateRandomArcValuations(graph.num_arcs(), kCostRange, &arc_cost);
GenericMinCostFlow<Graph> min_cost_flow(&graph);
SetUpNetworkData(permutation, supply, arc_cost, arc_capacity, &graph,
&min_cost_flow);
CostValue cost = f(&min_cost_flow);
EXPECT_EQ(expected_cost1, cost);
}
template <typename Graph>
void ChangeCapacities(absl::Span<const ArcIndex> permutation,
absl::Span<const int64_t> arc_capacity,
FlowQuantity delta,
GenericMinCostFlow<Graph>* min_cost_flow,
float probability) {
std::mt19937 randomizer(12345);
const ArcIndex num_arcs = min_cost_flow->graph()->num_arcs();
for (ArcIndex arc = 0; arc < num_arcs; ++arc) {
ArcIndex permuted_arc = arc < permutation.size() ? permutation[arc] : arc;
if (absl::Bernoulli(randomizer, probability)) {
min_cost_flow->SetArcCapacity(
permuted_arc, std::max(arc_capacity[arc] - delta, int64_t{0}));
} else {
min_cost_flow->SetArcCapacity(permuted_arc, arc_capacity[arc]);
}
}
}
template <typename Graph>
void PartialRandomFlow(typename MinCostFlowSolver<Graph>::Solver f,
NodeIndex num_sources, NodeIndex num_targets,
CostValue expected_cost1, CostValue expected_cost2) {
const NodeIndex kDegree = 15;
const FlowQuantity kSupplyRange = 500;
const int64_t kSupplyGens = 15;
const FlowQuantity kCapacityRange = 10000;
const CostValue kCostRange = 1000;
const FlowQuantity kCapacityDelta = 500;
const float kProbability = 0.9;
Graph graph;
GeneratePartialRandomGraph(num_sources, num_targets, kDegree, &graph);
std::vector<typename Graph::ArcIndex> permutation;
Graphs<Graph>::Build(&graph, &permutation);
std::vector<int64_t> supply;
GenerateRandomSupply(num_sources, num_targets, kSupplyGens, kSupplyRange,
&supply);
EXPECT_TRUE(CheckAssignmentFeasibility(graph, supply));
std::vector<int64_t> arc_capacity(graph.num_arcs());
GenerateRandomArcValuations(graph.num_arcs(), kCapacityRange, &arc_capacity);
std::vector<int64_t> arc_cost(graph.num_arcs());
GenerateRandomArcValuations(graph.num_arcs(), kCostRange, &arc_cost);
GenericMinCostFlow<Graph> min_cost_flow(&graph);
SetUpNetworkData(permutation, supply, arc_cost, arc_capacity, &graph,
&min_cost_flow);
CostValue cost = f(&min_cost_flow);
EXPECT_EQ(expected_cost1, cost);
ChangeCapacities(permutation, arc_capacity, kCapacityDelta, &min_cost_flow,
kProbability);
cost = f(&min_cost_flow);
EXPECT_EQ(expected_cost2, cost);
ChangeCapacities(permutation, arc_capacity, 0, &min_cost_flow, 1.0);
cost = f(&min_cost_flow);
EXPECT_EQ(expected_cost1, cost);
}
template <typename Graph>
void FullRandomFlow(typename MinCostFlowSolver<Graph>::Solver f,
NodeIndex num_sources, NodeIndex num_targets,
CostValue expected_cost1, CostValue expected_cost2) {
const FlowQuantity kSupplyRange = 1000;
const int64_t kSupplyGens = 10;
const FlowQuantity kCapacityRange = 10000;
const CostValue kCostRange = 1000;
const FlowQuantity kCapacityDelta = 1000;
const float kProbability = 0.9;
Graph graph;
GenerateCompleteGraph(num_sources, num_targets, &graph);
std::vector<typename Graph::ArcIndex> permutation;
Graphs<Graph>::Build(&graph, &permutation);
std::vector<int64_t> supply;
GenerateRandomSupply(num_sources, num_targets, kSupplyGens, kSupplyRange,
&supply);
EXPECT_TRUE(CheckAssignmentFeasibility(graph, supply));
std::vector<int64_t> arc_capacity(graph.num_arcs());
GenerateRandomArcValuations(graph.num_arcs(), kCapacityRange, &arc_capacity);
std::vector<int64_t> arc_cost(graph.num_arcs());
GenerateRandomArcValuations(graph.num_arcs(), kCostRange, &arc_cost);
GenericMinCostFlow<Graph> min_cost_flow(&graph);
SetUpNetworkData(permutation, supply, arc_cost, arc_capacity, &graph,
&min_cost_flow);
CostValue cost = f(&min_cost_flow);
EXPECT_EQ(expected_cost1, cost);
ChangeCapacities(permutation, arc_capacity, kCapacityDelta, &min_cost_flow,
kProbability);
cost = f(&min_cost_flow);
EXPECT_EQ(expected_cost2, cost);
ChangeCapacities(permutation, arc_capacity, 0, &min_cost_flow, 1.0);
cost = f(&min_cost_flow);
EXPECT_EQ(expected_cost1, cost);
}
#define LP_AND_FLOW_TEST(test_name, size, expected_cost1, expected_cost2) \
LP_ONLY_TEST(test_name, size, expected_cost1, expected_cost2) \
FLOW_ONLY_TEST(test_name, size, expected_cost1, expected_cost2) \
FLOW_ONLY_TEST_SG(test_name, size, expected_cost1, expected_cost2)
#define LP_ONLY_TEST(test_name, size, expected_cost1, expected_cost2) \
TEST(LPMinCostFlowTest, test_name##size) { \
test_name<StarGraph>(SolveMinCostFlowWithLP, size, size, expected_cost1, \
expected_cost2); \
}
#define FLOW_ONLY_TEST(test_name, size, expected_cost1, expected_cost2) \
TEST(MinCostFlowTest, test_name##size) { \
test_name<StarGraph>(SolveMinCostFlow, size, size, expected_cost1, \
expected_cost2); \
}
#define FLOW_ONLY_TEST_SG(test_name, size, expected_cost1, expected_cost2) \
TEST(MinCostFlowTestStaticGraph, test_name##size) { \
test_name<util::ReverseArcStaticGraph<>>(SolveMinCostFlow, size, size, \
expected_cost1, expected_cost2); \
}
// The times indicated below are in opt mode.
// The figures indicate the time with the LP solver and with MinCostFlow,
// respectively. _ indicates "N/A".
LP_AND_FLOW_TEST(FullRandomAssignment, 100, 1653, 0); // 0.070s / 0.007s
LP_AND_FLOW_TEST(FullRandomAssignment, 300, 1487, 0); // 0.5s / 0.121s
LP_AND_FLOW_TEST(PartialRandomFlow, 10, 9195615, 10720774);
LP_AND_FLOW_TEST(PartialRandomFlow, 100, 80098192, 95669398); // 12ms / 8ms
LP_AND_FLOW_TEST(PartialRandomFlow, 1000, 770743566, 936886845);
// 1.6s / 0.094s
LP_AND_FLOW_TEST(FullRandomFlow, 100, 40998962, 81814978); // 0.085s / 0.025s
LP_AND_FLOW_TEST(FullRandomFlow, 300, 67301515, 173406965); // 0.7s / 0.412s
LP_AND_FLOW_TEST(PartialRandomAssignment, 100, 15418, 0); // 0.012s/0.003s
LP_AND_FLOW_TEST(PartialRandomAssignment, 1000, 155105, 0); // 0.416s/0.041s
// LARGE must be defined from the build command line to test larger instances.
#ifdef LARGE
LP_AND_FLOW_TEST(FullRandomAssignment, 1000, 1142, 0); // 7.2s / 5.809s
FLOW_ONLY_TEST(FullRandomAssignment, 3000, 392, 0); // 800s / 93.9s
FLOW_ONLY_TEST_SG(FullRandomAssignment, 3000, 392, 0); // 40s
LP_AND_FLOW_TEST(PartialRandomAssignment, 10000, 3649506, 0); // 22s / 0.953s
FLOW_ONLY_TEST(PartialRandomAssignment, 100000, 36722363, 0); // 4740s / 23s
FLOW_ONLY_TEST_SG(PartialRandomAssignment, 100000, 36722363, 0); // 4740s / 23s
FLOW_ONLY_TEST(PartialRandomAssignment, 1000000, 367732438, 0); // _ / 430s
FLOW_ONLY_TEST_SG(PartialRandomAssignment, 1000000, 367732438, 0); // 336s
LP_AND_FLOW_TEST(PartialRandomFlow, 2000, 3040966812, 3072394992);
// 7.15s / 0.269s
LP_AND_FLOW_TEST(FullRandomFlow, 800, 10588600, 12057369);
LP_AND_FLOW_TEST(FullRandomFlow, 1000, 9491720, 10994039); // 14.4s / 13.183s
FLOW_ONLY_TEST(FullRandomFlow, 3000, 5588622, 7140712); // 1460s / 488s
FLOW_ONLY_TEST_SG(FullRandomFlow, 3000, 5588622, 7140712); // 230s
#endif // LARGE
#undef LP_AND_FLOW_TEST
#undef LP_ONLY_TEST
#undef FLOW_ONLY_TEST
#undef FLOW_ONLY_TEST_SG
// Benchmark inspired from the existing problem of matching Youtube ads channels
// to Youtube users, maximizing the expected revenue:
// - Each channel needs an exact number of users assigned to it.
// - Each user has an upper limit on the number of channels they can be assigned
// to, with a guarantee that this upper limit won't prevent the channels to
// get their required number of users.
// - Each pair (user, channel) has a known expected revenue, which is modeled
// as a small-ish integer (<3K). Using larger ranges can slightly impact
// performance, and you should look for a good trade-off with the accuracy.
//
// IMPORTANT: don't run this with default flags! Use:
// blaze run -c opt --linkopt=-static [--run_under=perflab] --
// ortools/graph/min_cost_flow_test --benchmarks=all
// --benchmark_min_iters=1 --heap_check= --benchmark_memory_usage
static void BM_MinCostFlowOnMultiMatchingProblem(benchmark::State& state) {
std::mt19937 my_random(12345);
const int kNumChannels = 20000;
const int kNumUsers = 20000;
// Average probability of a user-channel pair being matched.
const double kDensity = 1.0 / 200;
const int kMaxChannelsPerUser = 5 * static_cast<int>(kDensity * kNumChannels);
const int kAverageNumUsersPerChannels =
static_cast<int>(kDensity * kNumUsers);
std::vector<int> num_users_per_channel(kNumChannels, -1);
int total_demand = 0;
for (int i = 0; i < kNumChannels; ++i) {
num_users_per_channel[i] =
1 + absl::Uniform(my_random, 0, 2 * kAverageNumUsersPerChannels - 1);
total_demand += num_users_per_channel[i];
}
// User #j, when assigned to channel #i, is expected to generate
// -expected_cost_per_channel_user[kNumUsers * i + j]: since MinCostFlow
// only *minimizes* costs, and doesn't maximizes revenue, we just set
// cost = -revenue.
// To stress the algorithm, we generate a cost matrix that is highly skewed
// and that would probably challenge greedy approaches: each user gets
// a random coefficient, each channel as well, and then the expected revenue
// of a (user, channel) pairing is the product of these coefficient, plus a
// small (per-cell) random perturbation.
std::vector<int16_t> expected_cost_per_channel_user(kNumChannels * kNumUsers);
{
std::vector<int16_t> channel_coeff(kNumChannels);
for (int i = 0; i < kNumChannels; ++i) {
channel_coeff[i] = absl::Uniform(my_random, 0, 48);
}
std::vector<int16_t> user_coeff(kNumUsers);
for (int j = 0; j < kNumUsers; ++j) {
user_coeff[j] = absl::Uniform(my_random, 0, 48);
}
for (int i = 0; i < kNumChannels; ++i) {
for (int j = 0; j < kNumUsers; ++j) {
expected_cost_per_channel_user[kNumUsers * i + j] =
-channel_coeff[i] * user_coeff[j] - absl::Uniform(my_random, 0, 10);
}
}
}
CHECK_LE(total_demand, kNumUsers * kMaxChannelsPerUser);
for (auto _ : state) {
// We don't have more than 65536 nodes, so we use 16-bit integers to spare
// memory (and potentially speed up the code). Arc indices must be 32 bits
// though, since we have much more.
typedef util::ReverseArcStaticGraph<
/*NodeIndexType*/ uint16_t, /*ArcIndexType*/ int32_t>
Graph;
Graph graph(/*num_nodes=*/kNumUsers + kNumChannels + 1,
/*arc_capacity=*/kNumChannels * kNumUsers + kNumUsers);
// We model this problem as a graph (on which we'll do a min-cost flow):
// - Each channel #i is a source node (index #i + 1) with supply
// num_users_per_channel[i].
// - There is a global sink node (index 0) with a demand equal to the
// sum of num_users_per_channel.
// - Each user #j is an intermediate node (index 1 + kNumChannels + j)
// with no supply or demand, but with an arc of capacity
// kMaxChannelsPerUser towards the global sink node (and of unit cost 0).
// - There is an arc from each channel #i to each user #j, with capacity 1
// and unit cost expected_cost_per_channel_user[kNumUsers * i + j].
for (int i = 0; i < kNumChannels; ++i) {
for (int j = 0; j < kNumUsers; ++j) {
graph.AddArc(/*tail=*/i + 1, /*head=*/kNumChannels + 1 + j);
}
}
for (int j = 0; j < kNumUsers; ++j) {
graph.AddArc(/*tail=*/kNumChannels + 1 + j, /*head=*/0);
}
std::vector<Graph::ArcIndex> permutation;
graph.Build(&permutation);
// To spare memory, we added arcs in the right order, so that no permutation
// is needed. See graph.h.
CHECK(permutation.empty());
// To spare memory, the types are chosen as small as possible.
GenericMinCostFlow<Graph,
/*ArcFlowType=*/int16_t,
/*ArcScaledCostType=*/int32_t>
min_cost_flow(&graph);
// We also disable the feasibility check which takes a huge amount of
// memory.
min_cost_flow.SetCheckFeasibility(false);
min_cost_flow.SetNodeSupply(/*node=*/0, /*supply=*/-total_demand);
// Now, set the arcs capacity and cost, in the same order as we created them
// above.
Graph::ArcIndex arc_index = 0;
for (int i = 0; i < kNumChannels; ++i) {
min_cost_flow.SetNodeSupply(
/*node=*/i + 1, /*supply=*/num_users_per_channel[i]);
for (int j = 0; j < kNumUsers; ++j) {
min_cost_flow.SetArcUnitCost(
arc_index, expected_cost_per_channel_user[kNumUsers * i + j]);
min_cost_flow.SetArcCapacity(arc_index, 1);
arc_index++;
}
}
for (int j = 0; j < kNumUsers; ++j) {
min_cost_flow.SetArcUnitCost(arc_index, 0);
min_cost_flow.SetArcCapacity(arc_index, kMaxChannelsPerUser);
arc_index++;
}
const bool solved_ok = min_cost_flow.Solve();
CHECK(solved_ok);
LOG(INFO) << "Maximum revenue: " << -min_cost_flow.GetOptimalCost();
}
}
BENCHMARK(BM_MinCostFlowOnMultiMatchingProblem);
} // namespace operations_research