forge-engine 0.2.0

Causal edit attribution and structured patch evaluation engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod graph;
pub mod instrumentation;
pub mod predictor;
pub mod store;

pub use graph::{CausalEdge, CausalGraph, CausalNode};
pub use instrumentation::{
    attribute_effects, build_edit_op_signature, compute_run_hash, AttributedRunResult,
    AttributionTriple, EditOpSignature,
};
pub use predictor::{predict, CausalPrediction, CoverageSummary, RiskFlag};
pub use store::{load_graph, load_graph_with_tx, update_graph, update_graph_with_tx, UpdateResult};