Skip to main content

Library for martice operations

Project description

logo.png

MUFLON: Matrix Utility for Fuzzy Logic Operations and Norms

Muflon is a Python library designed for processing Intuitionistic Fuzzy Values (IFVs). It handles complex matrix operations by automatically splitting data into two parallel streams:

Membership (μ): Processed via T-Norms.

Non-Membership (ν): Processed via S-Conorms.

Installation

pip install muflon

Core Concept: Tuple Processing

The system treats every data cell as a tuple $(i_1, i_2)$, representing:

  1. Membership ($\mu$): The first value ($i_1$).
  2. Non-Membership ($\nu$): The second value ($i_2$).

The script automatically splits these into two parallel calculation streams and produces two distinct result matrices:

  • Result 1: Derived from the matrix of first numbers ($i_1, j_1, \dots$).
  • Result 2: Derived from the matrix of second numbers ($i_2, j_2, \dots$).

Data Format Requirements

Muflon is designed to work with CSV files where every cell represents a tuple ($\mu$,$\nu$).

Feature Separator Example Notes
Column Separator ; col1;col2;col3 Standard CSV delimiter for this tool.
Tuple Separator , 0.3, 0.7 Crucial: Used strictly to split $\mu$ and $\nu$ values inside a cell.
Decimal Point . 0.5 Standard float notation.

CSV Structure Example (Data.csv)

0.3, 0.7; 0.2, 0.1; 0.5, 0.9
0.7, 0.4; 0.6, 0.2; 1.0, 0.5

Cell 0.3, 0.7: The tool parses 0.3 into the Mu Matrix and 0.7 into the Nu Matrix.

Empty Tuple Values: If a cell is just 0.5, the second value defaults to 0.0.

Available Operators

Type Code Alias Description
T-Norms T_M min Minimum (Zadeh)
T_P product Algebraic Product
T_L lukasiewicz Bounded Difference
S-Conorms S_M max Maximum
S_P probabilistic Probabilistic Sum
S_L bounded_sum Bounded Sum
Implications I_TM Godel Implication
I_TP Goguen Implication
I_TL Lukasiewicz Implication
Dual Implications DI_TM Dual Godel Implication
DI_TP Dual Goguen Implication
DI_TL Dual Lukasiewicz Implication

Tuple Processing & Joined Matrices

The core philosophy of Muflon is handling Intuitionistic Fuzzy Values (IFVs) as tuples $(\mu, \nu)$. The library provides a seamless workflow for splitting, processing, and joining these matrices back together.

1. Automatic Splitting

When loading data via parse_data_to_matrices(), a cell formatted as 0.3, 0.7 is automatically parsed into two separate working matrices:

  • $\mu$ Matrix: Receives 0.3 (processed via T-Norms).
  • $\nu$ Matrix: Receives 0.7 (processed via S-Conorms).

2. Joined High-Level Operations

Instead of manually running operations on both matrices, you can use the joined functions. These execute calculations for both streams in parallel and instantly join the results back into a single matrix of tuples:

  • fuzzy_composition_joined(...): Performs matrix composition and returns a matrix of $(\mu, \nu)$ tuples.
  • solve_fuzzy_vector_joined(...): Solves the system equation and returns a vector of $(\mu, \nu)$ tuples.

3. Saving Joined Results

Once your operations are complete, you can export the joined tuple matrix directly back to a CSV file. Using save_joined_results_to_csv(), the system automatically unpacks the tuples and formats them with the standard , separator within cells (e.g., 0.5000, 0.2000).

4. Saving Separated Results

Muflon natively handles Intuitionistic Fuzzy Values as tuples $(\mu, \nu)$.

  • Auto-Splitting: parse_data_to_matrices() automatically splits CSV cells (e.g., 0.3, 0.7) into two separate working matrices ($\mu$ and $\nu$).
  • Joined Operations: Use fuzzy_composition_joined() or solve_fuzzy_vector_joined() to calculate both streams in parallel and immediately return a single matrix of $(\mu, \nu)$ tuples.
  • Saving Joined Data: Export tuple matrices directly back to CSV using save_joined_results_to_csv().
  • Saving Split Data: If you processed $\mu$ and $\nu$ independently, use save_separate_results_to_csv(mu_matrix, nu_matrix) to automatically stitch them back into tuples during export.

