cifly 0.1.2

cifly is the Rust core that powers the CIfly declarative framework for efficient causal inference algorithms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Declarative framework for designing efficient causal inference algorithms.
//!
//! Allows for the specification of reachability-based algorithm with rule tables.
//! Best used through the wrapper packages ciflypy and ciflyr for Python and R.
//! Find more information on the [CIfly website](https://cifly.pages.dev).

mod array_nd;
mod expression;
pub mod instance;
pub mod reach;
pub mod ruletable;
pub use instance::{Graph, ParseGraphError, ParseSetsError, Sets};
pub use reach::Settings;
pub use ruletable::{ReadRuletableError, Ruletable};