@@ -14,7 +14,7 @@ This tool is written in [Go](https://golang.org/) and uses [NoVerify](https://gi
14
14
15
15
* [ What is currently available?] ( #what-is-currently-available )
16
16
* [ Metrics] ( #metrics )
17
- * [ Graph output ] ( #graph-output -graphviz-format-and-svg )
17
+ * [ Graphs ] ( #graphs -graphviz-format-and-svg )
18
18
* [ Relation] ( #relation )
19
19
* [ Tops] ( #tops )
20
20
* [ Install] ( #install )
@@ -45,21 +45,19 @@ This tool is written in [Go](https://golang.org/) and uses [NoVerify](https://gi
45
45
6 . ` Cyclomatic Complexity ` ;
46
46
7 . ` Count of magic numbers in functions and methods ` .
47
47
48
- ### Graph output (Graphviz format and svg)
48
+ ### Graphs (Graphviz format and svg)
49
49
50
- 1 . File dependencies, both root and included inside functions ;
50
+ 1 . Class (or interface) dependencies ;
51
51
52
- 2 . Class dependencies;
52
+ 2 . Class (interface) extend and implementation dependencies;
53
53
54
- 3 . Function/ method dependencies;
54
+ 3 . Function or method dependencies;
55
55
56
- 4 . All project namespaces ;
56
+ 4 . Links within a class (or graph for the LCOM 4 metric) ;
57
57
58
- 5 . Specific namespace and its child namespaces;
58
+ 5 . Links between files (included in global and in function).
59
59
60
- 6 . LCOM4.
61
-
62
- See [ examples of graphs.] ( doc/graphs.md )
60
+ See [ building graphs] ( doc/graphs.md ) for details.
63
61
64
62
### Relation
65
63
@@ -139,7 +137,7 @@ To **view the metrics**, use the `info` command, which **shows information** abo
139
137
140
138
For command information, write ` info help ` .
141
139
142
- ### Graph output (Graphviz format and svg)
140
+ ### Building Graphs
143
141
144
142
To ** build graphs** , use the ` graph ` command. The ` -o ` flag is required and sets the file in which the graph will be placed.
145
143
@@ -152,6 +150,8 @@ When creating a graph, two files are created, one with the source code of the gr
152
150
153
151
For command information, write ` graph help ` .
154
152
153
+ See [ building graphs] ( doc/graphs.md ) for details.
154
+
155
155
### Relation
156
156
157
157
To check the reachability of a function from another function, use the ` relation ` command.
0 commit comments