31 explicit AdjacencyList(
const std::int32_t n) : _array(n), _offsets(n + 1)
33 std::iota(_array.begin(), _array.end(), 0);
34 std::iota(_offsets.begin(), _offsets.end(), 0);
42 typename U,
typename V,
43 typename = std::enable_if_t<
44 std::is_same<std::vector<T>, std::decay_t<U>>::value
45 && std::is_same<std::vector<std::int32_t>, std::decay_t<V>>::value>>
47 : _array(std::forward<U>(data)), _offsets(std::forward<V>(
offsets))
49 _array.reserve(_offsets.back());
50 assert(_offsets.back() == (std::int32_t)_array.size());
62 _offsets.reserve(data.size() + 1);
63 _offsets.push_back(0);
64 for (
auto row = data.begin(); row != data.end(); ++row)
65 _offsets.push_back(_offsets.back() + row->size());
67 _array.reserve(_offsets.back());
68 for (
auto e = data.begin(); e != data.end(); ++e)
69 _array.insert(_array.end(), e->begin(), e->end());
91 return this->_array == list._array and this->_offsets == list._offsets;
96 std::int32_t
num_nodes()
const {
return _offsets.size() - 1; }
103 assert((node + 1) < (
int)_offsets.size());
104 return _offsets[node + 1] - _offsets[node];
113 return std::span<T>(_array.data() + _offsets[node],
114 _offsets[node + 1] - _offsets[node]);
121 std::span<const T>
links(
int node)
const
123 return std::span<const T>(_array.data() + _offsets[node],
124 _offsets[node + 1] - _offsets[node]);
128 const std::vector<T>&
array()
const {
return _array; }
131 std::vector<T>&
array() {
return _array; }
134 const std::vector<std::int32_t>&
offsets()
const {
return _offsets; }
137 std::vector<std::int32_t>&
offsets() {
return _offsets; }
144 s <<
"<AdjacencyList> with " + std::to_string(this->
num_nodes()) +
" nodes"
146 for (std::size_t e = 0; e < _offsets.size() - 1; ++e)
148 s <<
" " << e <<
": [";
149 for (
auto link : this->
links(e))
151 s <<
"]" << std::endl;
158 std::vector<T> _array;
161 std::vector<std::int32_t> _offsets;
171 template <
typename U>
172 AdjacencyList<typename std::decay_t<U>::value_type>
175 if (degree == 0 and !data.empty())
177 throw std::runtime_error(
"Degree is zero but data is not empty for "
178 "constant degree AdjacencyList");
181 if (degree > 0 and data.size() % degree != 0)
183 throw std::runtime_error(
184 "Incompatible data size and degree for constant degree AdjacencyList");
187 std::int32_t num_nodes = degree == 0 ? data.size() : data.size() / degree;
188 std::vector<std::int32_t> offsets(num_nodes + 1, 0);
189 for (std::size_t i = 1; i < offsets.size(); ++i)
190 offsets[i] = offsets[i - 1] + degree;
192 std::forward<U>(data), std::move(offsets));
This class provides a static adjacency list data structure. It is commonly used to store directed gra...
Definition: AdjacencyList.h:26
bool operator==(const AdjacencyList &list) const
Equality operator.
Definition: AdjacencyList.h:89
std::vector< T > & array()
Return contiguous array of links for all nodes.
Definition: AdjacencyList.h:131
std::span< const T > links(int node) const
Get the links (edges) for given node (const version)
Definition: AdjacencyList.h:121
int num_links(int node) const
Number of connections for given node.
Definition: AdjacencyList.h:101
AdjacencyList & operator=(const AdjacencyList &list)=default
Assignment operator.
std::span< T > links(int node)
Get the links (edges) for given node.
Definition: AdjacencyList.h:111
AdjacencyList(const std::int32_t n)
Construct trivial adjacency list where each of the n nodes is connected to itself.
Definition: AdjacencyList.h:31
AdjacencyList(AdjacencyList &&list)=default
Move constructor.
const std::vector< T > & array() const
Return contiguous array of links for all nodes (const version)
Definition: AdjacencyList.h:128
AdjacencyList & operator=(AdjacencyList &&list)=default
Move assignment operator.
AdjacencyList(const std::vector< X > &data)
Set all connections for all entities (T is a '2D' container, e.g. a std::vector<<std::vector<std::siz...
Definition: AdjacencyList.h:59
std::int32_t num_nodes() const
Get the number of nodes.
Definition: AdjacencyList.h:96
AdjacencyList(const AdjacencyList &list)=default
Copy constructor.
AdjacencyList(U &&data, V &&offsets)
Construct adjacency list from arrays of data.
Definition: AdjacencyList.h:46
const std::vector< std::int32_t > & offsets() const
Offset for each node in array() (const version)
Definition: AdjacencyList.h:134
std::string str() const
Informal string representation (pretty-print)
Definition: AdjacencyList.h:141
std::vector< std::int32_t > & offsets()
Offset for each node in array()
Definition: AdjacencyList.h:137
~AdjacencyList()=default
Destructor.
Graph data structures and algorithms.
Definition: dofmapbuilder.h:25
AdjacencyList< typename std::decay_t< U >::value_type > regular_adjacency_list(U &&data, int degree)
Construct a constant degree (valency) adjacency list.
Definition: AdjacencyList.h:173