1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/common/include/villas/graph/vertex.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
907 B
C++
Raw Normal View History

2018-08-21 00:25:44 +02:00
/** A graph vertex.
*
* @file
* @author Daniel Krebs <github@daniel-krebs.net>
2022-03-15 09:05:42 -04:00
* @copyright 2014-2022, Institute for Automation of Complex Power Systems, EONERC
2022-05-19 17:40:10 +02:00
* @license Apache License 2.0
2018-08-21 00:25:44 +02:00
*********************************************************************************/
#pragma once
namespace villas {
namespace graph {
class Vertex {
template<typename VertexType, typename EdgeType>
friend class DirectedGraph;
public:
using Identifier = std::size_t;
Vertex() :
id(0)
{ }
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;
}
2018-08-21 00:25:44 +02:00
private:
Identifier id;
2018-08-21 00:25:44 +02:00
// HACK: how to resolve this circular type dependency?
std::list<std::size_t> edges;
};
} // namespace graph
} // namespace villas