MCPcopy Create free account
hub / github.com/google/pprof / edgeDebugString

Function edgeDebugString

internal/graph/graph_test.go:24–32  ·  view source on GitHub ↗
(edge *Edge)

Source from the content-addressed store, hash-verified

22)
23
24func edgeDebugString(edge *Edge) string {
25 debug := ""
26 debug += fmt.Sprintf("\t\tSrc: %p\n", edge.Src)
27 debug += fmt.Sprintf("\t\tDest: %p\n", edge.Dest)
28 debug += fmt.Sprintf("\t\tWeight: %d\n", edge.Weight)
29 debug += fmt.Sprintf("\t\tResidual: %t\n", edge.Residual)
30 debug += fmt.Sprintf("\t\tInline: %t\n", edge.Inline)
31 return debug
32}
33
34func edgeMapsDebugString(in, out EdgeMap) string {
35 debug := ""

Callers 1

edgeMapsDebugStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…