1. Perform Matrix Composition: Calculates $C = A \circ B$

Reads columns 0-2 for Matrix A, and 0-1 for Matrix B

2. Solve System: Solves $A \circ x = b$ for separate $\mu$ and $\nu$

Solves for vector x given Matrix A and Vector b

# Assume we have Matrix A and Vector b loaded
A_mu, A_nu = parse_data_to_matrices(df_A)
b_mu, b_nu = parse_data_to_matrices(df_b)

# Solve for Mu using Godel Implication (Induced by Min)
x_mu = solve_fuzzy_vector(A_mu, b_mu, implication='I_TM', aggregator=np.min)

# Solve for Nu using Lukasiewicz Implication (Induced by Lukasiewicz T-Norm)
x_nu = solve_fuzzy_vector(A_nu, b_nu, implication='I_TL', aggregator=np.max)

Core Concepts & Logic

Dual Matrix Processing

This script splits every input matrix into two parallel streams based on the tuple data:

Mu Stream ($\mu$): Uses the first value of the tuple. Processed using T-norms (e.g., Minimum) and Max aggregation.

Nu Stream ($\nu$): Uses the second value of the tuple. Processed using S-conorms (e.g., Maximum) and Min aggregation.

Reduced Matrix (A′):

The reduced matrix filters out input elements that do not actively fulfill the equation constraints. By evaluating the original matrix A against the maximal solution vector (u), any cell aij that fails to satisfy the mathematical condition (e.g., aij∗uj=bi for equations) is zeroed out.

Binarized Matrix:

This is a helpful diagnostic boolean mask built directly from the reduced matrix. It replaces all valid, preserved elements (>0) with 1.0, while keeping the rest as 0.0. This clearly highlights which columns have the potential to satisfy specific row constraints.

