Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
9f54d50
docs(mincut): Add ADR/DDC for Anytime-Valid Coherence Gate
claude Jan 17, 2026
b49ce30
docs(mincut): Enhance ADR-001 with security, performance, and distrib…
claude Jan 17, 2026
6cfda00
docs(mincut): Add 256-tile WASM fabric mapping for coherence gate
claude Jan 17, 2026
0346565
docs(mincut): Complete ADR-001 with API, migration, observability, an…
claude Jan 17, 2026
95f5286
docs(mincut): Add hybrid agent/human workflow to ADR-001
claude Jan 17, 2026
3781987
feat: Implement Cognitum Coherence Gate - 256-tile WASM fabric
claude Jan 17, 2026
edc542d
feat: Add runnable examples for coherence gate
claude Jan 17, 2026
5bc94ac
docs(ruQu): Add comprehensive quantum control crate documentation
claude Jan 17, 2026
9c23228
feat(ruQu): Implement complete quantum coherence gate crate
claude Jan 17, 2026
c6b2aae
security(ruQu): Implement Blake3 hash chain and Ed25519 signature ver…
claude Jan 17, 2026
89bfaed
feat(ruQu): Integrate real SubpolynomialMinCut O(n^{o(1)}) algorithm
claude Jan 17, 2026
c186373
feat(ruQu): Add decoder, Ed25519 signing, and SIMD optimizations
claude Jan 17, 2026
6fffe7a
perf(ruQu): Optimize hot paths and add coherence simulation
claude Jan 17, 2026
c709eda
feat(ruQu): Add coherence-optimized attention and update README
claude Jan 17, 2026
1d6cb23
feat(ruQu): Add advanced features - parallel, adaptive, metrics, stim
claude Jan 17, 2026
a47fe55
feat(ruQu): Add drift detection and research-based enhancements
claude Jan 17, 2026
726d260
feat(ruQu): Add integrated QEC simulation with drift detection and mo…
claude Jan 17, 2026
a46022f
feat(ruQu): Add coherence gate research prototype
claude Jan 17, 2026
f052135
feat(ruQu): Add validated min-cut pre-filter for QEC decoding
claude Jan 17, 2026
cf09b75
feat(ruQu): Add production-ready demo, traits, and schema
claude Jan 17, 2026
dfc73da
feat(ruQu): Add validated early warning system with optimized thresholds
claude Jan 17, 2026
a7c49cd
feat(ruQu): Add predictive evaluation framework and structural signal…
claude Jan 17, 2026
8a7ad9e
docs(ruQu): Add vision statement for AI-infused quantum computing
claude Jan 17, 2026
5ff6c43
docs(ruQu): Add limitations, unknowns, and roadmap for publication re…
claude Jan 17, 2026
2844809
chore: Bump version to 0.1.32
ruvnet Jan 17, 2026
a9f0718
chore: Publish cognitum-gate-tilezero v0.1.0 and ruqu v0.1.32
ruvnet Jan 17, 2026
a77fc63
docs(cognitum-gate-tilezero): Add comprehensive README
ruvnet Jan 17, 2026
8de0645
Refactor code structure for improved readability and maintainability
ruvnet Jan 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10,115 changes: 766 additions & 9,349 deletions .ruvector/intelligence.json

Large diffs are not rendered by default.

376 changes: 314 additions & 62 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,15 @@ members = [
"crates/ruvector-math",
"crates/ruvector-math-wasm",
"examples/benchmarks",
"crates/cognitum-gate-kernel",
"crates/cognitum-gate-tilezero",
"crates/mcp-gate",
"crates/ruQu",
]
resolver = "2"

[workspace.package]
version = "0.1.31"
version = "0.1.32"
edition = "2021"
rust-version = "1.77"
license = "MIT"
Expand Down
44 changes: 44 additions & 0 deletions crates/cognitum-gate-kernel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[package]
name = "cognitum-gate-kernel"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
license = "MIT OR Apache-2.0"
authors = ["RuVector Contributors"]
description = "No-std WASM kernel for 256-tile coherence gate fabric"
keywords = ["wasm", "coherence", "mincut", "distributed", "no_std"]
categories = ["algorithms", "no-std", "wasm"]
repository = "https://github.com/ruvnet/ruvector"
readme = "README.md"

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
# Path dependency to ruvector-mincut for shared types (only for std builds)
ruvector-mincut = { version = "0.1.30", default-features = false, features = ["wasm"], optional = true }

# no_std compatible math
libm = "0.2"

[target.'cfg(target_arch = "wasm32")'.dependencies]
# WASM-specific dependencies (none needed for core kernel)

[dev-dependencies]
proptest = "1.4"
criterion = { version = "0.5", features = ["html_reports"] }

[[bench]]
name = "benchmarks"
harness = false

[features]
default = ["std"]
std = ["ruvector-mincut"]

[profile.release]
opt-level = "z" # Optimize for size
lto = true # Enable LTO for smaller binaries
codegen-units = 1 # Better optimization
panic = "abort" # Smaller binary, no unwinding
strip = true # Strip symbols
Loading