Program Listing for File IsolatedInterpartitionExpansion.hpp

Return to documentation for file (include/networkit/community/IsolatedInterpartitionExpansion.hpp)

#ifndef NETWORKIT_COMMUNITY_ISOLATED_INTERPARTITION_EXPANSION_HPP_
#define NETWORKIT_COMMUNITY_ISOLATED_INTERPARTITION_EXPANSION_HPP_

#include <networkit/community/LocalPartitionEvaluation.hpp>

namespace NetworKit {

class IsolatedInterpartitionExpansion final : public LocalPartitionEvaluation {
public:
    using LocalPartitionEvaluation::LocalPartitionEvaluation;

    void run() override;

    bool isSmallBetter() const override { return true; };
};

} // namespace NetworKit

#endif // NETWORKIT_COMMUNITY_ISOLATED_INTERPARTITION_EXPANSION_HPP_