Program Listing for File Luby.hpp

Return to documentation for file (include/networkit/independentset/Luby.hpp)

/*
 * Luby.hpp
 *
 *  Created on: 27.02.2013
 *      Author: Christian Staudt
 */

#ifndef NETWORKIT_INDEPENDENTSET_LUBY_HPP_
#define NETWORKIT_INDEPENDENTSET_LUBY_HPP_

#include <networkit/independentset/IndependentSetFinder.hpp>

namespace NetworKit {

class Luby final : public IndependentSetFinder {

public:
    std::vector<bool> run(const Graph &G) override;
};

} /* namespace NetworKit */
#endif // NETWORKIT_INDEPENDENTSET_LUBY_HPP_