nxpp
Header-only graph utilities on top of Boost Graph Library
Loading...
Searching...
No Matches
storage.hpp
Go to the documentation of this file.
1#pragma once
2
8#include <boost/graph/adjacency_list.hpp>
9
10namespace nxpp::storage {
11
12using Vec = boost::vecS;
13using List = boost::listS;
14using Set = boost::setS;
15
16} // namespace nxpp::storage
boost::setS Set
Unique out-edges only; incompatible with Multi=true.
Definition storage.hpp:14
boost::vecS Vec
Default dense selector used by nxpp graph aliases.
Definition storage.hpp:12
boost::listS List
Stable descriptors with slower index-oriented lookup.
Definition storage.hpp:13