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

Function remove_edges

Graph/GraphAlgorithms.h:105–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103 */
104template <typename Graph, typename It>
105void remove_edges(Graph& g, It first, It last)
106{
107 for (It it = first; it != last; ++it)
108 remove_edge(*it, g);
109}
110
111/**
112 * Remove transitive edges from the specified graph.

Callers 6

removeCyclesFunction · 0.85
removeWeakEdgesFunction · 0.85
removeLongEdgesFunction · 0.85
remove_transitive_edgesFunction · 0.85
removeSmallOverlapsFunction · 0.85

Calls 1

remove_edgeFunction · 0.70

Tested by

no test coverage detected