Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
58 changes: 29 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.1.28"
version = "0.1.29"
edition = "2021"
rust-version = "1.77"
license = "MIT"
Expand Down
4 changes: 3 additions & 1 deletion crates/ruvector-mincut/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ Learn to build networks that think for themselves. These examples demonstrate se
| **Time Crystal** | Self-sustaining periodic coordination patterns | `cargo run -p ruvector-mincut --release --example time_crystal` |
| **Morphogenetic** | Networks that grow like biological organisms | `cargo run -p ruvector-mincut --release --example morphogenetic` |
| **Neural Optimizer** | ML that learns optimal graph configurations | `cargo run -p ruvector-mincut --release --example neural_optimizer` |
| **Temporal Hypergraph** | Time-varying hyperedges with causal constraints (all 5 phases) | `cd examples/mincut && cargo run --release --example temporal_hypergraph` |
| **Federated Loops** | Multi-system mutual observation with spike-based consensus (all 4 phases) | `cd examples/mincut && cargo run --release --example federated_loops` |

See the full [Examples Guide](https://github.com/ruvnet/ruvector/tree/main/examples/mincut) for detailed explanations and real-world applications.

Expand Down Expand Up @@ -917,7 +919,7 @@ This implementation is based on research in dynamic graph algorithms:

**Built with ❤️ by [ruv.io](https://ruv.io)**

**Status**: Production-ready • **Version**: 0.1.28 • **Rust Version**: 1.77+ • **Tests**: 448+ passing
**Status**: Production-ready • **Version**: 0.1.29 • **Rust Version**: 1.77+ • **Tests**: 448+ passing

*Keywords: rust, minimum-cut, dynamic-graph, graph-algorithm, connectivity, network-analysis, subpolynomial, real-time, wasm, simd*

Expand Down
4 changes: 2 additions & 2 deletions examples/mincut/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions examples/mincut/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,15 @@ path = "neural_optimizer/main.rs"
[[example]]
name = "benchmarks"
path = "benchmarks/main.rs"

[[example]]
name = "snn_integration"
path = "snn_integration/main.rs"

[[example]]
name = "temporal_hypergraph"
path = "temporal_hypergraph/main.rs"

[[example]]
name = "federated_loops"
path = "federated_loops/main.rs"
Loading