|
cgrapht 1.0.0
A modern C++20 header-only graph library
|
Edge record for a directed graph. More...
#include <graph.hpp>
Collaboration diagram for cgrapht::Edge< E >:Public Member Functions | |
| bool | operator== (const Edge &other) const |
Public Attributes | |
| std::size_t | from_id |
| std::size_t | to_id |
| E | edge |
Edge record for a directed graph.
| E | Edge payload type. |
|
inline |
Definition at line 39 of file graph.hpp.
References cgrapht::Edge< E >::edge, cgrapht::Edge< E >::from_id, and cgrapht::Edge< E >::to_id.
| E cgrapht::Edge< E >::edge |
Definition at line 37 of file graph.hpp.
Referenced by cgrapht::Edge< E >::operator==().
| std::size_t cgrapht::Edge< E >::from_id |
Definition at line 35 of file graph.hpp.
Referenced by cgrapht::DirectedGraph< V, E >::add_edge(), and cgrapht::Edge< E >::operator==().
| std::size_t cgrapht::Edge< E >::to_id |
Definition at line 36 of file graph.hpp.
Referenced by cgrapht::Edge< E >::operator==().