remove zombie code from StronglyConnectedComponents.h

This commit is contained in:
Dennis Luxen 2014-07-17 10:27:47 +02:00
parent e281f88f2e
commit 7d90737921

View File

@ -82,9 +82,6 @@ class TarjanSCC
{
TarjanEdgeData()
: distance(INVALID_EDGE_WEIGHT), name_id(INVALID_NAMEID)
// , shortcut(false),
// type(std::numeric_limits<short>::max()), forward(false), backward(false),
// reversedEdge(false)
{
}
TarjanEdgeData(int distance, unsigned name_id)//, bool shortcut, short type, bool forward, bool backward, bool reversedEdge) :
@ -92,11 +89,6 @@ class TarjanSCC
{}
int distance;
unsigned name_id;
// bool shortcut : 1;
// short type;
// bool forward : 1;
// bool backward : 1;
// bool reversedEdge : 1;
};
struct TarjanStackFrame