pub fn simd_random_walk_with_restart<N, E, Ix>(
graph: &Graph<N, E, Ix>,
start: &N,
walk_length: usize,
restart_prob: f64,
rng: &mut impl Rng,
) -> Result<Vec<N>>Expand description
SIMD-optimized random walk with restart for large graphs Uses vectorized operations for better performance on large node sets