MCPcopy Create free account
hub / github.com/BirolLab/abyss / readGraphs

Function readGraphs

Graph/gc.cc:69–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67/** Read a graph from the specified files. */
68template <typename Graph, typename It, typename BetterEP>
69void readGraphs(Graph& g, It first, It last, BetterEP betterEP)
70{
71 if (first != last) {
72 for (It it = first; it < last; ++it)
73 readGraph(*it, g, betterEP);
74 } else
75 readGraph("-", g, betterEP);
76}
77
78int main(int argc, char** argv)
79{

Callers 1

mainFunction · 0.70

Calls 1

readGraphFunction · 0.70

Tested by

no test coverage detected