#ifndef WOLFF_GRAPH_H #define WOLFF_GRAPH_H #include #include namespace wolff { #include "types.h" class graph { public: D_t D; L_t L; v_t ne; v_t nv; std::vector> adjacency; std::vector> coordinate; graph(); graph(D_t D, L_t L); void add_ghost(); }; } #endif