Fix volume V()

This commit is contained in:
stefiosif
2022-08-09 00:15:26 +03:00
parent 433955e2cf
commit a40e42b964
3 changed files with 31 additions and 2 deletions

View File

@@ -45,6 +45,8 @@ 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>