WASM bindings for the RuVector sublinear-time solver.
Exposes a [JsSolver] struct that can be constructed from JavaScript and
used to solve sparse linear systems, compute Personalized PageRank, and
estimate solve complexity -- all within the browser or any WASM runtime.
Quick Start (JavaScript)
import from "ruvector-solver-wasm";
const solver = ;
// CSR representation of a 3x3 diagonally-dominant matrix.
const values = ;
const colIdx = ;
const rowPtrs = ;
const rhs = ;
const result = solver.;
console.log;