Skip to content

Commit

Permalink
chore: Print info from unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
danieledler committed Apr 4, 2023
1 parent 407dbe9 commit c5f06bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/InfomapBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ InfomapBase& InfomapBase::initTree(const NodePaths& tree)
}
if (numNodesWithoutClusterInfo > 0) {
if (assignToNeighbouringModule) {
Log() << "\n -> " << numNodesWithoutClusterInfo << " nodes not found in tree are put into neighbouring modules if possible.";
Log() << "\n -> " << numNodesWithoutClusterInfo << " nodes not found in tree, " << numNodesAddedToNeighbouringModules << " are put into neighbouring modules and " << (numNodesWithoutClusterInfo - numNodesAddedToNeighbouringModules) << " in separate.";
} else {
Log() << "\n -> " << numNodesWithoutClusterInfo << " nodes not found in tree are put into separate modules.";
}
Expand Down

0 comments on commit c5f06bc

Please sign in to comment.