fix(mincut): update SIMD distance operations

This commit is contained in:
Claude 2026-01-25 15:06:49 +00:00
parent 26f8db0fa5
commit 605bb34b3f

View file

@ -400,6 +400,7 @@ pub struct PriorityEntry {
}
impl PriorityEntry {
/// Create a new priority entry with given distance and vertex.
pub fn new(distance: f64, vertex: VertexId) -> Self {
Self { distance, vertex }
}