2018-08-21 00:25:44 +02:00
|
|
|
/** A graph vertex.
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @author Daniel Krebs <github@daniel-krebs.net>
|
2019-01-13 00:42:26 +01:00
|
|
|
* @copyright 2014-2019, Institute for Automation of Complex Power Systems, EONERC
|
2018-08-21 00:25:44 +02:00
|
|
|
* @license GNU General Public License (version 3)
|
|
|
|
*
|
2018-08-21 16:54:58 +02:00
|
|
|
* VILLAScommon
|
2018-08-21 00:25:44 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************************/
|
|
|
|
|
|
|
|
#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;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespacae graph
|
2019-05-28 10:50:50 +02:00
|
|
|
} /* namespace villas */
|