Program Listing for File IncompleteSSSP.hpp

Return to documentation for file (include/networkit/distance/IncompleteSSSP.hpp)

/*
 * IncompleteSSSP.hpp
 *
 *  Created on: 15.07.2014
 *      Author: dhoske
 */

#ifndef NETWORKIT_DISTANCE_INCOMPLETE_SSSP_HPP_
#define NETWORKIT_DISTANCE_INCOMPLETE_SSSP_HPP_

#include <networkit/graph/Graph.hpp>

namespace NetworKit {

class IncompleteSSSP {

public:
    virtual bool hasNext() = 0;

    virtual std::pair<node, edgeweight> next() = 0;
};

} // namespace NetworKit

#endif // NETWORKIT_DISTANCE_INCOMPLETE_SSSP_HPP_