(Graph<?> graph)
| 462 | */ |
| 463 | // TODO(b/28087289): add allowsParallelEdges() once that's supported |
| 464 | private static String getPropertiesString(Graph<?> graph) { |
| 465 | if (graph instanceof Network) { |
| 466 | return getPropertiesString((Network<?, ?>) graph); |
| 467 | } |
| 468 | return String.format("isDirected: %s, allowsSelfLoops: %s", |
| 469 | graph.isDirected(), graph.allowsSelfLoops()); |
| 470 | } |
| 471 | |
| 472 | /** |
| 473 | * Returns a string representation of the properties of {@code graph}. |
no test coverage detected