Skip to content
Draft
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
4 changes: 4 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ members = [
"crates/ruvector-streaming-qng",
# Entropy-adaptive ANN beam search: live Shannon entropy gates beam width (ADR-303)
"crates/ruvector-entropy-ann",
# Distance-adaptive beam search: (1+gamma)*d_k stopping rule for graph ANN traversal (ADR-340)
"crates/ruvector-dab-search",
# PIR #859 workspace-membership sweep: these crates were dangling —
# present under crates/ but neither in members nor exclude, so their
# tests and lints never ran in CI.
Expand Down
17 changes: 17 additions & 0 deletions crates/ruvector-dab-search/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "ruvector-dab-search"
version = "0.1.0"
edition = "2021"
description = "Distance-adaptive beam search stopping rule for ANN graph traversal: a (1+gamma)*d_k relative-distance stopping criterion replacing fixed ef_search budgets"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ruvnet/ruvector"
keywords = ["ann", "hnsw", "vector-search", "adaptive", "beam-search"]
categories = ["algorithms", "data-structures"]

[[bin]]
name = "benchmark"
path = "src/bin/benchmark.rs"

[profile.release]
opt-level = 3
lto = "thin"
Loading
Loading