trueno-graph 0.1.13

GPU-first embedded graph database for code analysis (call graphs, dependencies, AST traversals)
Documentation
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
//! Shortest path algorithms: Dijkstra's algorithm
//!
//! Provides shortest path computation for weighted graphs:
//! - `dijkstra`: Single-source shortest paths with non-negative weights
//! - `dijkstra_path`: Shortest path between two specific nodes
//!
//! # Example
//!
//! ```
//! use trueno_graph::{CsrGraph, NodeId, dijkstra};
//!
//! // Build a weighted graph
//! let edges = vec![
//!     (NodeId(0), NodeId(1), 1.0),
//!     (NodeId(1), NodeId(2), 2.0),
//!     (NodeId(0), NodeId(2), 5.0),
//! ];
//! let graph = CsrGraph::from_edge_list(&edges).unwrap();
//!
//! // Find shortest paths from node 0
//! let distances = dijkstra(&graph, NodeId(0));
//! assert_eq!(distances.get(&NodeId(0)), Some(&0.0));
//! assert_eq!(distances.get(&NodeId(1)), Some(&1.0));
//! assert_eq!(distances.get(&NodeId(2)), Some(&3.0)); // 0→1→2 = 3.0, not 0→2 = 5.0
//! ```

use crate::storage::CsrGraph;
use crate::NodeId;
use std::cmp::Ordering;
use std::collections::{BinaryHeap, HashMap};

/// State for Dijkstra's priority queue
#[derive(Clone, Copy)]
struct State {
    cost: f32,
    node: usize,
}

impl PartialEq for State {
    fn eq(&self, other: &Self) -> bool {
        self.cost == other.cost && self.node == other.node
    }
}

impl Eq for State {}

impl Ord for State {
    fn cmp(&self, other: &Self) -> Ordering {
        // Reverse ordering for min-heap (BinaryHeap is max-heap by default)
        other
            .cost
            .partial_cmp(&self.cost)
            .unwrap_or(Ordering::Equal)
            .then_with(|| self.node.cmp(&other.node))
    }
}

