solvr 0.2.0

Advanced computing library for real-world problem solving - optimization, differential equations, interpolation, statistics, and more
Documentation
//! WebGPU implementation of spatial algorithms.
//!
//! This module implements the spatial algorithm traits for WebGPU
//! by delegating to the generic implementations in `impl_generic/`.
//!
//! # Limitations
//!
//! - Only F32 is supported (WGSL doesn't support F64)

mod balltree;
mod convex_hull;
mod delaunay;
mod distance;
mod distance_transform;
mod halfspace_intersection;
mod kdtree;
mod mesh;
mod procrustes;
mod rotation;
mod spherical_voronoi;
mod voronoi;