Skip to content

Commit 18fcb8d

Browse files
committed
docs: migrate research topics 0.23_Unity_Scale_Link to 0.27_Cold_Light_Hologram
1 parent 17525db commit 18fcb8d

File tree

1,118 files changed

+177
-38447
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,118 files changed

+177
-38447
lines changed

research_uet/topics/0.23_Unity_Scale_Link/Code/01_Engine/Engine_Derivation.py renamed to docs/topics/0.23_Unity_Scale_Link/Code/01_Engine/Engine_Derivation.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@
2626

2727
# Path setup
2828
_root = Path(__file__).parent
29-
while _root.name != "research_uet" and _root.parent != _root:
29+
while _root.name != "docs" and _root.parent != _root:
3030
_root = _root.parent
3131
sys.path.insert(0, str(_root.parent))
3232

3333

34-
from research_uet.core.uet_parameters import INTEGRITY_KILL_SWITCH
34+
from docs.core.uet_parameters import INTEGRITY_KILL_SWITCH
3535

3636
# Base Solver Import
3737
try:
38-
from research_uet.core.uet_base_solver import UETBaseSolver
38+
from docs.core.uet_base_solver import UETBaseSolver
3939
except ImportError:
40-
from research_uet.core.uet_base_solver import UETBaseSolver
40+
from docs.core.uet_base_solver import UETBaseSolver
4141

4242

4343
class UETDerivationEngine(UETBaseSolver):

research_uet/topics/0.23_Unity_Scale_Link/Code/01_Engine/Engine_Unity_Scale.py renamed to docs/topics/0.23_Unity_Scale_Link/Code/01_Engine/Engine_Unity_Scale.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Demonstrates the SAME Ω equation works across scales.
88
"""
99

10-
from research_uet import ROOT_PATH
10+
from docs import ROOT_PATH
1111

1212
root_path = ROOT_PATH
1313
import sys
@@ -17,11 +17,11 @@
1717

1818
# --- ROBUST PATH FINDER ---
1919

20-
from research_uet.core.uet_master_equation import (
20+
from docs.core.uet_master_equation import (
2121
UETParameters,
2222
omega_functional_complete,
2323
)
24-
from research_uet.core.uet_base_solver import UETBaseSolver
24+
from docs.core.uet_base_solver import UETBaseSolver
2525

2626

2727
class UETUnityScaleEngine(UETBaseSolver):

research_uet/topics/0.23_Unity_Scale_Link/Code/02_Proof/Proof_Auto_Kappa.py renamed to docs/topics/0.23_Unity_Scale_Link/Code/02_Proof/Proof_Auto_Kappa.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
current_path = Path(__file__).resolve()
77
repo_root = current_path
88
for _ in range(6):
9-
if (repo_root / "research_uet").exists():
9+
if (repo_root / "docs").exists():
1010
break
1111
repo_root = repo_root.parent
1212
if str(repo_root) not in sys.path:
1313
sys.path.insert(0, str(repo_root))
1414

15-
from research_uet.core.uet_master_equation import omega_functional_complete, UETParameters
15+
from docs.core.uet_master_equation import omega_functional_complete, UETParameters
1616

1717

1818
def auto_find_kappa(field_type="galactic", target_k=None):

research_uet/topics/0.23_Unity_Scale_Link/Code/02_Proof/Proof_Kappa_Running.py renamed to docs/topics/0.23_Unity_Scale_Link/Code/02_Proof/Proof_Kappa_Running.py

File renamed without changes.

research_uet/topics/0.23_Unity_Scale_Link/Code/02_Proof/Proof_Kappa_Unity.py renamed to docs/topics/0.23_Unity_Scale_Link/Code/02_Proof/Proof_Kappa_Unity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# Path setup
1212
# Path setup
13-
from research_uet import ROOT_PATH
13+
from docs import ROOT_PATH
1414

1515
root_path = ROOT_PATH
1616
repo_root = ROOT_PATH
@@ -21,7 +21,7 @@
2121

2222
engine_file = (
2323
repo_root
24-
/ "research_uet"
24+
/ "docs"
2525
/ "topics"
2626
/ "0.23_Unity_Scale_Link"
2727
/ "Code"

research_uet/topics/0.23_Unity_Scale_Link/Code/02_Proof/kappa_running_proof.png renamed to docs/topics/0.23_Unity_Scale_Link/Code/02_Proof/kappa_running_proof.png

File renamed without changes.

research_uet/topics/0.23_Unity_Scale_Link/Code/03_Research/Falsification_Analysis.py renamed to docs/topics/0.23_Unity_Scale_Link/Code/03_Research/Falsification_Analysis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
# Path setup
1818
_root = Path(__file__).parent
19-
while _root.name != "research_uet" and _root.parent != _root:
19+
while _root.name != "docs" and _root.parent != _root:
2020
_root = _root.parent
2121
sys.path.insert(0, str(_root.parent))
2222

23-
from research_uet.core.uet_master_equation import UETParameters
23+
from docs.core.uet_master_equation import UETParameters
2424

2525

2626
def analyze_parameter_failure():

research_uet/topics/0.23_Unity_Scale_Link/Code/03_Research/Research_Cross_Domain.py renamed to docs/topics/0.23_Unity_Scale_Link/Code/03_Research/Research_Cross_Domain.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@
2323

2424
# --- PATH SETUP (Must be FIRST) ---
2525
# --- PATH SETUP (Must be FIRST) ---
26-
from research_uet import ROOT_PATH
26+
from docs import ROOT_PATH
2727

2828
ROOT = ROOT_PATH
2929

30-
TOPIC_DIR = ROOT / "research_uet" / "topics" / "0.23_Unity_Scale_Link"
30+
TOPIC_DIR = ROOT / "docs" / "topics" / "0.23_Unity_Scale_Link"
3131
DATA_DIR = TOPIC_DIR / "Data" / "03_Research"
3232

3333
# Engine Import (Dynamic to bypass 0.23 folder literal restriction)
3434
try:
3535
import importlib.util
36-
from research_uet.core.uet_master_equation import UETParameters
36+
from docs.core.uet_master_equation import UETParameters
3737

3838
engine_file = TOPIC_DIR / "Code" / "01_Engine" / "Engine_Unity_Scale.py"
3939
spec = importlib.util.spec_from_file_location("Engine_Unity_Scale", engine_file)

research_uet/topics/0.23_Unity_Scale_Link/Code/04_Implementation/KappaCalculator.py renamed to docs/topics/0.23_Unity_Scale_Link/Code/04_Implementation/KappaCalculator.py

File renamed without changes.

research_uet/topics/0.23_Unity_Scale_Link/Code/04_Implementation/PaperGenerator.py renamed to docs/topics/0.23_Unity_Scale_Link/Code/04_Implementation/PaperGenerator.py

File renamed without changes.

0 commit comments

Comments
 (0)