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

Function swap

Graph/UndirectedGraph.h:395–399  ·  view source on GitHub ↗

Swap this graph with graph x. */

Source from the content-addressed store, hash-verified

393
394 /** Swap this graph with graph x. */
395 void swap(UndirectedGraph& x)
396 {
397 m_vertices.swap(x.m_vertices);
398 m_removed.swap(x.m_removed);
399 }
400
401 /** Return properties of vertex u. */
402 const vertex_property_type& operator[](vertex_descriptor u) const

Callers

nothing calls this directly

Calls 1

swapMethod · 0.45

Tested by

no test coverage detected