mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
40 lines
881 B
C++
40 lines
881 B
C++
/** A graph vertex.
|
|
*
|
|
* @file
|
|
* @author Daniel Krebs <github@daniel-krebs.net>
|
|
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
|
|
* @license Apache License 2.0
|
|
*********************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
namespace villas {
|
|
namespace graph {
|
|
|
|
class Vertex {
|
|
template<typename VertexType, typename EdgeType>
|
|
friend class DirectedGraph;
|
|
|
|
public:
|
|
using Identifier = std::size_t;
|
|
|
|
const Identifier&
|
|
getIdentifier() const
|
|
{ return id; }
|
|
|
|
friend std::ostream&
|
|
operator<< (std::ostream &stream, const Vertex &vertex)
|
|
{ return stream << vertex.id; }
|
|
|
|
bool
|
|
operator==(const Vertex &other)
|
|
{ return this->id == other.id; }
|
|
|
|
private:
|
|
Identifier id;
|
|
// HACK: how to resolve this circular type dependency?
|
|
std::list<std::size_t> edges;
|
|
};
|
|
|
|
} /* namespace graph */
|
|
} /* namespace villas */
|