simd_random_walk_with_restart

Function simd_random_walk_with_restart 

Source
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>>
where N: Node + Clone + Hash + Eq + Debug, E: EdgeWeight, Ix: IndexType,
Expand description

SIMD-optimized random walk with restart for large graphs Uses vectorized operations for better performance on large node sets