narust-158 0.3.1

A Rust reimplementation of OpenNARS 1.5.8
Documentation
//! NARS推理中所用到的「数值函数」
//! * 🎯为更后续的「推理规则」提供数值推导支持
//!   * 推理依据,如:回答问题
//!   * 推理结果,如:预算重新分配
//!   * 控制依据,如:袋中Item的优先级调整(激活、遗忘……)
//! * 📄实用函数
//! * 📄真值函数
//! * 📄预算函数
//!
//! * 🚩【2024-05-16 14:04:59】重构并独立成单独的子模块

nar_dev_utils::mods! {
    // 实用函数 `UtilityFunctions`
    pub use utility_functions;

    // 真值函数 `TruthFunctions`
    pub use truth_functions;

    // 预算值函数 `BudgetFunctions`
    pub use budget_functions;
}