Fix graph volume V()

This commit is contained in:
stefiosif
2022-08-09 00:22:21 +03:00
parent 3f3c58b0b8
commit 4d189f269c
2 changed files with 3 additions and 2 deletions

View File

@@ -45,6 +45,7 @@ Graph<T>::~Graph() {
template<typename T>
inline void Graph<T>::insert(const T& u, const T& v) {
Graph<T>::adjMatrix[u].insert(v);
Graph<T>::adjMatrix[v];
}
template<typename T>