Revert "Fix volume V()"

This reverts commit a40e42b964.
This commit is contained in:
stefiosif
2022-08-09 00:15:47 +03:00
parent a40e42b964
commit 1a416794fc
3 changed files with 2 additions and 31 deletions

View File

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