causal-hub 0.0.5

A library for causal models, inference and discovery.
Documentation
#![deny(clippy::expect_used)]
#![deny(clippy::unwrap_used)]
#![warn(missing_docs)]
//! # causal-hub
//!
//! `causal-hub` is a library for causal inference and causal discovery.
//!
//! It provides tools for estimating causal effects, learning causal structures, and more.

// Link to the BLAS library.
#[cfg(not(any(
    feature = "accelerate-system",
    feature = "openblas-static",
    feature = "openblas-system"
)))]
compile_error!(
    "Failed to find a BLAS implementation. See: https://github.com/AlessioZanga/causal-hub#blas."
);
#[cfg(any(
    feature = "accelerate-system",
    feature = "openblas-static",
    feature = "openblas-system"
))]
extern crate blas_src;

/// Assets such as datasets, models, and other resources.
pub mod assets;
/// Dataset structures.
pub mod datasets;
/// Parameter and structure learning algorithms.
pub mod estimators;
/// Inference algorithms.
pub mod inference;
/// Input/output functions.
pub mod io;
/// Models structures.
pub mod models;
/// Random generators.
pub mod random;
/// Sampling algorithms.
pub mod samplers;
/// Support types.
pub mod types;
/// Utility functions.
pub mod utils;