Skip to content

Commit adac994

Browse files
authored
Update Graph.java
1 parent 0044d6d commit adac994

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/lv/id/jc/algorithm/graph/Graph.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
/**
88
* A generic graph representation
99
*
10+
* @author Jegors Čemisovs
1011
* @param <T> the type of vertex id in this graph
12+
* @since 1.0
1113
*/
1214
public record Graph<T>(Map<T, Map<T, Number>> nodes) {
1315

0 commit comments

Comments
 (0)