deep_causality 0.13.5

Computational causality library. Provides causality graph, collections, context and causal reasoning.
Documentation
/*
 * SPDX-License-Identifier: MIT
 * Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
 */

/// Marker trait to identify numeric scalar types.
///
/// This trait is meant to distinguish primitive, copyable, and comparable
/// scalar types (like `f64`, `i64`, `u32`) from structured data types
/// (like `Data<f64>`, `Vec<T>`, or symbolic inputs).
///
/// # Purpose
/// Used to gate generic causal operations like `verify_single_cause`
/// or `reason_all_causes()` when working with raw scalar inputs.
///
/// # Trait Bounds
/// Scalar values must be:
/// - `Copy`: to avoid borrowing complexity
/// - `Clone`: for repeated safe use
/// - `PartialOrd`: for threshold logic
///
/// # Examples
/// ```rust
/// use deep_causality::ScalarValue;
///
/// fn process_value<T: ScalarValue>(val: T) -> bool {
///     val > T::default()
/// }
/// ```
pub trait ScalarValue: Copy + Clone + PartialOrd + Default {}

// Blanket implementations for primitive scalar types
impl ScalarValue for f64 {}
impl ScalarValue for f32 {}
impl ScalarValue for i64 {}
impl ScalarValue for i32 {}
impl ScalarValue for u64 {}
impl ScalarValue for u32 {}
impl ScalarValue for usize {}