|
libgrape-lite
A C++ library for parallel graph processing
|
#include <edge.h>
Public Member Functions | |
| DEV_HOST | Edge (const VID_T &src, const VID_T &dst) |
| DEV_HOST | Edge (const VID_T &src, const VID_T &dst, const EDATA_T &edata) |
| DEV_HOST | Edge (const Edge &e) |
| DEV_HOST | Edge (const VID_T &src, const VID_T &dst, EDATA_T &&edata) |
| DEV_HOST | Edge (Edge &&e) noexcept |
| DEV_HOST Edge & | operator= (const Edge &other) |
| DEV_HOST Edge & | operator= (Edge &&other) |
| DEV_HOST bool | operator== (const Edge &other) const |
| DEV_HOST bool | operator!= (const Edge &other) const |
Public Attributes | |
| VID_T | src |
| VID_T | dst |
| EDATA_T | edata |
Edge representation.
| VID_T | |
| EDATA_T |