wavefront {RBGL} | R Documentation |
Compute the i-th/max/average/rms wavefront for a graph
ith.wavefront(g, start) max.wavefront(g) aver.wavefront(g) rms.wavefront(g)
start |
a vertex of the graph class |
g |
an instance of the graph class |
Given a graph G=(V, E),
ith.wavefront |
the number of edges that must be severed to obtain the mincut |
Li Long <li.long@isb-sib.ch>
Boost Graph Library by Siek et al.
coex <- fromGXL(file(system.file("XML/dijkex.gxl",package="RBGL"))) ss <- 1 ith.wavefront(coex, ss) max.wavefront(coex) aver.wavefront(coex) rms.wavefront(coex)