(PolyTree64 polytree)
| 1213 | } |
| 1214 | |
| 1215 | public static void ShowPolyTreeStructure(PolyTree64 polytree) |
| 1216 | { |
| 1217 | Console.WriteLine("Polytree Root"); |
| 1218 | foreach (PolyPath64 child in polytree) { ShowPolyPathStructure(child, 1); } |
| 1219 | } |
| 1220 | |
| 1221 | private static void ShowPolyPathStructure(PolyPathD pp, int level) |
| 1222 | { |
nothing calls this directly
no outgoing calls
no test coverage detected