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
/*
 * SPDX-License-Identifier: MIT
 * Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
 */
use crate::{ActionParameterValue, UncertainParameter};
use deep_causality_core::CausalityError;

/// Trait for types that can be evaluated to a boolean decision in a CSM.
pub trait CsmEvaluable {
    /// Determines if the state is active based on the value and optional parameters.
    fn is_active(&self, params: Option<&UncertainParameter>) -> Result<bool, CausalityError>;
    /// Converts the value to an ActionParameterValue for use in actions.
    fn to_action_param(&self) -> ActionParameterValue;
}