Skip to content

Commit 8656458

Browse files
Copilotfermga
andcommitted
Fix documentation build: update broken links and remove missing files from nav
Co-authored-by: fermga <203334638+fermga@users.noreply.github.com>
1 parent f9f565b commit 8656458

File tree

8 files changed

+16
-25
lines changed

8 files changed

+16
-25
lines changed

docs/source/advanced/ARCHITECTURE_GUIDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -809,9 +809,9 @@ Before creating a PR with factory changes:
809809

810810
## References
811811

812-
- [AGENTS.md](../../../AGENTS.md) - TNFR paradigm fundamentals
813-
- [CONTRIBUTING.md](../../../CONTRIBUTING.md) - General contribution guidelines
814-
- [ARCHITECTURE.md](../../../ARCHITECTURE.md) - Overall project structure
812+
- [AGENTS.md](https://github.com/fermga/TNFR-Python-Engine/blob/main/AGENTS.md) - TNFR paradigm fundamentals
813+
- [CONTRIBUTING.md](https://github.com/fermga/TNFR-Python-Engine/blob/main/CONTRIBUTING.md) - General contribution guidelines
814+
- [ARCHITECTURE.md](https://github.com/fermga/TNFR-Python-Engine/blob/main/ARCHITECTURE.md) - Overall project structure
815815
- [Performance Optimization](PERFORMANCE_OPTIMIZATION.md) - Caching and optimization patterns
816816
- [Testing Strategies](TESTING_STRATEGIES.md) - Test patterns and coverage requirements
817817
- [Foundations](../foundations.md) - Mathematical foundations

docs/source/advanced/DEVELOPMENT_WORKFLOW.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ make verify-refs-verbose
751751
- This guide
752752
- [ARCHITECTURE_GUIDE.md](ARCHITECTURE_GUIDE.md)
753753
- [TESTING_STRATEGIES.md](TESTING_STRATEGIES.md)
754-
- [CONTRIBUTING.md](../../../CONTRIBUTING.md)
754+
- [CONTRIBUTING.md](https://github.com/fermga/TNFR-Python-Engine/blob/main/CONTRIBUTING.md)
755755
756756
2. **Search GitHub Issues**:
757757
- Known issues and solutions
@@ -833,8 +833,8 @@ mypy --help # Mypy options
833833
- [Architecture Guide](ARCHITECTURE_GUIDE.md) - Factory patterns and dependencies
834834
- [Testing Strategies](TESTING_STRATEGIES.md) - Testing best practices
835835
- [Performance Optimization](PERFORMANCE_OPTIMIZATION.md) - Optimization techniques
836-
- [CONTRIBUTING.md](../../../CONTRIBUTING.md) - Contribution guidelines
837-
- [README.md](../../../README.md) - Project overview
836+
- [CONTRIBUTING.md](https://github.com/fermga/TNFR-Python-Engine/blob/main/CONTRIBUTING.md) - Contribution guidelines
837+
- [README.md](https://github.com/fermga/TNFR-Python-Engine/blob/main/README.md) - Project overview
838838
839839
---
840840

docs/source/advanced/TESTING_STRATEGIES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -923,8 +923,8 @@ pytest tests/ --memprof
923923
- [Architecture Guide](ARCHITECTURE_GUIDE.md) - Factory patterns and dependency management
924924
- [Performance Optimization](PERFORMANCE_OPTIMIZATION.md) - Optimization strategies
925925
- [Development Workflow](DEVELOPMENT_WORKFLOW.md) - Contributing guidelines
926-
- [CONTRIBUTING.md](../../../CONTRIBUTING.md) - General contribution guide
927-
- [TESTING.md](../../../TESTING.md) - Test strategy overview
926+
- [CONTRIBUTING.md](https://github.com/fermga/TNFR-Python-Engine/blob/main/CONTRIBUTING.md) - General contribution guide
927+
- [TESTING.md](https://github.com/fermga/TNFR-Python-Engine/blob/main/TESTING.md) - Test strategy overview
928928

929929
---
930930

docs/source/theory/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ Hands-on exploration and visualization of TNFR concepts:
110110

111111
### Related Documentation
112112
- [TNFR Fundamental Concepts](../getting-started/TNFR_CONCEPTS.md) — Intuitive introduction
113-
- [GLOSSARY](../../../GLOSSARY.md) — Terminology reference
114-
- [AGENTS.md](../../../AGENTS.md) — Canonical invariants for AI agents
113+
- [GLOSSARY](https://github.com/fermga/TNFR-Python-Engine/blob/main/GLOSSARY.md) — Terminology reference
114+
- [AGENTS.md](https://github.com/fermga/TNFR-Python-Engine/blob/main/AGENTS.md) — Canonical invariants for AI agents
115115

116116
## 📋 Document Status
117117

docs/source/user-guide/METRICS_INTERPRETATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Metrics Interpretation Guide
22

3-
[Home](../index.rst)[User Guide](../user-guide/) › Metrics Interpretation
3+
[Home](../home.md) › Metrics Interpretation
44

55
This guide explains how to interpret and use TNFR's key metrics: Total Coherence (C(t)), Sense Index (Si), structural frequency (νf), phase (φ), and reorganization gradient (ΔNFR).
66

docs/source/user-guide/OPERATORS_GUIDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Operators Guide: The 13 Structural Operators
22

3-
[Home](../index.rst)[User Guide](../user-guide/) › Operators Guide
3+
[Home](../home.md) › Operators Guide
44

55
This guide provides a comprehensive reference for TNFR's 13 canonical structural operators. These operators are the **only valid way** to modify networks in TNFR, ensuring all changes are traceable, coherent, and reproducible.
66

@@ -606,7 +606,7 @@ Safe_Exploration := Dissonance Operator* Coherence
606606
Multi_Scale := Recursivity(Sequence)
607607
```
608608

609-
See [Glyph Sequences Guide](../../../GLYPH_SEQUENCES_GUIDE.md) for comprehensive patterns.
609+
See [Glyph Sequences Guide](https://github.com/fermga/TNFR-Python-Engine/blob/main/GLYPH_SEQUENCES_GUIDE.md) for comprehensive patterns.
610610

611611
## Monitoring Operator Effects
612612

@@ -718,7 +718,7 @@ def adaptive_operator(G, node):
718718
## See Also
719719

720720
- **[API Reference](../api/operators.md)** - Complete operator API
721-
- **[Glyph Sequences Guide](../../../GLYPH_SEQUENCES_GUIDE.md)** - Canonical patterns
721+
- **[Glyph Sequences Guide](https://github.com/fermga/TNFR-Python-Engine/blob/main/GLYPH_SEQUENCES_GUIDE.md)** - Canonical patterns
722722
- **[Metrics Interpretation](METRICS_INTERPRETATION.md)** - Understanding effects
723723
- **[Troubleshooting](TROUBLESHOOTING.md)** - Solving common issues
724724
- **[Examples](../examples/README.md)** - Practical operator usage

docs/source/user-guide/TROUBLESHOOTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Troubleshooting Guide
22

3-
[Home](../index.rst)[User Guide](../user-guide/) › Troubleshooting
3+
[Home](../home.md) › Troubleshooting
44

55
This guide helps you diagnose and solve common problems when working with TNFR networks.
66

mkdocs.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,16 @@ nav:
3131
- Performance Optimization: advanced/PERFORMANCE_OPTIMIZATION.md
3232
- Testing Strategies: advanced/TESTING_STRATEGIES.md
3333
- Development Workflow: advanced/DEVELOPMENT_WORKFLOW.md
34-
- Theory Deep Dive: advanced/THEORY_DEEP_DIVE.md
3534
- Mathematical Foundations: foundations.md
3635
- Mathematical Foundations:
37-
- Overview: theory/00_overview.ipynb
3836
- Primers:
3937
- Structural frequency primer: theory/01_structural_frequency_primer.ipynb
4038
- Phase synchrony lattices: theory/02_phase_synchrony_lattices.ipynb
4139
- ΔNFR gradient fields: theory/03_delta_nfr_gradient_fields.ipynb
4240
- Coherence metrics walkthrough: theory/04_coherence_metrics_walkthrough.ipynb
41+
- NFR validator & metrics: theory/04_nfr_validator_and_metrics.ipynb
4342
- Sense index calibration: theory/05_sense_index_calibration.ipynb
4443
- Recursivity cascades: theory/06_recursivity_cascades.ipynb
45-
- Emergence of Physics:
46-
- Classical Mechanics: theory/07_emergence_classical_mechanics.md
47-
- Operators & Validators:
48-
- Hilbert space ℋ_NFR: theory/01_hilbert_space_h_nfr.ipynb
49-
- Coherence operator Ĉ: theory/02_coherence_operator_hatC.ipynb
50-
- Frequency operator Ĵ: theory/03_frequency_operator_hatJ.ipynb
51-
- NFR validator & metrics: theory/04_nfr_validator_and_metrics.ipynb
52-
- Unitary dynamics & ΔNFR: theory/05_unitary_dynamics_and_delta_nfr.ipynb
5344
- Security:
5445
- Monitoring: security/monitoring.md
5546
- Dependency Auditing: security/dependency-auditing.md

0 commit comments

Comments
 (0)