Minimal Solutions Algorithm (Algorithm I/I'):

This implements a highly efficient cascading search to find the family of all minimal solution vectors (S0). The process involves:

Row Sorting: Rows where bi=0 are automatically satisfied and skipped, while the remaining rows are sorted in descending order.

Dual Implications: For each unsatisfied row, the algorithm selects a valid column and calculates the minimal required vector value using dual implications (aij←bi).

Cascading Elimination: If a selected column simultaneously satisfies other pending rows, those rows are immediately removed from the queue, preventing combinatorial explosion.

Subset Filtering: Finally, all generated candidate vectors are compared against each other. Any vector that is strictly greater than another (a superset) is discarded, leaving only the absolute minimal solutions.

Column Scoping

Data loading is controlled by parameters in get_data_from_csv (called internally by the run functions):

col_start: Index of the first column to read.

col_end: Index of the column to stop at (exclusive).

header_rows: Number of top rows to skip (e.g., for labels).

Configuration

You can define new fuzzy logic operators (T-norms, S-conorms, or Implications) in two ways:

Option 1: The Quick Way (Script-Level)

If you are experimenting and don't want to modify the library code, you can simply define a Python function in your script and pass it directly to the composition engine.

The function must accept two arguments (x, y).

It must work with NumPy arrays (use np.maximum, np.where, etc., instead of standard max or if).

Example code:

import numpy as np
from muflon import fuzzy_composition


# 1. Define your custom operator (e.g., Einstein Product)
def t_einstein(x, y):
    """Calculates (x * y) / (2 - (x + y - x*y))"""
    return (x * y) / (2 - (x + y - x * y))


# 2. Pass the function directly to the composition tool
result = fuzzy_composition(matrix_A, matrix_B, operator=t_einstein, aggregator=np.max)

Option 2: The Permanent Way (Library-Level)

If you want your new operator to be part of the library (so you can call it via string like T_EINSTEIN), follow these steps:

Open muflon/norms.py Add your function definition at the end of the appropriate section (e.g., under T-NORMS).

# In muflon/norms.py

def t_hamacher(x, y):
    """Hamacher Product (simplified parameter)"""
    numerator = x * y
    denominator = x + y - (x * y)
    # Avoid division by zero if both are 0
    return np.where(denominator == 0, 0, numerator / denominator)

Register it in NORM_MAP Scroll down to the NORM_MAP dictionary in the same file and add a key-value pair.

NORM_MAP = {
    # ... previous norms ...
    'T_M': t_M,
    'T_P': t_P,
    
    # for clarity better to add new norms at the dictionary end:
    'T_HAMACHER': t_hamacher, 
}

Update get_norm (Optional but recommended) If you want to allow case-insensitive lookup (e.g., 'Hamacher'), add a quick alias in the get_norm function.

def get_norm(identifier):
    # ... rest of function ...
    key = identifier.upper()
    
    # alias
    if key == 'HAMACHER': key = 'T_HAMACHER'

Now You can use your new string identifier anywhere in your project.

from muflon import get_norm

res = fuzzy_composition(A, B, operator='T_HAMACHER', aggregator=np.max)

Intuitionistic Fuzzy Sets (IFS) Validation

A validation mechanism has been introduced to verify whether the calculated results form valid Intuitionistic Fuzzy Sets (IFS). For each Membership ($\mu$) and Non-Membership ($\nu$) pair, the following condition must be met: $\mu + \nu \le 1$. The validate_ifs(mu_matrix, nu_matrix) function in the operations.py module handles this, returning a validity flag and a matrix of sums for debugging purposes.

Non-Membership ($\nu$) Complements

Before executing key operations (such as finding minimal vectors or generating the reduced matrix) for the Nu stream, a matrix complement calculation step has been introduced. Every element of the $\nu$ matrix ($a_{ij}$) is transformed using the formula $1 - a_{ij}$. The resulting matrix (referred to as Nu_prim) is then subjected to further algebraic operations.

Reduced Matrices & Binarization

Mechanisms for determining reduced matrices for equations and inequalities have been added to the operations.py module:

  • get_reduced_matrix(A, x, b, norm_func, mode): Generates the reduced matrix $A'_b(x)$ based on the provided solution, norm, and mode (equation eq or inequality ge).
  • get_binarized_matrix(A_reduced): Transforms the calculated reduced matrix into a zero-one binary matrix (all values $> 0$ become 1.0, and the rest become 0.0).

Minimal Vectors Search

A tree-search algorithm has been implemented to find all minimal solutions for the system of equations/inequalities:

  • find_minimal_vectors(A, b, A_reduced, di_norm_func, norm_func, mode='eq') This function relies on the reduced matrix and dual implications. It is equipped with additional debugging mechanisms that print to the console when the set of potential vectors is empty (e.g., due to a lack of valid paths for the given boundary conditions).

Dual Implications

The operator library in the norms.py module has been expanded to include dual implications (required for finding minimal vectors):

  • DI_TM: Dual implication for the Minimum norm.
  • DI_TP: Dual implication for the Product norm.
  • DI_TL: Dual implication for the Lukasiewicz norm. The NORM_MAP registry has been updated with these keys, as well as specific operators used for research testing (e.g., OP_EX11, IMP_EX11, DIMP_EX11).

Example Validation Mode

A dedicated test_paper_example_11() function has been added to main.py.It executes step-by-step mathematical calculations for a custom operation ($x \cdot \min(x,y)$), replicating the values and steps (determining the greatest solution $u$, the reduced matrix, binarization, and minimal vectors $v$) exactly as presented in Example 11 of the scientific literature.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

muflon-1.2.3.tar.gz (14.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

muflon-1.2.3-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file muflon-1.2.3.tar.gz.

File metadata

  • Download URL: muflon-1.2.3.tar.gz
  • Upload date:
  • Size: 14.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for muflon-1.2.3.tar.gz
Algorithm Hash digest
SHA256 15b800708ee694c8f18a4510f3027f746a80700bc5fc45bdf5d5d09844df515b
MD5 3add5109de8609197bcefbeb484c7a4a
BLAKE2b-256 599db48191a9f1246491fc7c629ef37610788207bd8d9c4082a093ed2e2eb656

See more details on using hashes here.

File details

Details for the file muflon-1.2.3-py3-none-any.whl.

File metadata

  • Download URL: muflon-1.2.3-py3-none-any.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for muflon-1.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 214ba688d41d19d63f0b524ca2cd2d29c8701c68f997618155a89e81f4001569
MD5 983643ea22c762f92d589e9aa20df058
BLAKE2b-256 9863b2681f332a5e484094316c2dbb7ae9bd07dbf9e26bd37f4562badbc03d09

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page