MCPcopy Create free account
hub / github.com/atcoder/ac-library / edge_eq

Function edge_eq

test/unittest/maxflow_test.cpp:24–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24template <class edge> void edge_eq(edge expect, edge actual) {
25 ASSERT_EQ(expect.from, actual.from);
26 ASSERT_EQ(expect.to, actual.to);
27 ASSERT_EQ(expect.cap, actual.cap);
28 ASSERT_EQ(expect.flow, actual.flow);
29}
30
31TEST(MaxflowTest, Simple) {
32 mf_graph<int> g(4);

Callers 1

TESTFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected