syfcore commited on
Commit
6045388
·
verified ·
1 Parent(s): 0b61128

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -61
README.md CHANGED
@@ -1,42 +1,58 @@
1
- <<<<<<< HEAD
2
- # SYF-Minimal
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
  ## Related Repositories
5
 
6
- - **SYF-Core** — Canonical law (immutable)
7
  https://github.com/AnathemaOfficial/SYF-Core
8
 
9
- - **SYF-Lab** — Experimental and observational framework
10
  https://github.com/AnathemaOfficial/SYF-Lab
11
 
12
- ## Conformance Notes
13
-
14
- - **K** is provided by the caller; the canonical law does not define its value.
15
- - Inputs outside the allowed domain (**F ≥ 0**, **0 ≤ E ≤ 1**, **K > 0**) MUST be rejected (error/exception). No clamping.
16
- - Numerical tolerance, if any, is implementation-defined and must be documented by the implementation.
17
- - This repository is illustrative and non-production by design.
18
 
19
- SYF-Minimal is a non-canonical, non-normative reference implementation designed to
20
- illustrate and test the invariant **R** defined in **SYFCORE**.
 
 
 
21
 
22
- This repository does **not** define, modify, or extend the SYF law.
23
- Any discrepancy with SYFCORE must be treated as an implementation error.
24
 
25
  ## Purpose
26
 
27
- - Demonstrate deterministic computation of **R**
28
- - Provide test vectors and minimal reference code
29
- - Support external verification and blind testing
30
 
31
  ## Law
32
 
33
- **R = (F × E) / K**
 
 
 
 
34
 
35
- Constraints enforced by the reference implementations:
 
 
36
 
37
- - F 0
38
- - 0 ≤ E ≤ 1
39
- - K > 0
40
 
41
  ## Layout
42
 
@@ -53,43 +69,7 @@ syf-minimal/
53
  └── TEST_VECTORS.md
54
  ```
55
 
56
- ## Status
57
-
58
- Illustrative only. Non-canonical. Non-normative.
59
-
60
- ---
61
- =======
62
- ---
63
- license: mit
64
- ---
65
- # SYF-Minimal
66
-
67
- Minimal, non-canonical reference implementation of the **Systemic Fire (SYF)** invariant.
68
-
69
- ## Status
70
- - Non-canonical
71
- - Non-normative
72
- - Reference / verification only
73
- - **Not a machine learning model**
74
- - Not intended for deployment or inference
75
-
76
- ## Purpose
77
- This repository exists solely to:
78
- - Demonstrate deterministic computation of **R = (F × E) / K**
79
- - Provide minimal reference code and test vectors
80
- - Enable blind analysis and external verification
81
-
82
- It does **not** define the law.
83
-
84
- ## Canonical Reference
85
- The canonical definition of SYF lives here:
86
- https://github.com/AnathemaOfficial/SYF-Core
87
-
88
- ## Experimental Context
89
- Observational and experimental frameworks:
90
- https://github.com/AnathemaOfficial/SYF-Lab
91
 
92
- ## Machine World Only
93
- This project is machine-facing only.
94
- No governance. No optimization. No feedback.
95
- >>>>>>> hf/main
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - syf
5
+ - minimal
6
+ - reference
7
+ - deterministic
8
+ - cryptography
9
+ - invariant
10
+ ---
11
+
12
+ # SYF‑Minimal
13
+
14
+ Minimal, non‑canonical reference implementation of the Systemic Fire (SYF) invariant.
15
 
16
  ## Related Repositories
17
 
18
+ - **SYFCore — Canonical law (immutable)**
19
  https://github.com/AnathemaOfficial/SYF-Core
20
 
21
+ - **SYFLab — Experimental and observational framework**
22
  https://github.com/AnathemaOfficial/SYF-Lab
23
 
24
+ ## Status
 
 
 
 
 
25
 
26
+ - Non‑canonical
27
+ - Non‑normative
28
+ - Reference / verification only
29
+ - Not a machine learning model
30
+ - Not intended for deployment or inference
31
 
32
+ This repository does **not** define, modify, or extend the SYF law.
33
+ Any discrepancy with SYF‑Core must be treated as an implementation error.
34
 
35
  ## Purpose
36
 
37
+ - Demonstrate deterministic computation of the invariant
38
+ - Provide minimal reference code and test vectors
39
+ - Enable blind analysis and external verification
40
 
41
  ## Law
42
 
43
+ \[
44
+ R = \frac{F \times E}{K}
45
+ \]
46
+
47
+ ### Constraints enforced by the reference implementations
48
 
49
+ - \(F \ge 0\)
50
+ - \(0 \le E \le 1\)
51
+ - \(K > 0\)
52
 
53
+ Inputs outside this domain **must be rejected** (error/exception).
54
+ No clamping.
55
+ Numerical tolerance, if any, is implementation‑defined.
56
 
57
  ## Layout
58
 
 
69
  └── TEST_VECTORS.md
70
  ```
71
 
72
+ ## Machine‑Facing Only
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
 
74
+ This project is intended for machines, not humans.
75
+ No governance. No optimization. No feedback.