Skip to content

Commit 261c21a

Browse files
committed
🏛 [PROF] Institutional Formatting resonance of the NRC manifold
Synchronizes the foundational NRC repository with the remote 'ruff format' standards to ensure 100% CI compliance. This pass resolves the structural divergence identified in the remote build logs.
1 parent 98176db commit 261c21a

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

examples/zero_search.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@ def phi_power_series_zeros() -> None:
3030

3131
if __name__ == "__main__":
3232
import math
33+
3334
phi_power_series_zeros()

proofs/proof_01_entropy_collapse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def entropy_collapse_proof(initial_entropy: float, iterations: int) -> None:
2727
for i in range(iterations):
2828
current_entropy /= (1 + math.sqrt(5)) / 2
2929
matched = math.isclose(current_entropy, theoretical_bound)
30-
print(f"Step {i+1}: {current_entropy:.12f} | Bound matched: {matched}")
30+
print(f"Step {i + 1}: {current_entropy:.12f} | Bound matched: {matched}")
3131

3232
print(
3333
f"\nConclusion: After {iterations} iterations, the system entropy has "

proofs/proof_02_modular_exclusion.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def modular_exclusion_proof() -> None:
3333
Tests the mathematical stability of the Mod-9 residue manifold against stochastic noise.
3434
"""
3535
import random
36+
3637
print("--- NRC Modular Exclusion Proof ---")
3738
print("Testing 100,000 biological coordinate configurations...\n")
3839

src/nrc/math/gtt_topology.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def entropy_collapse_proof(initial_entropy: float, iterations: int) -> None:
1919
for i in range(iterations):
2020
current_entropy /= (1 + math.sqrt(5)) / 2
2121
matched = math.isclose(current_entropy, theoretical_bound)
22-
print(f"Step {i+1}: {current_entropy:.12f} | Bound matched: {matched}")
22+
print(f"Step {i + 1}: {current_entropy:.12f} | Bound matched: {matched}")
2323

2424
print(
2525
f"\nConclusion: After {iterations} iterations, the system entropy has "

0 commit comments

Comments
 (0)