Metadata-Version: 2.4
Name: pybelief
Version: 0.1.0
Summary: Finite-frame Dempster-Shafer belief functions with sparse bitmask storage
Author: Sohaib AFIFI
License-Expression: MIT
License-File: LICENSE
Keywords: belief-functions,dempster-shafer,evidence-theory,mass-function,plausibility,uncertainty
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Typing :: Typed
Requires-Python: >=3.10
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# pybelief

Finite-frame Dempster-Shafer belief functions with sparse bitmask storage.

## Installation

```bash
pip install pybelief
```

## Quick start

```python
from pybelief import MassFunction

frame = ["a", "b", "c"]

# Create mass functions using label sets
m1 = MassFunction(frame, named_focal_elements={
    frozenset({"a"}): 0.3,
    frozenset({"a", "b"}): 0.2,
    frozenset({"a", "b", "c"}): 0.5,
})

m2 = MassFunction(frame, named_focal_elements={
    frozenset({"b"}): 0.5,
    frozenset({"a", "b"}): 0.2,
    frozenset({"a", "b", "c"}): 0.3,
})

# Query belief, plausibility, commonality
m1.belief({"a"})          # 0.3
m1.plausibility({"b"})    # 0.7
m1.commonality({"a"})     # 1.0

# Combine sources
m12 = m1 & m2                    # Dempster's rule
m12 = m1 | m2                    # Conjunctive (TBM)
m12 = m1.combine_yager(m2)       # Yager's rule

# Decision making
m1.pignistic()            # {'a': 0.567, 'b': 0.267, 'c': 0.167}
```

## Bitmask convention

Element *i* of the frame maps to bit *i*. For `frame = ["a", "b", "c"]`:

| Set       | Binary  | Int |
|-----------|---------|-----|
| {a}       | `001`   | 1   |
| {b}       | `010`   | 2   |
| {a, b}    | `011`   | 3   |
| {c}       | `100`   | 4   |
| {a, c}    | `101`   | 5   |
| {b, c}    | `110`   | 6   |
| {a, b, c} | `111`   | 7   |

You can use either bitmasks or label sets in all API calls:

```python
m.belief(0b011)          # bitmask
m.belief({"a", "b"})     # label set — same result
```

## API overview

### Construction

| Method | Description |
|--------|-------------|
| `MassFunction(frame, focal_elements={mask: mass})` | From bitmask dict |
| `MassFunction(frame, named_focal_elements={labels: mass})` | From label-set dict |
| `MassFunction.vacuous(frame)` | Total ignorance |
| `MassFunction.certain(frame, element)` | All mass on one element |
| `MassFunction.from_bayesian(frame, {label: prob})` | Probability distribution |

### Transforms

| Method | Description |
|--------|-------------|
| `m.belief(A)` | Bel(A) — sum of masses of subsets of A |
| `m.plausibility(A)` | Pl(A) — sum of masses intersecting A |
| `m.commonality(A)` | Q(A) — sum of masses of supersets of A |
| `m.belief_function()` | Bel for all 2^n subsets (fast zeta) |
| `m.plausibility_function()` | Pl for all 2^n subsets |
| `m.commonality_function()` | Q for all 2^n subsets |
| `m.pignistic()` | BetP probability transform |
| `m.plausibility_transform()` | Normalized singleton plausibilities |

### Operations

| Method | Description |
|--------|-------------|
| `m1 & m2` / `m1.combine_dempster(m2)` | Dempster's rule (normalized) |
| `m1 \| m2` / `m1.combine_conjunctive(m2)` | Conjunctive / TBM (unnormalized) |
| `m1.combine_yager(m2)` | Yager's rule |
| `m.discount(alpha)` | Shafer's discounting |
| `m.condition(event)` | Dempster conditioning |
| `m1.conflict(m2)` | Conflict mass K |

### Measures

| Method | Description |
|--------|-------------|
| `m.specificity()` | Non-specificity N(m) |
| `m.entropy_deng()` | Deng entropy |

## Performance

Focal elements are stored sparsely. Combination runs in O(|F1| x |F2|) — fast when mass functions are sparse. Full transforms use the fast zeta transform in O(n * 2^n). Practical for frames up to ~20 elements.

## Citation

If you use pybelief in your research, please cite:

```bibtex
@software{afifi2025pybelief,
  author    = {Afifi, Sohaib},
  title     = {pybelief: Finite-Frame Dempster--Shafer Belief Functions in Python},
  year      = {2025},
  url       = {https://github.com/sohaibafifi/pybelief},
}
```

## License

MIT
