Skip to content

Commit a695779

Browse files
lperronMizux
authored andcommitted
[Graph] remove obsolete graph implementaiton
1 parent 8d90fe1 commit a695779

7 files changed

+107
-352
lines changed

ortools/graph/generic_max_flow_test.cc

+1-6
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,7 @@ template <typename Graph>
101101
class GenericMaxFlowTest : public ::testing::Test {};
102102

103103
typedef ::testing::Types<util::FlowGraph<>, util::ReverseArcListGraph<>,
104-
util::ReverseArcStaticGraph<>,
105-
util::ReverseArcMixedGraph<>>
104+
util::ReverseArcStaticGraph<>>
106105
GraphTypes;
107106

108107
TYPED_TEST_SUITE(GenericMaxFlowTest, GraphTypes);
@@ -684,22 +683,18 @@ static void BM_FullRandomFlow(benchmark::State& state) {
684683
BENCHMARK_TEMPLATE(BM_FullRandomAssignment, util::FlowGraph<>);
685684
BENCHMARK_TEMPLATE(BM_FullRandomAssignment, util::ReverseArcListGraph<>);
686685
BENCHMARK_TEMPLATE(BM_FullRandomAssignment, util::ReverseArcStaticGraph<>);
687-
BENCHMARK_TEMPLATE(BM_FullRandomAssignment, util::ReverseArcMixedGraph<>);
688686

689687
BENCHMARK_TEMPLATE(BM_PartialRandomFlow, util::FlowGraph<>);
690688
BENCHMARK_TEMPLATE(BM_PartialRandomFlow, util::ReverseArcListGraph<>);
691689
BENCHMARK_TEMPLATE(BM_PartialRandomFlow, util::ReverseArcStaticGraph<>);
692-
BENCHMARK_TEMPLATE(BM_PartialRandomFlow, util::ReverseArcMixedGraph<>);
693690

694691
BENCHMARK_TEMPLATE(BM_FullRandomFlow, util::FlowGraph<>);
695692
BENCHMARK_TEMPLATE(BM_FullRandomFlow, util::ReverseArcListGraph<>);
696693
BENCHMARK_TEMPLATE(BM_FullRandomFlow, util::ReverseArcStaticGraph<>);
697-
BENCHMARK_TEMPLATE(BM_FullRandomFlow, util::ReverseArcMixedGraph<>);
698694

699695
BENCHMARK_TEMPLATE(BM_PartialRandomAssignment, util::FlowGraph<>);
700696
BENCHMARK_TEMPLATE(BM_PartialRandomAssignment, util::ReverseArcListGraph<>);
701697
BENCHMARK_TEMPLATE(BM_PartialRandomAssignment, util::ReverseArcStaticGraph<>);
702-
BENCHMARK_TEMPLATE(BM_PartialRandomAssignment, util::ReverseArcMixedGraph<>);
703698

704699
#undef LP_AND_FLOW_TEST
705700

0 commit comments

Comments
 (0)