* @return {object}
()
| 167 | * @return {object} |
| 168 | */ |
| 169 | getVerticesIndices() { |
| 170 | const verticesIndices = {}; |
| 171 | this.getAllVertices().forEach((vertex, index) => { |
| 172 | verticesIndices[vertex.getKey()] = index; |
| 173 | }); |
| 174 | |
| 175 | return verticesIndices; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * @return {*[][]} |
no test coverage detected