impl PartialOrd for State {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

/// Compute single-source shortest paths using Dijkstra's algorithm
///
/// Finds the shortest path from the source node to all reachable nodes.
/// Edge weights are used as distances (must be non-negative).
///
/// # Arguments
///
/// * `graph` - The CSR graph with edge weights as distances
/// * `source` - The starting node
///
/// # Returns
///
/// A `HashMap` mapping each reachable `NodeId` to its shortest distance from source.
/// Unreachable nodes are not included in the map.
///
/// # Complexity
///
/// O((V + E) log V) using a binary heap
///
/// # Example
///
/// ```
/// use trueno_graph::{CsrGraph, NodeId, dijkstra};
///
/// let edges = vec![
///     (NodeId(0), NodeId(1), 4.0),
///     (NodeId(0), NodeId(2), 1.0),
///     (NodeId(2), NodeId(1), 2.0),
/// ];
/// let graph = CsrGraph::from_edge_list(&edges).unwrap();
///
/// let distances = dijkstra(&graph, NodeId(0));
/// // Shortest to node 1: 0→2→1 = 3.0 (not 0→1 = 4.0)
/// assert_eq!(distances.get(&NodeId(1)), Some(&3.0));
/// ```
#[must_use]
pub fn dijkstra(graph: &CsrGraph, source: NodeId) -> HashMap<NodeId, f32> {
    let n = graph.num_nodes();
    if n == 0 {
        return HashMap::new();
    }

    let source_idx = source.0 as usize;
    if source_idx >= n {
        return HashMap::new();
    }

    let mut distances: HashMap<NodeId, f32> = HashMap::new();
    let mut heap = BinaryHeap::new();

    // Start with source
    distances.insert(source, 0.0);
    heap.push(State {
        cost: 0.0,
        node: source_idx,
    });

    while let Some(State { cost, node }) = heap.pop() {
        #[allow(clippy::cast_possible_truncation)]
        let node_id = NodeId(node as u32);

        // Skip if we've found a better path
        if let Some(&d) = distances.get(&node_id) {
            if cost > d {
                continue;
            }
        }

        // Explore neighbors using adjacency (targets, weights)
        let (neighbors, weights) = graph.adjacency(node_id);
        for (i, &neighbor) in neighbors.iter().enumerate() {
            let neighbor_id = NodeId(neighbor);
            let weight = weights.get(i).copied().unwrap_or(1.0);

            let next_cost = cost + weight;

            // Update if this path is shorter
            let is_shorter = distances.get(&neighbor_id).map_or(true, |&d| next_cost < d);

            if is_shorter {
                distances.insert(neighbor_id, next_cost);
                heap.push(State {
                    cost: next_cost,
                    node: neighbor as usize,
                });
            }
        }
    }

    distances
}

/// Find the shortest path between two nodes
///
/// Returns the distance and the path (sequence of nodes) from source to target.
///
/// # Arguments
///
/// * `graph` - The CSR graph with edge weights as distances
/// * `source` - The starting node
/// * `target` - The destination node
///
/// # Returns
///
/// * `Some((distance, path))` if a path exists
/// * `None` if target is unreachable from source
///
/// # Example
///
/// ```
/// use trueno_graph::{CsrGraph, NodeId, dijkstra_path};
///
/// let edges = vec![
///     (NodeId(0), NodeId(1), 1.0),
///     (NodeId(1), NodeId(2), 2.0),
/// ];
/// let graph = CsrGraph::from_edge_list(&edges).unwrap();
///
/// let result = dijkstra_path(&graph, NodeId(0), NodeId(2));
/// assert!(result.is_some());
/// let (dist, path) = result.unwrap();
/// assert_eq!(dist, 3.0);
/// assert_eq!(path, vec![NodeId(0), NodeId(1), NodeId(2)]);
/// ```
#[must_use]
pub fn dijkstra_path(
    graph: &CsrGraph,
    source: NodeId,
    target: NodeId,
) -> Option<(f32, Vec<NodeId>)> {
    let n = graph.num_nodes();
    if n == 0 {
        return None;
    }

    let source_idx = source.0 as usize;
    let target_idx = target.0 as usize;
    if source_idx >= n || target_idx >= n {
        return None;
    }

    // Same source and target
    if source == target {
        return Some((0.0, vec![source]));
    }

    let mut distances: HashMap<NodeId, f32> = HashMap::new();
    let mut predecessors: HashMap<NodeId, NodeId> = HashMap::new();
    let mut heap = BinaryHeap::new();

    distances.insert(source, 0.0);
    heap.push(State {
        cost: 0.0,
        node: source_idx,
    });

    while let Some(State { cost, node }) = heap.pop() {
        #[allow(clippy::cast_possible_truncation)]
        let node_id = NodeId(node as u32);

        // Found target
        if node_id == target {
            // Reconstruct path
            let mut path = vec![target];
            let mut current = target;
            while let Some(&pred) = predecessors.get(&current) {
                path.push(pred);
                current = pred;
            }
            path.reverse();
            return Some((cost, path));
        }

        // Skip if we've found a better path
        if let Some(&d) = distances.get(&node_id) {
            if cost > d {
                continue;
            }
        }

        // Explore neighbors using adjacency (targets, weights)
        let (neighbors, weights) = graph.adjacency(node_id);
        for (i, &neighbor) in neighbors.iter().enumerate() {
            let neighbor_id = NodeId(neighbor);
            let weight = weights.get(i).copied().unwrap_or(1.0);

            let next_cost = cost + weight;

            let is_shorter = distances.get(&neighbor_id).map_or(true, |&d| next_cost < d);

            if is_shorter {
                distances.insert(neighbor_id, next_cost);
                predecessors.insert(neighbor_id, node_id);
                heap.push(State {
                    cost: next_cost,
                    node: neighbor as usize,
                });
            }
        }
    }

    None // Target unreachable
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_empty_graph() {
        let graph = CsrGraph::new();
        let distances = dijkstra(&graph, NodeId(0));
        assert!(distances.is_empty());
    }

    #[test]
    fn test_single_edge() {
        let edges = vec![(NodeId(0), NodeId(1), 5.0)];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let distances = dijkstra(&graph, NodeId(0));
        assert_eq!(distances.get(&NodeId(0)), Some(&0.0));
        assert_eq!(distances.get(&NodeId(1)), Some(&5.0));
    }

    #[test]
    fn test_chain() {
        // 0 --1.0--> 1 --2.0--> 2
        let edges = vec![(NodeId(0), NodeId(1), 1.0), (NodeId(1), NodeId(2), 2.0)];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let distances = dijkstra(&graph, NodeId(0));
        assert_eq!(distances.get(&NodeId(0)), Some(&0.0));
        assert_eq!(distances.get(&NodeId(1)), Some(&1.0));
        assert_eq!(distances.get(&NodeId(2)), Some(&3.0));
    }

    #[test]
    fn test_shorter_path_via_intermediate() {
        // Direct: 0 --5.0--> 2
        // Via 1:  0 --1.0--> 1 --2.0--> 2 (total: 3.0)
        let edges = vec![
            (NodeId(0), NodeId(1), 1.0),
            (NodeId(1), NodeId(2), 2.0),
            (NodeId(0), NodeId(2), 5.0),
        ];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let distances = dijkstra(&graph, NodeId(0));
        assert_eq!(distances.get(&NodeId(2)), Some(&3.0)); // Not 5.0
    }

    #[test]
    fn test_unreachable_node() {
        // 0 → 1, 2 → 3 (disconnected)
        let edges = vec![(NodeId(0), NodeId(1), 1.0), (NodeId(2), NodeId(3), 1.0)];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let distances = dijkstra(&graph, NodeId(0));
        assert_eq!(distances.get(&NodeId(0)), Some(&0.0));
        assert_eq!(distances.get(&NodeId(1)), Some(&1.0));
        assert!(distances.get(&NodeId(2)).is_none());
        assert!(distances.get(&NodeId(3)).is_none());
    }

    #[test]
    fn test_dijkstra_path_simple() {
        let edges = vec![(NodeId(0), NodeId(1), 1.0), (NodeId(1), NodeId(2), 2.0)];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let result = dijkstra_path(&graph, NodeId(0), NodeId(2));
        assert!(result.is_some());
        let (dist, path) = result.unwrap();
        assert_eq!(dist, 3.0);
        assert_eq!(path, vec![NodeId(0), NodeId(1), NodeId(2)]);
    }

    #[test]
    fn test_dijkstra_path_same_node() {
        let edges = vec![(NodeId(0), NodeId(1), 1.0)];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let result = dijkstra_path(&graph, NodeId(0), NodeId(0));
        assert!(result.is_some());
        let (dist, path) = result.unwrap();
        assert_eq!(dist, 0.0);
        assert_eq!(path, vec![NodeId(0)]);
    }

    #[test]
    fn test_dijkstra_path_unreachable() {
        let edges = vec![(NodeId(0), NodeId(1), 1.0), (NodeId(2), NodeId(3), 1.0)];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let result = dijkstra_path(&graph, NodeId(0), NodeId(3));
        assert!(result.is_none());
    }

    #[test]
    fn test_dijkstra_path_chooses_shorter() {
        // 0 --5.0--> 2 (direct)
        // 0 --1.0--> 1 --2.0--> 2 (via 1, total 3.0)
        let edges = vec![
            (NodeId(0), NodeId(1), 1.0),
            (NodeId(1), NodeId(2), 2.0),
            (NodeId(0), NodeId(2), 5.0),
        ];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let result = dijkstra_path(&graph, NodeId(0), NodeId(2));
        assert!(result.is_some());
        let (dist, path) = result.unwrap();
        assert_eq!(dist, 3.0);
        assert_eq!(path, vec![NodeId(0), NodeId(1), NodeId(2)]);
    }

    #[test]
    fn test_diamond_shortest_path() {
        // Diamond with different weights
        //     1 (weight 1)
        //    / \
        //   0   3  (1→3: 1, 2→3: 5)
        //    \ /
        //     2 (weight 2)
        let edges = vec![
            (NodeId(0), NodeId(1), 1.0),
            (NodeId(0), NodeId(2), 2.0),
            (NodeId(1), NodeId(3), 1.0),
            (NodeId(2), NodeId(3), 5.0),
        ];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let result = dijkstra_path(&graph, NodeId(0), NodeId(3));
        assert!(result.is_some());
        let (dist, path) = result.unwrap();
        assert_eq!(dist, 2.0); // 0→1→3
        assert_eq!(path, vec![NodeId(0), NodeId(1), NodeId(3)]);
    }

    #[test]
    fn test_cycle_in_graph() {
        // Cycle: 0 → 1 → 2 → 0, with 0 → 3
        let edges = vec![
            (NodeId(0), NodeId(1), 1.0),
            (NodeId(1), NodeId(2), 1.0),
            (NodeId(2), NodeId(0), 1.0),
            (NodeId(0), NodeId(3), 10.0),
        ];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let distances = dijkstra(&graph, NodeId(0));
        assert_eq!(distances.get(&NodeId(0)), Some(&0.0));
        assert_eq!(distances.get(&NodeId(1)), Some(&1.0));
        assert_eq!(distances.get(&NodeId(2)), Some(&2.0));
        assert_eq!(distances.get(&NodeId(3)), Some(&10.0));
    }

    #[test]
    fn test_source_out_of_bounds() {
        let edges = vec![(NodeId(0), NodeId(1), 1.0)];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let distances = dijkstra(&graph, NodeId(100));
        assert!(distances.is_empty());
    }

    #[test]
    fn test_zero_weight_edge() {
        let edges = vec![(NodeId(0), NodeId(1), 0.0), (NodeId(1), NodeId(2), 0.0)];
        let graph = CsrGraph::from_edge_list(&edges).unwrap();

        let distances = dijkstra(&graph, NodeId(0));
        assert_eq!(distances.get(&NodeId(2)), Some(&0.0));
    }
}