#pragma once #include #include #include #include #include "types.h" class graph_t { public: v_t ne; v_t nv; std::vector> v_adj; graph_t(D_t D, L_t L); void add_ext(); };