(in, out EdgeMap)
| 32 | } |
| 33 | |
| 34 | func edgeMapsDebugString(in, out EdgeMap) string { |
| 35 | debug := "" |
| 36 | debug += "In Edges:\n" |
| 37 | for parent, edge := range in { |
| 38 | debug += fmt.Sprintf("\tParent: %p\n", parent) |
| 39 | debug += edgeDebugString(edge) |
| 40 | } |
| 41 | debug += "Out Edges:\n" |
| 42 | for child, edge := range out { |
| 43 | debug += fmt.Sprintf("\tChild: %p\n", child) |
| 44 | debug += edgeDebugString(edge) |
| 45 | } |
| 46 | return debug |
| 47 | } |
| 48 | |
| 49 | func graphDebugString(graph *Graph) string { |
| 50 | debug := "" |
no test coverage detected
searching dependent graphs…