(Graph<?> graph)
| 488 | |
| 489 | |
| 490 | private static String getPropertiesString(Graph<?> graph) { |
| 491 | if (graph instanceof Network) { |
| 492 | return getPropertiesString((Network<?, ?>) graph); |
| 493 | } |
| 494 | return String.format("isDirected: %s, allowsSelfLoops: %s", graph.isDirected(), graph.allowsSelfLoops()); |
| 495 | } |
| 496 | |
| 497 | /** |
| 498 | * Returns a string representation of the properties of {@code graph}. |
no test coverage detected