|
40 | 40 |
|
41 | 41 | --- |
42 | 42 |
|
| 43 | +## 📁 Project Structure |
| 44 | + |
| 45 | +> **Important:** All research code, engines, and data live inside `docs/` — this folder serves dual purpose as both the **GitHub Pages source** and the **main research codebase**. |
| 46 | +
|
| 47 | +``` |
| 48 | +uet_harness/ |
| 49 | +├── docs/ ← 🔬 Research Portal (GitHub Pages + Python Package) |
| 50 | +│ ├── __init__.py ← Python package entry: `import docs as uet` |
| 51 | +│ ├── _config.yml ← Jekyll config for GitHub Pages |
| 52 | +│ ├── core/ ← UET Master Equation & core solvers |
| 53 | +│ ├── topics/ ← 📚 All 38 research topics (engines, proofs, data) |
| 54 | +│ │ ├── 0.0_Grand_Unification/ ← Omni Engine (imports all sub-engines) |
| 55 | +│ │ ├── 0.1_Galaxy_Rotation/ ← Each topic follows the same structure: |
| 56 | +│ │ │ ├── Code/01_Engine/ │ Engine (solver) |
| 57 | +│ │ │ ├── Code/02_Proof/ │ Mathematical proofs |
| 58 | +│ │ │ ├── Code/03_Research/ │ Experiments & validation |
| 59 | +│ │ │ ├── Data/ │ Reference datasets |
| 60 | +│ │ │ ├── Result/ │ Output figures & logs |
| 61 | +│ │ │ ├── Doc/ │ Documentation & papers |
| 62 | +│ │ │ └── README.md │ Topic overview |
| 63 | +│ │ └── ... ← Topics 0.2 through 0.37 |
| 64 | +│ ├── knowledge_base/ ← Vector store & tensorizer |
| 65 | +│ ├── scripts/ ← Runners, audits, data tools |
| 66 | +│ └── Docs/ ← Framework standards & guides |
| 67 | +├── uet_core/ ← 🦀 Rust: UET Master Equation solver |
| 68 | +├── uet_miner/ ← 🦀 Rust: Proof-of-Useful-Work miner |
| 69 | +├── uet_security/ ← 🦀 Rust: Quantum-resistant crypto |
| 70 | +├── uet_agents/ ← 🤖 AI agent framework |
| 71 | +├── uet_api/ ← 🌐 REST API server |
| 72 | +├── uet_web/ ← 💻 Next.js web frontend |
| 73 | +├── uet_platform/ ← 🏗️ Platform orchestration |
| 74 | +└── requirements.txt ← Python dependencies |
| 75 | +``` |
| 76 | + |
| 77 | +> **Note:** The `docs/` folder was previously named `research_uet/`. All internal paths have been updated. If you find outdated references, please open an issue. |
| 78 | +
|
| 79 | +--- |
| 80 | + |
43 | 81 | ## 🌍 The "Big Picture" Dashboard: 38 Solutions |
44 | 82 |
|
45 | 83 | UET is not just a physics theory. It is a **"Civilization-Level Operating System"** that solves fundamental problems across 6 domains. |
|
0 commit comments