Files
ruvnet--RuView/vendor/sublinear-time-solver/dist/mcp/tools/wasm-sublinear-solver-simple.d.ts
T
ruv 4b1005524e feat: complete vendor repos, add edge intelligence and WASM modules
- Add 154 missing vendor files (gitignore was filtering them)
  - vendor/midstream: 564 files (was 561)
  - vendor/sublinear-time-solver: 1190 files (was 1039)
- Add ESP32 edge processing (ADR-039): presence, vitals, fall detection
- Add WASM programmable sensing (ADR-040/041) with wasm3 runtime
- Add firmware CI workflow (.github/workflows/firmware-ci.yml)
- Add wifi-densepose-wasm-edge crate for edge WASM modules
- Update sensing server, provision.py, UI components

Co-Authored-By: claude-flow <ruv@ruv.net>
2026-03-02 23:53:25 -05:00

26 lines
800 B
TypeScript

/**
* WASM Sublinear Solver Tools - Simple Approach (like strange-loops-mcp)
* Provides O(log n) Johnson-Lindenstrauss embedding with guaranteed sublinear complexity
*/
export declare class WasmSublinearSolverTools {
private wasmModule;
private solver;
constructor();
/**
* Initialize WASM module with O(log n) algorithms - Simple approach like strange-loops
*/
private initializeWasm;
/**
* Check if enhanced WASM with O(log n) algorithms is available
*/
isEnhancedWasmAvailable(): boolean;
/**
* Solve linear system with O(log n) complexity using Johnson-Lindenstrauss embedding
*/
solveSublinear(matrix: number[][], b: number[]): Promise<any>;
/**
* Get enhanced WASM capabilities
*/
getCapabilities(): any;
}