magellan 4.12.2

Deterministic codebase mapping tool for local development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Symbol scorer for ranking candidates
//!
//! Computes scores for symbols based on static, CFG, and temporal features.
//! Enables fast candidate selection for optimization, review, or vulnerability analysis.

pub mod extract;
pub mod ops;
pub mod schema;
pub mod score;

pub use extract::{FeatureExtractor, SymbolFeatures};
pub use ops::{ScoreFilters, ScorerOps, ScorerRunSummary};
pub use schema::{ScorerFeature, ScorerRun, SymbolScore};
pub use score::Scorer;