deep_causality 0.13.5

Computational causality library. Provides causality graph, collections, context and causal reasoning.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SPDX-License-Identifier: MIT
 * Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
 */

use criterion::criterion_main;

mod benchmarks;

criterion_main! {
    benchmarks::bench_collection::causality_collection,
    benchmarks::bench_map::causality_map,
    benchmarks::bench_monad::monad_benches,
    benchmarks::bench_graph::linear_graph,
    benchmarks::bench_multi_cause_graph::multi_layer_graph,
}