Delete unused methods

This commit is contained in:
stefiosif
2022-05-15 00:39:36 +03:00
parent 8a52c80bc8
commit c2c278784b
2 changed files with 6 additions and 22 deletions

View File

@@ -37,7 +37,7 @@ private:
};
template<typename T>
inline void Tarjan<T>::strongConnect(const T& v) {
void Tarjan<T>::strongConnect(const T& v) {
vp[v].index = vp[v].lowlink = index++;
vp[v].onStack = true;
S.push(v);
@@ -67,7 +67,7 @@ inline void Tarjan<T>::strongConnect(const T& v) {
}
template<typename T>
inline std::vector<std::vector<T>> Tarjan<T>::run() {
std::vector<std::vector<T>> Tarjan<T>::run() {
for (const auto& v : G.vertices) {
if (vp[v].index == -1) {