1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
use ndarray::prelude::*;
use serde::{
Deserialize, Deserializer, Serialize, Serializer,
de::{MapAccess, Visitor},
ser::SerializeMap,
};
use crate::{
impl_json_io,
models::{Graph, Labelled},
types::{Error, Labels, Result, Set},
};
/// A struct representing an undirected graph using an adjacency matrix.
#[derive(Clone, Debug)]
pub struct UnGraph {
labels: Labels,
adjacency_matrix: Array2<bool>,
}
impl UnGraph {
/// Check if a vertex is within bounds.
#[inline]
fn check_vertex(&self, x: usize) -> Result<()> {
if x >= self.labels.len() {
return Err(Error::IndexOutOfBounds(x));
}
Ok(())
}
/// Returns the neighbors of a set of vertices.
///
/// # Arguments
///
/// * `x` - The set of vertices for which to find the neighbors.
///
/// # Errors
///
/// * If any vertex is out of bounds.
///
/// # Returns
///
/// The neighbors of the vertex.
///
pub fn neighbors(&self, x: &Set<usize>) -> Result<Set<usize>> {
// Check if the vertices are within bounds.
x.iter().try_for_each(|&v| self.check_vertex(v))?;
// Iterate over all vertices and filter the ones that are neighbors.
let mut neighbors: Set<_> = x
.iter()
.flat_map(|&v| {
self.adjacency_matrix
.row(v)
.into_iter()
.enumerate()
.filter_map(|(y, &has_edge)| has_edge.then_some(y))
})
.collect();
// Sort the neighbors.
neighbors.sort();
// Return the neighbors.
Ok(neighbors)
}
}
impl Labelled for UnGraph {
fn labels(&self) -> &Labels {
&self.labels
}
}
impl Graph for UnGraph {
fn empty<I, V>(labels: I) -> Result<Self>
where
I: IntoIterator<Item = V>,
V: AsRef<str>,
{
// Initialize labels counter.
let mut n = 0;
// Collect the labels.
let mut labels: Labels = labels
.into_iter()
.inspect(|_| n += 1)
.map(|x| x.as_ref().to_owned())
.collect();
// Check for duplicate labels.
if labels.len() != n {
return Err(Error::NonUniqueLabels());
}
// Sort the labels.
labels.sort();
// Initialize the adjacency matrix with `false` values.
let adjacency_matrix: Array2<_> = Array::from_elem((n, n), false);
Ok(Self {
labels,
adjacency_matrix,
})
}
fn complete<I, V>(labels: I) -> Result<Self>
where
I: IntoIterator<Item = V>,
V: AsRef<str>,
{
// Construct the empty graph.
let mut g = Self::empty(labels)?;
// Fill the adjacency matrix with `true` values.
g.adjacency_matrix.fill(true);
// Remove the self-loops.
g.adjacency_matrix.diag_mut().fill(false);
Ok(g)
}
fn vertices(&self) -> Set<usize> {
(0..self.labels.len()).collect()
}
fn has_vertex(&self, x: usize) -> bool {
// Check if the vertex is within bounds.
x < self.labels.len()
}
fn edges(&self) -> Set<(usize, usize)> {
// Iterate over the adjacency matrix and collect the edges.
self.adjacency_matrix
.indexed_iter()
.filter_map(|((x, y), &has_edge)| {
// Since the graph is undirected, we only need to check one direction.
(has_edge && x <= y).then_some((x, y))
})
.collect()
}
fn has_edge(&self, x: usize, y: usize) -> Result<bool> {
// Check if the vertices are within bounds.
self.check_vertex(x)?;
self.check_vertex(y)?;
Ok(self.adjacency_matrix[[x, y]])
}
fn add_edge(&mut self, x: usize, y: usize) -> Result<bool> {
// Check if the vertices are within bounds.
self.check_vertex(x)?;
self.check_vertex(y)?;
// Check if the edge already exists.
if self.adjacency_matrix[[x, y]] {
return Ok(false);
}
// Add the edge.
self.adjacency_matrix[[x, y]] = true;
self.adjacency_matrix[[y, x]] = true;
Ok(true)
}
fn del_edge(&mut self, x: usize, y: usize) -> Result<bool> {
// Check if the vertices are within bounds.
self.check_vertex(x)?;
self.check_vertex(y)?;
// Check if the edge exists.
if !self.adjacency_matrix[[x, y]] {
return Ok(false);
}
// Delete the edge.
self.adjacency_matrix[[x, y]] = false;
self.adjacency_matrix[[y, x]] = false;
Ok(true)
}
fn select(&self, x: &Set<usize>) -> Result<Self>
where
Self: Sized,
{
// Check if the vertices are within bounds.
x.iter().try_for_each(|&v| self.check_vertex(v))?;
// Clone and sort the vertices.
let mut x = x.clone();
x.sort();
// Allocate the new labels.
let labels: Labels = x.iter().map(|&v| self.labels[v].clone()).collect();
// Allocate the new adjacency matrix.
let mut adjacency_matrix: Array2<bool> = Array::from_elem((x.len(), x.len()), false);
// Fill the new adjacency matrix.
for (i, &v_i) in x.iter().enumerate() {
for (j, &v_j) in x.iter().enumerate() {
adjacency_matrix[[i, j]] = self.adjacency_matrix[[v_i, v_j]];
}
}
Self::from_adjacency_matrix(labels, adjacency_matrix)
}
fn from_adjacency_matrix(
mut labels: Labels,
mut adjacency_matrix: Array2<bool>,
) -> Result<Self> {
// Check labels and adjacency matrix dimensions match.
if labels.len() != adjacency_matrix.nrows() {
return Err(Error::IncompatibleShape(
&labels.len().to_string(),
&adjacency_matrix.nrows().to_string(),
));
}
// Check adjacency matrix must be square.
if adjacency_matrix.nrows() != adjacency_matrix.ncols() {
return Err(Error::IncompatibleShape(
&adjacency_matrix.nrows().to_string(),
&adjacency_matrix.ncols().to_string(),
));
}
// Check the adjacency matrix is symmetric.
if adjacency_matrix != adjacency_matrix.t() {
return Err(Error::InvalidParameter(
"adjacency_matrix",
"Adjacency matrix must be symmetric.",
));
}
// Check if the labels are sorted.
if !labels.is_sorted() {
// Allocate the sorted indices.
let mut indices: Vec<usize> = (0..labels.len()).collect();
// Sort the indices based on the labels.
indices.sort_by_key(|&i| &labels[i]);
// Sort the labels.
labels.sort();
// Allocate a new adjacency matrix.
let mut new_adjacency_matrix = adjacency_matrix.clone();
// Fill the rows.
indices.iter().enumerate().for_each(|(i, &j)| {
new_adjacency_matrix
.row_mut(i)
.assign(&adjacency_matrix.row(j));
});
// Update the adjacency matrix.
adjacency_matrix = new_adjacency_matrix;
// Allocate a new adjacency matrix.
let mut new_adjacency_matrix = adjacency_matrix.clone();
// Fill the columns.
indices.iter().enumerate().for_each(|(i, &j)| {
new_adjacency_matrix
.column_mut(i)
.assign(&adjacency_matrix.column(j));
});
// Update the adjacency matrix.
adjacency_matrix = new_adjacency_matrix;
}
// Create a new graph instance.
Ok(Self {
labels,
adjacency_matrix,
})
}
#[inline]
fn to_adjacency_matrix(&self) -> Array2<bool> {
self.adjacency_matrix.clone()
}
}
impl Serialize for UnGraph {
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
where
S: Serializer,
{
// Convert adjacency matrix to a flat format.
let edges = self
.edges()
.into_iter()
.map(|(x, y)| {
let x = self.index_to_label(x).map_err(serde::ser::Error::custom)?;
let y = self.index_to_label(y).map_err(serde::ser::Error::custom)?;
Ok((x.to_owned(), y.to_owned()))
})
.collect::<std::result::Result<Vec<_>, S::Error>>()?;
// Allocate the map.
let mut map = serializer.serialize_map(Some(3))?;
// Serialize labels.
map.serialize_entry("labels", &self.labels)?;
// Serialize edges.
map.serialize_entry("edges", &edges)?;
// Serialize type.
map.serialize_entry("type", "ungraph")?;
// Finalize the map serialization.
map.end()
}
}
impl<'de> Deserialize<'de> for UnGraph {
fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error>
where
D: Deserializer<'de>,
{
#[derive(Deserialize)]
#[serde(field_identifier, rename_all = "snake_case")]
enum Field {
Labels,
Edges,
Type,
}
struct UnGraphVisitor;
impl<'de> Visitor<'de> for UnGraphVisitor {
type Value = UnGraph;
fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
formatter.write_str("struct UnGraph")
}
fn visit_map<V>(self, mut map: V) -> std::result::Result<UnGraph, V::Error>
where
V: MapAccess<'de>,
{
use serde::de::Error as E;
// Allocate fields
let mut labels = None;
let mut edges = None;
let mut type_ = None;
// Parse the map.
while let Some(key) = map.next_key()? {
match key {
Field::Labels => {
if labels.is_some() {
return Err(E::duplicate_field("labels"));
}
labels = Some(map.next_value()?);
}
Field::Edges => {
if edges.is_some() {
return Err(E::duplicate_field("edges"));
}
edges = Some(map.next_value()?);
}
Field::Type => {
if type_.is_some() {
return Err(E::duplicate_field("type"));
}
type_ = Some(map.next_value()?);
}
}
}
// Check required fields.
let labels = labels.ok_or_else(|| E::missing_field("labels"))?;
let edges = edges.ok_or_else(|| E::missing_field("edges"))?;
// Check type is correct.
let type_: String = type_.ok_or_else(|| E::missing_field("type"))?;
if type_ != "ungraph" {
return Err(E::custom(format!(
"Invalid type for UnGraph: expected 'ungraph', found '{type_}'"
)));
}
// Convert edges to an adjacency matrix.
let labels: Labels = labels;
let edges: Vec<(String, String)> = edges;
let shape = (labels.len(), labels.len());
let mut adjacency_matrix = Array2::from_elem(shape, false);
edges.into_iter().try_for_each(|(x, y)| {
let x = labels
.get_index_of(&x)
.ok_or_else(|| E::custom(format!("Vertex `{x}` label does not exist")))?;
let y = labels
.get_index_of(&y)
.ok_or_else(|| E::custom(format!("Vertex `{y}` label does not exist")))?;
adjacency_matrix[(x, y)] = true;
Ok(())
})?;
UnGraph::from_adjacency_matrix(labels, adjacency_matrix)
.map_err(|e| E::custom(e.to_string()))
}
}
const FIELDS: &[&str] = &["labels", "edges", "type"];
deserializer.deserialize_struct("UnGraph", FIELDS, UnGraphVisitor)
}
}
// Implement `JsonIO` for `UnGraph`.
impl_json_io!(UnGraph);