mirror of
https://github.com/ruvnet/RuView
synced 2026-08-01 19:01:42 +00:00
4b1005524e
- 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>
35 lines
834 B
TypeScript
35 lines
834 B
TypeScript
/**
|
|
* PageRank integration with O(log n) WASM solver
|
|
*/
|
|
export declare class PageRankTools {
|
|
private static wasmSolver;
|
|
/**
|
|
* Get or create WASM solver instance
|
|
*/
|
|
private static getWasmSolver;
|
|
/**
|
|
* Compute PageRank with O(log n) complexity using enhanced WASM
|
|
*/
|
|
static pageRank(params: {
|
|
adjacency: any;
|
|
damping?: number;
|
|
personalized?: number[];
|
|
}): Promise<{
|
|
pageRankVector: any;
|
|
topNodes: any;
|
|
totalScore: any;
|
|
maxScore: number;
|
|
minScore: number;
|
|
complexity_bound: any;
|
|
compression_ratio: any;
|
|
algorithm: any;
|
|
mathematical_guarantee: any;
|
|
metadata: any;
|
|
}>;
|
|
/**
|
|
* Get PageRank capabilities
|
|
*/
|
|
static getCapabilities(): any;
|
|
}
|
|
export default PageRankTools;
|