shifty-opt 0.1.5

Static analysis, normalization, and logical/physical planning over the SHACL IR
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod capability;
pub mod demand;
pub mod plan;

pub use capability::{Capability, analyze_capability};
pub use demand::{
    PathDemand, PathId, extract_algebra_demand, extract_sparql_demand, property_path_to_algebra,
};
pub use plan::{
    ClosureKind, ExprPlan, GraphScan, NativeOp, NativeQueryPlan, OpId, PathScan, PlanStats,
    QueryForm, ScanTerm, TripleScan, VarId, lower_query, lower_query_with_stats,
};