↰ Return to documentation for file (include/networkit/generators/ConfigurationModel.hpp
)
#ifndef NETWORKIT_GENERATORS_CONFIGURATION_MODEL_HPP_
#define NETWORKIT_GENERATORS_CONFIGURATION_MODEL_HPP_
#include <set>
#include <vector>
#include <networkit/generators/StaticDegreeSequenceGenerator.hpp>
namespace NetworKit {
class ConfigurationModel final : public StaticDegreeSequenceGenerator {
public:
ConfigurationModel(const std::vector<count> &sequence);
Graph generate() override;
};
} // namespace NetworKit
#endif // NETWORKIT_GENERATORS_CONFIGURATION_MODEL_HPP_