ipfrs-tensorlogic 0.2.0

Zero-copy tensor operations and logic programming for content-addressed storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Full-featured Fuzzy Logic Engine with Mamdani inference and multiple
//! defuzzification strategies.
//!
//! Provides membership functions (Triangle, Trapezoid, Gaussian, Bell, Sigmoid,
//! Singleton, Linear), tree-structured antecedent expressions (And / Or / Not /
//! Very / Somewhat), rule-based Mamdani inference, and five defuzzification
//! methods (Centroid, Bisector, MeanOfMaxima, LargestOfMaxima, SmallestOfMaxima).

pub mod functions;
pub mod types;

// Re-export all types
pub use types::*;

#[cfg(test)]
mod tests;