CWTSLeiden / networkanalysis

Java package that provides data structures and algorithms for network analysis.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

setResolution does not set resolution for local moving algorithm

vtraag opened this issue · comments

The resolution is not set for the localMovingAlgorithm for the LeidenAlgorithm and the LouvainAlgorithm. We should simply add

    public void setResolution(double resolution)
    {
        super.setResolution(resolution);
        this.localMovingAlgorithm.resolution = resolution;
    }

for both classes.