Delete unused methods
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user