Also print edge source/target for suspicious edge weights
This commit is contained in:
parent
3065de63dd
commit
b7c8fcd062
@ -171,7 +171,8 @@ class Contractor
|
||||
{
|
||||
SimpleLogger().Write(logWARNING)
|
||||
<< "Edge weight large -> "
|
||||
<< static_cast<unsigned int>(std::max(diter->weight, 1));
|
||||
<< static_cast<unsigned int>(std::max(diter->weight, 1)) << " : "
|
||||
<< static_cast<unsigned int>(diter->source) << " -> " << static_cast<unsigned int>(diter->target);
|
||||
}
|
||||
#endif
|
||||
edges.emplace_back(diter->source, diter->target,
|
||||
|
Loading…
Reference in New Issue
Block a user