2022-09-21 12:39:59 +00:00
|
|
|
//! This module deals with graph algorithms.
|
2023-01-05 11:09:25 +00:00
|
|
|
//! It is used in layout.rs to build the partition to node assignment.
|
2022-09-21 12:39:59 +00:00
|
|
|
|
2023-09-21 09:21:35 +00:00
|
|
|
use rand::prelude::{SeedableRng, SliceRandom};
|
2022-09-21 12:39:59 +00:00
|
|
|
use std::cmp::{max, min};
|
|
|
|
use std::collections::HashMap;
|
2022-10-10 15:21:13 +00:00
|
|
|
use std::collections::VecDeque;
|
2022-09-21 12:39:59 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// Vertex data structures used in all the graphs used in layout.rs.
|
|
|
|
/// usize parameters correspond to node/zone/partitions ids.
|
|
|
|
/// To understand the vertex roles below, please refer to the formal description
|
|
|
|
/// of the layout computation algorithm.
|
2022-10-10 15:21:13 +00:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum Vertex {
|
|
|
|
Source,
|
2022-11-07 18:34:40 +00:00
|
|
|
Pup(usize), // The vertex p+ of partition p
|
|
|
|
Pdown(usize), // The vertex p- of partition p
|
|
|
|
PZ(usize, usize), // The vertex corresponding to x_(partition p, zone z)
|
|
|
|
N(usize), // The vertex corresponding to node n
|
2022-10-10 15:21:13 +00:00
|
|
|
Sink,
|
2022-09-21 12:39:59 +00:00
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// Edge data structure for the flow algorithm.
|
2022-09-21 12:39:59 +00:00
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
|
|
pub struct FlowEdge {
|
2022-11-07 20:12:11 +00:00
|
|
|
cap: u64, // flow maximal capacity of the edge
|
|
|
|
flow: i64, // flow value on the edge
|
2022-11-07 18:34:40 +00:00
|
|
|
dest: usize, // destination vertex id
|
|
|
|
rev: usize, // index of the reversed edge (v, self) in the edge list of vertex v
|
2022-09-21 12:39:59 +00:00
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// Edge data structure for the detection of negative cycles.
|
2022-09-21 12:39:59 +00:00
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
|
|
pub struct WeightedEdge {
|
2022-11-07 20:12:11 +00:00
|
|
|
w: i64, // weight of the edge
|
2022-09-21 12:39:59 +00:00
|
|
|
dest: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Edge: Clone + Copy {}
|
|
|
|
impl Edge for FlowEdge {}
|
|
|
|
impl Edge for WeightedEdge {}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// Struct for the graph structure. We do encapsulation here to be able to both
|
|
|
|
/// provide user friendly Vertex enum to address vertices, and to use internally usize
|
|
|
|
/// indices and Vec instead of HashMap in the graph algorithm to optimize execution speed.
|
2022-10-10 15:21:13 +00:00
|
|
|
pub struct Graph<E: Edge> {
|
2022-11-07 18:34:40 +00:00
|
|
|
vertex_to_id: HashMap<Vertex, usize>,
|
|
|
|
id_to_vertex: Vec<Vertex>,
|
2022-09-21 12:39:59 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// The graph is stored as an adjacency list
|
2022-10-10 15:21:13 +00:00
|
|
|
graph: Vec<Vec<E>>,
|
2022-09-21 12:39:59 +00:00
|
|
|
}
|
|
|
|
|
2022-11-07 20:12:11 +00:00
|
|
|
pub type CostFunction = HashMap<(Vertex, Vertex), i64>;
|
2022-10-10 15:21:13 +00:00
|
|
|
|
|
|
|
impl<E: Edge> Graph<E> {
|
|
|
|
pub fn new(vertices: &[Vertex]) -> Self {
|
|
|
|
let mut map = HashMap::<Vertex, usize>::new();
|
|
|
|
for (i, vert) in vertices.iter().enumerate() {
|
|
|
|
map.insert(*vert, i);
|
|
|
|
}
|
|
|
|
Graph::<E> {
|
2022-11-07 18:34:40 +00:00
|
|
|
vertex_to_id: map,
|
|
|
|
id_to_vertex: vertices.to_vec(),
|
2022-10-10 15:21:13 +00:00
|
|
|
graph: vec![Vec::<E>::new(); vertices.len()],
|
|
|
|
}
|
|
|
|
}
|
2022-11-07 18:34:40 +00:00
|
|
|
|
|
|
|
fn get_vertex_id(&self, v: &Vertex) -> Result<usize, String> {
|
|
|
|
self.vertex_to_id
|
|
|
|
.get(v)
|
|
|
|
.cloned()
|
|
|
|
.ok_or_else(|| format!("The graph does not contain vertex {:?}", v))
|
|
|
|
}
|
2022-09-21 12:39:59 +00:00
|
|
|
}
|
|
|
|
|
2022-10-10 15:21:13 +00:00
|
|
|
impl Graph<FlowEdge> {
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function adds a directed edge to the graph with capacity c, and the
|
|
|
|
/// corresponding reversed edge with capacity 0.
|
2022-11-07 20:12:11 +00:00
|
|
|
pub fn add_edge(&mut self, u: Vertex, v: Vertex, c: u64) -> Result<(), String> {
|
2022-11-07 18:34:40 +00:00
|
|
|
let idu = self.get_vertex_id(&u)?;
|
|
|
|
let idv = self.get_vertex_id(&v)?;
|
|
|
|
if idu == idv {
|
|
|
|
return Err("Cannot add edge from vertex to itself in flow graph".into());
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
2022-11-07 18:34:40 +00:00
|
|
|
|
2022-10-10 15:21:13 +00:00
|
|
|
let rev_u = self.graph[idu].len();
|
|
|
|
let rev_v = self.graph[idv].len();
|
|
|
|
self.graph[idu].push(FlowEdge {
|
|
|
|
cap: c,
|
|
|
|
dest: idv,
|
|
|
|
flow: 0,
|
|
|
|
rev: rev_v,
|
|
|
|
});
|
|
|
|
self.graph[idv].push(FlowEdge {
|
|
|
|
cap: 0,
|
|
|
|
dest: idu,
|
|
|
|
flow: 0,
|
|
|
|
rev: rev_u,
|
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function returns the list of vertices that receive a positive flow from
|
|
|
|
/// vertex v.
|
2022-10-10 15:21:13 +00:00
|
|
|
pub fn get_positive_flow_from(&self, v: Vertex) -> Result<Vec<Vertex>, String> {
|
2022-11-07 18:34:40 +00:00
|
|
|
let idv = self.get_vertex_id(&v)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut result = Vec::<Vertex>::new();
|
|
|
|
for edge in self.graph[idv].iter() {
|
|
|
|
if edge.flow > 0 {
|
2022-11-07 18:34:40 +00:00
|
|
|
result.push(self.id_to_vertex[edge.dest]);
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function returns the value of the flow incoming to v.
|
2022-11-07 20:12:11 +00:00
|
|
|
pub fn get_inflow(&self, v: Vertex) -> Result<i64, String> {
|
2022-11-07 18:34:40 +00:00
|
|
|
let idv = self.get_vertex_id(&v)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut result = 0;
|
|
|
|
for edge in self.graph[idv].iter() {
|
|
|
|
result += max(0, self.graph[edge.dest][edge.rev].flow);
|
|
|
|
}
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function returns the value of the flow outgoing from v.
|
2022-11-07 20:12:11 +00:00
|
|
|
pub fn get_outflow(&self, v: Vertex) -> Result<i64, String> {
|
2022-11-07 18:34:40 +00:00
|
|
|
let idv = self.get_vertex_id(&v)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut result = 0;
|
|
|
|
for edge in self.graph[idv].iter() {
|
|
|
|
result += max(0, edge.flow);
|
|
|
|
}
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function computes the flow total value by computing the outgoing flow
|
|
|
|
/// from the source.
|
2022-11-07 20:12:11 +00:00
|
|
|
pub fn get_flow_value(&mut self) -> Result<i64, String> {
|
2022-10-10 15:21:13 +00:00
|
|
|
self.get_outflow(Vertex::Source)
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function shuffles the order of the edge lists. It keeps the ids of the
|
|
|
|
/// reversed edges consistent.
|
2022-10-10 15:21:13 +00:00
|
|
|
fn shuffle_edges(&mut self) {
|
2023-09-21 09:21:35 +00:00
|
|
|
// We use deterministic randomness so that the layout calculation algorihtm
|
|
|
|
// will output the same thing every time it is run. This way, the results
|
|
|
|
// pre-calculated in `garage layout show` will match exactly those used
|
|
|
|
// in practice with `garage layout apply`
|
|
|
|
let mut rng = rand::rngs::StdRng::from_seed([0x12u8; 32]);
|
2022-10-10 15:21:13 +00:00
|
|
|
for i in 0..self.graph.len() {
|
|
|
|
self.graph[i].shuffle(&mut rng);
|
2022-11-07 18:34:40 +00:00
|
|
|
// We need to update the ids of the reverse edges.
|
2022-10-10 15:21:13 +00:00
|
|
|
for j in 0..self.graph[i].len() {
|
|
|
|
let target_v = self.graph[i][j].dest;
|
|
|
|
let target_rev = self.graph[i][j].rev;
|
|
|
|
self.graph[target_v][target_rev].rev = j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// Computes an upper bound of the flow on the graph
|
2022-11-07 20:12:11 +00:00
|
|
|
pub fn flow_upper_bound(&self) -> Result<u64, String> {
|
2022-11-07 18:34:40 +00:00
|
|
|
let idsource = self.get_vertex_id(&Vertex::Source)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut flow_upper_bound = 0;
|
|
|
|
for edge in self.graph[idsource].iter() {
|
|
|
|
flow_upper_bound += edge.cap;
|
|
|
|
}
|
2022-11-07 18:34:40 +00:00
|
|
|
Ok(flow_upper_bound)
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function computes the maximal flow using Dinic's algorithm. It starts with
|
|
|
|
/// the flow values already present in the graph. So it is possible to add some edge to
|
|
|
|
/// the graph, compute a flow, add other edges, update the flow.
|
2022-10-10 15:21:13 +00:00
|
|
|
pub fn compute_maximal_flow(&mut self) -> Result<(), String> {
|
2022-11-07 18:34:40 +00:00
|
|
|
let idsource = self.get_vertex_id(&Vertex::Source)?;
|
|
|
|
let idsink = self.get_vertex_id(&Vertex::Sink)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
|
|
|
|
let nb_vertices = self.graph.len();
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
let flow_upper_bound = self.flow_upper_bound()?;
|
2022-10-10 15:21:13 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// To ensure the dispersion of the associations generated by the
|
2023-01-05 11:09:25 +00:00
|
|
|
// assignment, we shuffle the neighbours of the nodes. Hence,
|
2022-11-07 18:34:40 +00:00
|
|
|
// the vertices do not consider their neighbours in the same order.
|
2022-10-10 15:21:13 +00:00
|
|
|
self.shuffle_edges();
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We run Dinic's max flow algorithm
|
2022-10-10 15:21:13 +00:00
|
|
|
loop {
|
2022-11-07 18:34:40 +00:00
|
|
|
// We build the level array from Dinic's algorithm.
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut level = vec![None; nb_vertices];
|
|
|
|
|
|
|
|
let mut fifo = VecDeque::new();
|
|
|
|
fifo.push_back((idsource, 0));
|
2022-11-07 18:34:40 +00:00
|
|
|
while let Some((id, lvl)) = fifo.pop_front() {
|
2023-09-18 10:17:07 +00:00
|
|
|
if level[id].is_none() {
|
2022-11-07 18:34:40 +00:00
|
|
|
// it means id has not yet been reached
|
|
|
|
level[id] = Some(lvl);
|
|
|
|
for edge in self.graph[id].iter() {
|
2022-11-07 20:12:11 +00:00
|
|
|
if edge.cap as i64 - edge.flow > 0 {
|
2022-11-07 18:34:40 +00:00
|
|
|
fifo.push_back((edge.dest, lvl + 1));
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-09-18 10:17:07 +00:00
|
|
|
if level[idsink].is_none() {
|
2022-11-07 18:34:40 +00:00
|
|
|
// There is no residual flow
|
2022-10-10 15:21:13 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-11-07 18:34:40 +00:00
|
|
|
// Now we run DFS respecting the level array
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut next_nbd = vec![0; nb_vertices];
|
2022-11-07 18:34:40 +00:00
|
|
|
let mut lifo = Vec::new();
|
2022-10-10 15:21:13 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
lifo.push((idsource, flow_upper_bound));
|
2022-10-10 15:21:13 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
while let Some((id, f)) = lifo.last().cloned() {
|
2022-10-10 15:21:13 +00:00
|
|
|
if id == idsink {
|
2022-11-07 18:34:40 +00:00
|
|
|
// The DFS reached the sink, we can add a
|
|
|
|
// residual flow.
|
|
|
|
lifo.pop();
|
|
|
|
while let Some((id, _)) = lifo.pop() {
|
2022-10-10 15:21:13 +00:00
|
|
|
let nbd = next_nbd[id];
|
2022-11-07 20:12:11 +00:00
|
|
|
self.graph[id][nbd].flow += f as i64;
|
2022-10-10 15:21:13 +00:00
|
|
|
let id_rev = self.graph[id][nbd].dest;
|
|
|
|
let nbd_rev = self.graph[id][nbd].rev;
|
2022-11-07 20:12:11 +00:00
|
|
|
self.graph[id_rev][nbd_rev].flow -= f as i64;
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
2022-11-07 18:34:40 +00:00
|
|
|
lifo.push((idsource, flow_upper_bound));
|
2022-10-10 15:21:13 +00:00
|
|
|
continue;
|
|
|
|
}
|
2022-11-07 18:34:40 +00:00
|
|
|
// else we did not reach the sink
|
2022-10-10 15:21:13 +00:00
|
|
|
let nbd = next_nbd[id];
|
|
|
|
if nbd >= self.graph[id].len() {
|
2022-11-07 18:34:40 +00:00
|
|
|
// There is nothing to explore from id anymore
|
|
|
|
lifo.pop();
|
|
|
|
if let Some((parent, _)) = lifo.last() {
|
2022-10-10 15:21:13 +00:00
|
|
|
next_nbd[*parent] += 1;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2022-11-07 18:34:40 +00:00
|
|
|
// else we can try to send flow from id to its nbd
|
2022-10-10 15:21:13 +00:00
|
|
|
let new_flow = min(
|
2022-11-07 20:12:11 +00:00
|
|
|
f as i64,
|
|
|
|
self.graph[id][nbd].cap as i64 - self.graph[id][nbd].flow,
|
|
|
|
) as u64;
|
2022-10-10 15:21:13 +00:00
|
|
|
if new_flow == 0 {
|
|
|
|
next_nbd[id] += 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if let (Some(lvldest), Some(lvlid)) = (level[self.graph[id][nbd].dest], level[id]) {
|
|
|
|
if lvldest <= lvlid {
|
2022-11-07 18:34:40 +00:00
|
|
|
// We cannot send flow to nbd.
|
2022-10-10 15:21:13 +00:00
|
|
|
next_nbd[id] += 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2022-11-07 18:34:40 +00:00
|
|
|
// otherwise, we send flow to nbd.
|
|
|
|
lifo.push((self.graph[id][nbd].dest, new_flow));
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function takes a flow, and a cost function on the edges, and tries to find an
|
2022-10-11 16:29:21 +00:00
|
|
|
/// equivalent flow with a better cost, by finding improving overflow cycles. It uses
|
|
|
|
/// as subroutine the Bellman Ford algorithm run up to path_length.
|
|
|
|
/// We assume that the cost of edge (u,v) is the opposite of the cost of (v,u), and
|
|
|
|
/// only one needs to be present in the cost function.
|
2022-10-10 15:21:13 +00:00
|
|
|
pub fn optimize_flow_with_cost(
|
|
|
|
&mut self,
|
|
|
|
cost: &CostFunction,
|
|
|
|
path_length: usize,
|
|
|
|
) -> Result<(), String> {
|
2022-11-07 18:34:40 +00:00
|
|
|
// We build the weighted graph g where we will look for negative cycle
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut gf = self.build_cost_graph(cost)?;
|
|
|
|
let mut cycles = gf.list_negative_cycles(path_length);
|
|
|
|
while !cycles.is_empty() {
|
2022-11-07 18:34:40 +00:00
|
|
|
// we enumerate negative cycles
|
2022-10-10 15:21:13 +00:00
|
|
|
for c in cycles.iter() {
|
|
|
|
for i in 0..c.len() {
|
2022-11-07 18:34:40 +00:00
|
|
|
// We add one flow unit to the edge (u,v) of cycle c
|
|
|
|
let idu = self.vertex_to_id[&c[i]];
|
|
|
|
let idv = self.vertex_to_id[&c[(i + 1) % c.len()]];
|
2022-10-10 15:21:13 +00:00
|
|
|
for j in 0..self.graph[idu].len() {
|
2022-11-07 18:34:40 +00:00
|
|
|
// since idu appears at most once in the cycles, we enumerate every
|
|
|
|
// edge at most once.
|
2022-10-10 15:21:13 +00:00
|
|
|
let edge = self.graph[idu][j];
|
|
|
|
if edge.dest == idv {
|
|
|
|
self.graph[idu][j].flow += 1;
|
|
|
|
self.graph[idv][edge.rev].flow -= 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gf = self.build_cost_graph(cost)?;
|
|
|
|
cycles = gf.list_negative_cycles(path_length);
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// Construct the weighted graph G_f from the flow and the cost function
|
2022-10-10 15:21:13 +00:00
|
|
|
fn build_cost_graph(&self, cost: &CostFunction) -> Result<Graph<WeightedEdge>, String> {
|
2022-11-07 18:34:40 +00:00
|
|
|
let mut g = Graph::<WeightedEdge>::new(&self.id_to_vertex);
|
|
|
|
let nb_vertices = self.id_to_vertex.len();
|
2022-10-10 15:21:13 +00:00
|
|
|
for i in 0..nb_vertices {
|
|
|
|
for edge in self.graph[i].iter() {
|
2022-11-07 20:12:11 +00:00
|
|
|
if edge.cap as i64 - edge.flow > 0 {
|
2022-11-07 18:34:40 +00:00
|
|
|
// It is possible to send overflow through this edge
|
|
|
|
let u = self.id_to_vertex[i];
|
|
|
|
let v = self.id_to_vertex[edge.dest];
|
2022-10-10 15:21:13 +00:00
|
|
|
if cost.contains_key(&(u, v)) {
|
|
|
|
g.add_edge(u, v, cost[&(u, v)])?;
|
|
|
|
} else if cost.contains_key(&(v, u)) {
|
|
|
|
g.add_edge(u, v, -cost[&(v, u)])?;
|
|
|
|
} else {
|
|
|
|
g.add_edge(u, v, 0)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(g)
|
|
|
|
}
|
2022-09-21 12:39:59 +00:00
|
|
|
}
|
|
|
|
|
2022-10-10 15:21:13 +00:00
|
|
|
impl Graph<WeightedEdge> {
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function adds a single directed weighted edge to the graph.
|
2022-11-07 20:12:11 +00:00
|
|
|
pub fn add_edge(&mut self, u: Vertex, v: Vertex, w: i64) -> Result<(), String> {
|
2022-11-07 18:34:40 +00:00
|
|
|
let idu = self.get_vertex_id(&u)?;
|
|
|
|
let idv = self.get_vertex_id(&v)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
self.graph[idu].push(WeightedEdge { w, dest: idv });
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function lists the negative cycles it manages to find after path_length
|
|
|
|
/// iterations of the main loop of the Bellman-Ford algorithm. For the classical
|
|
|
|
/// algorithm, path_length needs to be equal to the number of vertices. However,
|
|
|
|
/// for particular graph structures like in our case, the algorithm is still correct
|
|
|
|
/// when path_length is the length of the longest possible simple path.
|
|
|
|
/// See the formal description of the algorithm for more details.
|
2022-10-10 15:21:13 +00:00
|
|
|
fn list_negative_cycles(&self, path_length: usize) -> Vec<Vec<Vertex>> {
|
|
|
|
let nb_vertices = self.graph.len();
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We start with every vertex at distance 0 of some imaginary extra -1 vertex.
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut distance = vec![0; nb_vertices];
|
2022-11-07 18:34:40 +00:00
|
|
|
// The prev vector collects for every vertex from where does the shortest path come
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut prev = vec![None; nb_vertices];
|
|
|
|
|
|
|
|
for _ in 0..path_length + 1 {
|
|
|
|
for id in 0..nb_vertices {
|
|
|
|
for e in self.graph[id].iter() {
|
|
|
|
if distance[id] + e.w < distance[e.dest] {
|
|
|
|
distance[e.dest] = distance[id] + e.w;
|
|
|
|
prev[e.dest] = Some(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// If self.graph contains a negative cycle, then at this point the graph described
|
|
|
|
// by prev (which is a directed 1-forest/functional graph)
|
|
|
|
// must contain a cycle. We list the cycles of prev.
|
2022-10-10 15:21:13 +00:00
|
|
|
let cycles_prev = cycles_of_1_forest(&prev);
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// Remark that the cycle in prev is in the reverse order compared to the cycle
|
|
|
|
// in the graph. Thus the .rev().
|
2022-10-10 15:21:13 +00:00
|
|
|
return cycles_prev
|
|
|
|
.iter()
|
2022-11-07 18:34:40 +00:00
|
|
|
.map(|cycle| {
|
|
|
|
cycle
|
|
|
|
.iter()
|
|
|
|
.rev()
|
|
|
|
.map(|id| self.id_to_vertex[*id])
|
|
|
|
.collect()
|
|
|
|
})
|
2022-10-10 15:21:13 +00:00
|
|
|
.collect();
|
|
|
|
}
|
|
|
|
}
|
2022-09-21 12:39:59 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function returns the list of cycles of a directed 1 forest. It does not
|
|
|
|
/// check for the consistency of the input.
|
2022-10-10 15:21:13 +00:00
|
|
|
fn cycles_of_1_forest(forest: &[Option<usize>]) -> Vec<Vec<usize>> {
|
|
|
|
let mut cycles = Vec::<Vec<usize>>::new();
|
|
|
|
let mut time_of_discovery = vec![None; forest.len()];
|
|
|
|
|
|
|
|
for t in 0..forest.len() {
|
|
|
|
let mut id = t;
|
2022-11-07 18:34:40 +00:00
|
|
|
// while we are on a valid undiscovered node
|
2023-09-18 10:17:07 +00:00
|
|
|
while time_of_discovery[id].is_none() {
|
2022-10-10 15:21:13 +00:00
|
|
|
time_of_discovery[id] = Some(t);
|
|
|
|
if let Some(i) = forest[id] {
|
|
|
|
id = i;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2023-09-18 10:17:07 +00:00
|
|
|
if forest[id].is_some() && time_of_discovery[id] == Some(t) {
|
2022-11-07 18:34:40 +00:00
|
|
|
// We discovered an id that we explored at this iteration t.
|
|
|
|
// It means we are on a cycle
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut cy = vec![id; 1];
|
|
|
|
let mut id2 = id;
|
|
|
|
while let Some(id_next) = forest[id2] {
|
|
|
|
id2 = id_next;
|
|
|
|
if id2 != id {
|
|
|
|
cy.push(id2);
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cycles.push(cy);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cycles
|
2022-09-21 12:39:59 +00:00
|
|
|
}
|