agentic_evolve_core/matching/mod.rs
1//! Pattern matching — find the best pattern for a given function signature.
2
3pub mod composite;
4pub mod context;
5pub mod fuzzy;
6pub mod semantic;
7pub mod signature;
8
9pub use composite::CompositeMatcher;
10pub use context::ContextMatcher;
11pub use fuzzy::FuzzyMatcher;
12pub use semantic::SemanticMatcher;
13pub use signature::SignatureMatcher;