File size: 465 Bytes
23a5cce
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# FractalStat Quick Start

## Build and Install

```bash
cd fractalstat-package
python copy_and_transform.py
pip install -e .
```

## Run Experiments

```bash
# Phase 1
python -m fractalstat.stat7_experiments

# Individual experiments
python -m fractalstat.exp04_fractal_scaling
python -m fractalstat.exp06_entanglement_detection
```

## Use as Library

```python
from fractalstat import BitChain, Coordinates

bc = BitChain(...)
address = bc.compute_address()
```