causal_hub/lib.rs
1#![warn(missing_docs)]
2//! # CausalHub
3//!
4//! CausalHub is a library for causal inference and causal discovery.
5//! It provides tools for estimating causal effects, learning causal structures, and more.
6
7// Link to the BLAS library.
8#[cfg(any(feature = "openblas-static", feature = "openblas-system"))]
9extern crate blas_src;
10
11/// Assets such as datasets, models, and other resources.
12pub mod assets;
13/// Dataset structures.
14pub mod datasets;
15/// Parameter and structure learning algorithms.
16pub mod estimators;
17/// Inference algorithms.
18pub mod inference;
19/// Input/output functions.
20pub mod io;
21/// Models structures.
22pub mod models;
23/// Random generators.
24pub mod random;
25/// Sampling algorithms.
26pub mod samplers;
27/// Support types.
28pub mod types;
29/// Utility functions.
30pub mod utils;