use of au.gov.asd.tac.constellation.plugins.algorithms.clustering.infomap.Node in project constellation by constellation-app.
the class InfomapGreedy method transformNodeFlowToEnterFlow.
@Override
protected void transformNodeFlowToEnterFlow(final NodeBase parent) {
for (final NodeBase moduleBase : parent.getChildren()) {
final Node module = getNode(moduleBase);
module.getData().setFlow(module.getData().getEnterFlow());
}
}