deep_causality_uncertain/alias/mod.rs
1/*
2 * SPDX-License-Identifier: MIT
3 * Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
4 */
5use crate::{MaybeUncertain, Uncertain};
6
7pub type UncertainBool = Uncertain<bool>;
8pub type UncertainF64 = Uncertain<f64>;
9
10pub type MaybeUncertainBool = MaybeUncertain<bool>;
11pub type MaybeUncertainF64 = MaybeUncertain<f64>;