Program Listing for File StaticDegreeSequenceGenerator.hpp

Return to documentation for file (include/networkit/generators/StaticDegreeSequenceGenerator.hpp)

/*
 * StaticDegreeSequenceGenerator.hpp
 *
 *  Created on: 24.02.2014
 *      Author: Henning
 */

#ifndef NETWORKIT_GENERATORS_STATIC_DEGREE_SEQUENCE_GENERATOR_HPP_
#define NETWORKIT_GENERATORS_STATIC_DEGREE_SEQUENCE_GENERATOR_HPP_

#include <networkit/generators/StaticGraphGenerator.hpp>

namespace NetworKit {

// TODO: Clean this up.
const short NO = 0;
const short YES = 1;
const short UNKNOWN = 2;

class StaticDegreeSequenceGenerator : public StaticGraphGenerator {
protected:
    std::vector<count> seq;
    short realizable;

public:
    StaticDegreeSequenceGenerator(const std::vector<count> &sequence);

    virtual bool isRealizable();

    virtual bool getRealizable() const;

    Graph generate() override = 0;
};

} /* namespace NetworKit */
#endif // NETWORKIT_GENERATORS_STATIC_DEGREE_SEQUENCE_GENERATOR_HPP_