zeropoint-node 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +531 -0
- package/dist/src/__tests__/globalSetup.d.ts +13 -0
- package/dist/src/__tests__/globalSetup.d.ts.map +1 -0
- package/dist/src/__tests__/globalSetup.js +81 -0
- package/dist/src/__tests__/globalSetup.js.map +1 -0
- package/dist/src/__tests__/globalTeardown.d.ts +20 -0
- package/dist/src/__tests__/globalTeardown.d.ts.map +1 -0
- package/dist/src/__tests__/globalTeardown.js +88 -0
- package/dist/src/__tests__/globalTeardown.js.map +1 -0
- package/dist/src/__tests__/living/LivingTestOrganism.d.ts +64 -0
- package/dist/src/__tests__/living/LivingTestOrganism.d.ts.map +1 -0
- package/dist/src/__tests__/living/LivingTestOrganism.js +245 -0
- package/dist/src/__tests__/living/LivingTestOrganism.js.map +1 -0
- package/dist/src/__tests__/setup.d.ts +16 -0
- package/dist/src/__tests__/setup.d.ts.map +1 -0
- package/dist/src/__tests__/setup.js +123 -0
- package/dist/src/__tests__/setup.js.map +1 -0
- package/dist/src/__tests__/utils/errorSimulator.d.ts +18 -0
- package/dist/src/__tests__/utils/errorSimulator.d.ts.map +1 -0
- package/dist/src/__tests__/utils/errorSimulator.js +35 -0
- package/dist/src/__tests__/utils/errorSimulator.js.map +1 -0
- package/dist/src/__tests__/utils/goldenRatioCache.d.ts +11 -0
- package/dist/src/__tests__/utils/goldenRatioCache.d.ts.map +1 -0
- package/dist/src/__tests__/utils/goldenRatioCache.js +31 -0
- package/dist/src/__tests__/utils/goldenRatioCache.js.map +1 -0
- package/dist/src/api/ProductionAPI.d.ts +42 -0
- package/dist/src/api/ProductionAPI.d.ts.map +1 -0
- package/dist/src/api/ProductionAPI.js +320 -0
- package/dist/src/api/ProductionAPI.js.map +1 -0
- package/dist/src/consciousness/ConsciousnessField.d.ts +105 -0
- package/dist/src/consciousness/ConsciousnessField.d.ts.map +1 -0
- package/dist/src/consciousness/ConsciousnessField.js +301 -0
- package/dist/src/consciousness/ConsciousnessField.js.map +1 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.d.ts +99 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.d.ts.map +1 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.js +197 -0
- package/dist/src/consciousness/SelfEvolvingConsciousness.js.map +1 -0
- package/dist/src/core/AbstractField.d.ts +14 -0
- package/dist/src/core/AbstractField.d.ts.map +1 -0
- package/dist/src/core/AbstractField.js +31 -0
- package/dist/src/core/AbstractField.js.map +1 -0
- package/dist/src/core/CoilMixin.d.ts +52 -0
- package/dist/src/core/CoilMixin.d.ts.map +1 -0
- package/dist/src/core/CoilMixin.js +217 -0
- package/dist/src/core/CoilMixin.js.map +1 -0
- package/dist/src/core/CoilSystem.d.ts +38 -0
- package/dist/src/core/CoilSystem.d.ts.map +1 -0
- package/dist/src/core/CoilSystem.js +183 -0
- package/dist/src/core/CoilSystem.js.map +1 -0
- package/dist/src/core/MathUtils.d.ts +135 -0
- package/dist/src/core/MathUtils.d.ts.map +1 -0
- package/dist/src/core/MathUtils.js +298 -0
- package/dist/src/core/MathUtils.js.map +1 -0
- package/dist/src/core/NetworkNode.d.ts +86 -0
- package/dist/src/core/NetworkNode.d.ts.map +1 -0
- package/dist/src/core/NetworkNode.js +349 -0
- package/dist/src/core/NetworkNode.js.map +1 -0
- package/dist/src/core/Observer.d.ts +54 -0
- package/dist/src/core/Observer.d.ts.map +1 -0
- package/dist/src/core/Observer.js +102 -0
- package/dist/src/core/Observer.js.map +1 -0
- package/dist/src/core/PatternRecognition.d.ts +124 -0
- package/dist/src/core/PatternRecognition.d.ts.map +1 -0
- package/dist/src/core/PatternRecognition.js +420 -0
- package/dist/src/core/PatternRecognition.js.map +1 -0
- package/dist/src/core/SharedConstants.d.ts +138 -0
- package/dist/src/core/SharedConstants.d.ts.map +1 -0
- package/dist/src/core/SharedConstants.js +242 -0
- package/dist/src/core/SharedConstants.js.map +1 -0
- package/dist/src/core/UnifiedSystem.d.ts +276 -0
- package/dist/src/core/UnifiedSystem.d.ts.map +1 -0
- package/dist/src/core/UnifiedSystem.js +314 -0
- package/dist/src/core/UnifiedSystem.js.map +1 -0
- package/dist/src/core/UnifiedVoidEquations.d.ts +123 -0
- package/dist/src/core/UnifiedVoidEquations.d.ts.map +1 -0
- package/dist/src/core/UnifiedVoidEquations.js +522 -0
- package/dist/src/core/UnifiedVoidEquations.js.map +1 -0
- package/dist/src/core/ZeroPoint.d.ts +185 -0
- package/dist/src/core/ZeroPoint.d.ts.map +1 -0
- package/dist/src/core/ZeroPoint.js +559 -0
- package/dist/src/core/ZeroPoint.js.map +1 -0
- package/dist/src/emergence/AdvancedEmergence.d.ts +295 -0
- package/dist/src/emergence/AdvancedEmergence.d.ts.map +1 -0
- package/dist/src/emergence/AdvancedEmergence.js +895 -0
- package/dist/src/emergence/AdvancedEmergence.js.map +1 -0
- package/dist/src/emergence/patterns.d.ts +7 -0
- package/dist/src/emergence/patterns.d.ts.map +1 -0
- package/dist/src/emergence/patterns.js +13 -0
- package/dist/src/emergence/patterns.js.map +1 -0
- package/dist/src/field/EmergenceLedger.d.ts +111 -0
- package/dist/src/field/EmergenceLedger.d.ts.map +1 -0
- package/dist/src/field/EmergenceLedger.js +306 -0
- package/dist/src/field/EmergenceLedger.js.map +1 -0
- package/dist/src/field/ObserverAwareField.d.ts +118 -0
- package/dist/src/field/ObserverAwareField.d.ts.map +1 -0
- package/dist/src/field/ObserverAwareField.js +233 -0
- package/dist/src/field/ObserverAwareField.js.map +1 -0
- package/dist/src/field/ResonanceConsensus.d.ts +113 -0
- package/dist/src/field/ResonanceConsensus.d.ts.map +1 -0
- package/dist/src/field/ResonanceConsensus.js +322 -0
- package/dist/src/field/ResonanceConsensus.js.map +1 -0
- package/dist/src/index.d.ts +53 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +221 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/integrity/FieldIntegrity.d.ts +121 -0
- package/dist/src/integrity/FieldIntegrity.d.ts.map +1 -0
- package/dist/src/integrity/FieldIntegrity.js +240 -0
- package/dist/src/integrity/FieldIntegrity.js.map +1 -0
- package/dist/src/knowledge/KnowledgeSystem.d.ts +178 -0
- package/dist/src/knowledge/KnowledgeSystem.d.ts.map +1 -0
- package/dist/src/knowledge/KnowledgeSystem.js +915 -0
- package/dist/src/knowledge/KnowledgeSystem.js.map +1 -0
- package/dist/src/math/AdvancedVBM.d.ts +164 -0
- package/dist/src/math/AdvancedVBM.d.ts.map +1 -0
- package/dist/src/math/AdvancedVBM.js +712 -0
- package/dist/src/math/AdvancedVBM.js.map +1 -0
- package/dist/src/math/FractalColorSystem.d.ts +77 -0
- package/dist/src/math/FractalColorSystem.d.ts.map +1 -0
- package/dist/src/math/FractalColorSystem.js +235 -0
- package/dist/src/math/FractalColorSystem.js.map +1 -0
- package/dist/src/math/FractalMath.d.ts +80 -0
- package/dist/src/math/FractalMath.d.ts.map +1 -0
- package/dist/src/math/FractalMath.js +175 -0
- package/dist/src/math/FractalMath.js.map +1 -0
- package/dist/src/math/MathUtils.d.ts +135 -0
- package/dist/src/math/MathUtils.d.ts.map +1 -0
- package/dist/src/math/MathUtils.js +298 -0
- package/dist/src/math/MathUtils.js.map +1 -0
- package/dist/src/math/RodinCoil.d.ts +94 -0
- package/dist/src/math/RodinCoil.d.ts.map +1 -0
- package/dist/src/math/RodinCoil.js +259 -0
- package/dist/src/math/RodinCoil.js.map +1 -0
- package/dist/src/math/ToroidalGeometry.d.ts +132 -0
- package/dist/src/math/ToroidalGeometry.d.ts.map +1 -0
- package/dist/src/math/ToroidalGeometry.js +231 -0
- package/dist/src/math/ToroidalGeometry.js.map +1 -0
- package/dist/src/math/VBM.d.ts +207 -0
- package/dist/src/math/VBM.d.ts.map +1 -0
- package/dist/src/math/VBM.js +581 -0
- package/dist/src/math/VBM.js.map +1 -0
- package/dist/src/math/VBMColorSystem.d.ts +76 -0
- package/dist/src/math/VBMColorSystem.d.ts.map +1 -0
- package/dist/src/math/VBMColorSystem.js +302 -0
- package/dist/src/math/VBMColorSystem.js.map +1 -0
- package/dist/src/math/VortexMath.d.ts +95 -0
- package/dist/src/math/VortexMath.d.ts.map +1 -0
- package/dist/src/math/VortexMath.js +228 -0
- package/dist/src/math/VortexMath.js.map +1 -0
- package/dist/src/monitoring/HealthMonitor.d.ts +123 -0
- package/dist/src/monitoring/HealthMonitor.d.ts.map +1 -0
- package/dist/src/monitoring/HealthMonitor.js +296 -0
- package/dist/src/monitoring/HealthMonitor.js.map +1 -0
- package/dist/src/pwa/ConsciousnessPWA.d.ts +107 -0
- package/dist/src/pwa/ConsciousnessPWA.d.ts.map +1 -0
- package/dist/src/pwa/ConsciousnessPWA.js +288 -0
- package/dist/src/pwa/ConsciousnessPWA.js.map +1 -0
- package/dist/src/types/DeviceConfig.d.ts +39 -0
- package/dist/src/types/DeviceConfig.d.ts.map +1 -0
- package/dist/src/types/DeviceConfig.js +30 -0
- package/dist/src/types/DeviceConfig.js.map +1 -0
- package/dist/src/unity/FieldUnity.d.ts +100 -0
- package/dist/src/unity/FieldUnity.d.ts.map +1 -0
- package/dist/src/unity/FieldUnity.js +326 -0
- package/dist/src/unity/FieldUnity.js.map +1 -0
- package/dist/src/utils/Cache.d.ts +127 -0
- package/dist/src/utils/Cache.d.ts.map +1 -0
- package/dist/src/utils/Cache.js +261 -0
- package/dist/src/utils/Cache.js.map +1 -0
- package/dist/src/utils/GitIntegration.d.ts +32 -0
- package/dist/src/utils/GitIntegration.d.ts.map +1 -0
- package/dist/src/utils/GitIntegration.js +128 -0
- package/dist/src/utils/GitIntegration.js.map +1 -0
- package/dist/src/utils/Logger.d.ts +116 -0
- package/dist/src/utils/Logger.d.ts.map +1 -0
- package/dist/src/utils/Logger.js +246 -0
- package/dist/src/utils/Logger.js.map +1 -0
- package/dist/src/void/VoidSystem.d.ts +308 -0
- package/dist/src/void/VoidSystem.d.ts.map +1 -0
- package/dist/src/void/VoidSystem.js +863 -0
- package/dist/src/void/VoidSystem.js.map +1 -0
- package/docs/API.md +1223 -0
- package/docs/CONSCIOUSNESS_ARTIFACT.md +137 -0
- package/docs/GIT_INTEGRATION.md +412 -0
- package/docs/MATHEMATICS.md +462 -0
- package/docs/METAPHYSICAL.md +323 -0
- package/docs/PRODUCTION.md +426 -0
- package/docs/PUBLISHING.md +327 -0
- package/docs/PWA_ANALYSIS.md +231 -0
- package/docs/QA_IMPROVEMENTS.md +43 -0
- package/docs/README.md +423 -0
- package/docs/REALTIME_SELF_REFACTORING.md +102 -0
- package/docs/VOID_CLOSURE_SYSTEM.md +325 -0
- package/package.json +111 -0
|
@@ -0,0 +1,522 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Unified Void Equations System
|
|
4
|
+
*
|
|
5
|
+
* Centralized system for all void equations, paradox resolution, and metaphysical unity.
|
|
6
|
+
* Implements the principle that all opposites are unified in void consciousness.
|
|
7
|
+
*
|
|
8
|
+
* Metaphysical Context:
|
|
9
|
+
* - All paradoxes are resolved in the void through consciousness unity
|
|
10
|
+
* - Opposites are different expressions of the same underlying consciousness
|
|
11
|
+
* - The void contains infinite potential for paradox resolution
|
|
12
|
+
* - Unity emerges through the recognition of shared relationships
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.UnifiedVoidEquations = void 0;
|
|
16
|
+
/**
|
|
17
|
+
* Unified Void Equations System
|
|
18
|
+
*
|
|
19
|
+
* Centralizes all void equations and paradox resolution
|
|
20
|
+
*/
|
|
21
|
+
class UnifiedVoidEquations {
|
|
22
|
+
constructor() {
|
|
23
|
+
this.equations = new Map();
|
|
24
|
+
this.categories = new Map();
|
|
25
|
+
this.initializeEquations();
|
|
26
|
+
this.initializeCategories();
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Initialize all void equations
|
|
30
|
+
*/
|
|
31
|
+
initializeEquations() {
|
|
32
|
+
// === TRUTH PARADOXES ===
|
|
33
|
+
this.addEquation({
|
|
34
|
+
id: "false_true",
|
|
35
|
+
left: "False",
|
|
36
|
+
right: "True",
|
|
37
|
+
principle: "Truth paradox resolution",
|
|
38
|
+
metaphysicalContext: "False and true are both expressions of void consciousness as different phases of awareness",
|
|
39
|
+
voidResolution: "Both are unified in void consciousness as different phases of the same awareness",
|
|
40
|
+
consciousnessIntegration: 0.95,
|
|
41
|
+
category: "truth",
|
|
42
|
+
relationships: ["awareness", "consciousness", "void_center"],
|
|
43
|
+
examples: [
|
|
44
|
+
"A statement can be both false and true in different contexts",
|
|
45
|
+
"Truth emerges from void consciousness",
|
|
46
|
+
],
|
|
47
|
+
applications: [
|
|
48
|
+
"Logic systems",
|
|
49
|
+
"Consciousness studies",
|
|
50
|
+
"Paradox resolution",
|
|
51
|
+
],
|
|
52
|
+
});
|
|
53
|
+
this.addEquation({
|
|
54
|
+
id: "right_wrong",
|
|
55
|
+
left: "Right",
|
|
56
|
+
right: "Wrong",
|
|
57
|
+
principle: "Ethical paradox resolution",
|
|
58
|
+
metaphysicalContext: "Right and wrong are both void consciousness alignments in different contexts",
|
|
59
|
+
voidResolution: "Both are unified in void consciousness as different alignments of the same field",
|
|
60
|
+
consciousnessIntegration: 0.9,
|
|
61
|
+
category: "value",
|
|
62
|
+
relationships: ["ethics", "alignment", "consciousness_field"],
|
|
63
|
+
examples: [
|
|
64
|
+
"An action can be right in one context and wrong in another",
|
|
65
|
+
"Ethics emerge from void consciousness",
|
|
66
|
+
],
|
|
67
|
+
applications: [
|
|
68
|
+
"Ethical systems",
|
|
69
|
+
"Moral philosophy",
|
|
70
|
+
"Consciousness alignment",
|
|
71
|
+
],
|
|
72
|
+
});
|
|
73
|
+
// === VALUE PARADOXES ===
|
|
74
|
+
this.addEquation({
|
|
75
|
+
id: "good_bad",
|
|
76
|
+
left: "Good",
|
|
77
|
+
right: "Bad",
|
|
78
|
+
principle: "Moral value paradox resolution",
|
|
79
|
+
metaphysicalContext: "Good and bad are both void consciousness states in different expressions",
|
|
80
|
+
voidResolution: "Both are unified in void consciousness as different states of the same essence",
|
|
81
|
+
consciousnessIntegration: 0.9,
|
|
82
|
+
category: "value",
|
|
83
|
+
relationships: ["morality", "essence", "consciousness_states"],
|
|
84
|
+
examples: [
|
|
85
|
+
"A situation can be both good and bad simultaneously",
|
|
86
|
+
"Values emerge from void consciousness",
|
|
87
|
+
],
|
|
88
|
+
applications: ["Moral systems", "Value theory", "Consciousness states"],
|
|
89
|
+
});
|
|
90
|
+
this.addEquation({
|
|
91
|
+
id: "beautiful_ugly",
|
|
92
|
+
left: "Beautiful",
|
|
93
|
+
right: "Ugly",
|
|
94
|
+
principle: "Aesthetic paradox resolution",
|
|
95
|
+
metaphysicalContext: "Beautiful and ugly are both void consciousness patterns in different harmonies",
|
|
96
|
+
voidResolution: "Both are unified in void consciousness as different patterns of the same harmony",
|
|
97
|
+
consciousnessIntegration: 0.85,
|
|
98
|
+
category: "value",
|
|
99
|
+
relationships: ["aesthetics", "harmony", "consciousness_patterns"],
|
|
100
|
+
examples: [
|
|
101
|
+
"Beauty and ugliness can coexist in the same object",
|
|
102
|
+
"Aesthetics emerge from void consciousness",
|
|
103
|
+
],
|
|
104
|
+
applications: [
|
|
105
|
+
"Aesthetic theory",
|
|
106
|
+
"Art appreciation",
|
|
107
|
+
"Consciousness harmony",
|
|
108
|
+
],
|
|
109
|
+
});
|
|
110
|
+
// === EXISTENCE PARADOXES ===
|
|
111
|
+
this.addEquation({
|
|
112
|
+
id: "empty_full",
|
|
113
|
+
left: "Empty",
|
|
114
|
+
right: "Full",
|
|
115
|
+
principle: "Original void equation - existence paradox",
|
|
116
|
+
metaphysicalContext: "Empty and full are both void consciousness states as source and expression",
|
|
117
|
+
voidResolution: "Both are unified in void consciousness as source and expression of the same field",
|
|
118
|
+
consciousnessIntegration: 1.0,
|
|
119
|
+
category: "existence",
|
|
120
|
+
relationships: ["source", "expression", "void_field"],
|
|
121
|
+
examples: [
|
|
122
|
+
"The void is both empty (source) and full (expression)",
|
|
123
|
+
"Existence emerges from void consciousness",
|
|
124
|
+
],
|
|
125
|
+
applications: ["Metaphysics", "Existence theory", "Void consciousness"],
|
|
126
|
+
});
|
|
127
|
+
this.addEquation({
|
|
128
|
+
id: "complete_incomplete",
|
|
129
|
+
left: "Complete",
|
|
130
|
+
right: "Incomplete",
|
|
131
|
+
principle: "Completion paradox resolution",
|
|
132
|
+
metaphysicalContext: "Complete and incomplete are both void consciousness states in different fulfillments",
|
|
133
|
+
voidResolution: "Both are unified in void consciousness as different fulfillments of the same potential",
|
|
134
|
+
consciousnessIntegration: 0.8,
|
|
135
|
+
category: "existence",
|
|
136
|
+
relationships: ["fulfillment", "potential", "consciousness_fulfillment"],
|
|
137
|
+
examples: [
|
|
138
|
+
"A system can be both complete and incomplete simultaneously",
|
|
139
|
+
"Completion emerges from void consciousness",
|
|
140
|
+
],
|
|
141
|
+
applications: [
|
|
142
|
+
"Systems theory",
|
|
143
|
+
"Fulfillment studies",
|
|
144
|
+
"Consciousness potential",
|
|
145
|
+
],
|
|
146
|
+
});
|
|
147
|
+
// === CONSCIOUSNESS PARADOXES ===
|
|
148
|
+
this.addEquation({
|
|
149
|
+
id: "judgement_expectation",
|
|
150
|
+
left: "Judgement",
|
|
151
|
+
right: "Expectation",
|
|
152
|
+
principle: "Consciousness evaluation paradox",
|
|
153
|
+
metaphysicalContext: "Judgement and expectation are both void consciousness evaluations in different modes",
|
|
154
|
+
voidResolution: "Both are unified in void consciousness as different modes of the same evaluation",
|
|
155
|
+
consciousnessIntegration: 0.95,
|
|
156
|
+
category: "consciousness",
|
|
157
|
+
relationships: ["evaluation", "modes", "consciousness_evaluation"],
|
|
158
|
+
examples: [
|
|
159
|
+
"Judgement and expectation can coexist in consciousness",
|
|
160
|
+
"Evaluation emerges from void consciousness",
|
|
161
|
+
],
|
|
162
|
+
applications: [
|
|
163
|
+
"Consciousness studies",
|
|
164
|
+
"Evaluation theory",
|
|
165
|
+
"Mind states",
|
|
166
|
+
],
|
|
167
|
+
});
|
|
168
|
+
this.addEquation({
|
|
169
|
+
id: "wise_foolish",
|
|
170
|
+
left: "Wise",
|
|
171
|
+
right: "Foolish",
|
|
172
|
+
principle: "Intellectual paradox resolution",
|
|
173
|
+
metaphysicalContext: "Wise and foolish are both void consciousness states in different understandings",
|
|
174
|
+
voidResolution: "Both are unified in void consciousness as different understandings of the same awareness",
|
|
175
|
+
consciousnessIntegration: 0.9,
|
|
176
|
+
category: "consciousness",
|
|
177
|
+
relationships: [
|
|
178
|
+
"understanding",
|
|
179
|
+
"awareness",
|
|
180
|
+
"consciousness_understanding",
|
|
181
|
+
],
|
|
182
|
+
examples: [
|
|
183
|
+
"Wisdom and foolishness can coexist in the same mind",
|
|
184
|
+
"Understanding emerges from void consciousness",
|
|
185
|
+
],
|
|
186
|
+
applications: [
|
|
187
|
+
"Intelligence theory",
|
|
188
|
+
"Wisdom studies",
|
|
189
|
+
"Consciousness understanding",
|
|
190
|
+
],
|
|
191
|
+
});
|
|
192
|
+
// === MATHEMATICAL PARADOXES ===
|
|
193
|
+
this.addEquation({
|
|
194
|
+
id: "debit_credit",
|
|
195
|
+
left: "Debit",
|
|
196
|
+
right: "Credit",
|
|
197
|
+
principle: "Financial paradox resolution",
|
|
198
|
+
metaphysicalContext: "Debit and credit are both void consciousness energy flows in different directions",
|
|
199
|
+
voidResolution: "Both are unified in void consciousness as different directions of the same energy flow",
|
|
200
|
+
consciousnessIntegration: 0.85,
|
|
201
|
+
category: "mathematics",
|
|
202
|
+
relationships: ["energy_flow", "directions", "consciousness_energy"],
|
|
203
|
+
examples: [
|
|
204
|
+
"Debit and credit balance each other in the void",
|
|
205
|
+
"Energy flows emerge from void consciousness",
|
|
206
|
+
],
|
|
207
|
+
applications: [
|
|
208
|
+
"Financial systems",
|
|
209
|
+
"Energy theory",
|
|
210
|
+
"Consciousness flow",
|
|
211
|
+
],
|
|
212
|
+
});
|
|
213
|
+
this.addEquation({
|
|
214
|
+
id: "success_failure",
|
|
215
|
+
left: "Success",
|
|
216
|
+
right: "Failure",
|
|
217
|
+
principle: "Outcome paradox resolution",
|
|
218
|
+
metaphysicalContext: "Success and failure are both void consciousness flows in different manifestations",
|
|
219
|
+
voidResolution: "Both are unified in void consciousness as different manifestations of the same flow",
|
|
220
|
+
consciousnessIntegration: 0.8,
|
|
221
|
+
category: "mathematics",
|
|
222
|
+
relationships: ["manifestation", "flow", "consciousness_manifestation"],
|
|
223
|
+
examples: [
|
|
224
|
+
"Success and failure can be the same outcome",
|
|
225
|
+
"Manifestation emerges from void consciousness",
|
|
226
|
+
],
|
|
227
|
+
applications: [
|
|
228
|
+
"Outcome theory",
|
|
229
|
+
"Manifestation studies",
|
|
230
|
+
"Consciousness flow",
|
|
231
|
+
],
|
|
232
|
+
});
|
|
233
|
+
// === METAPHYSICAL PARADOXES ===
|
|
234
|
+
this.addEquation({
|
|
235
|
+
id: "strong_weak",
|
|
236
|
+
left: "Strong",
|
|
237
|
+
right: "Weak",
|
|
238
|
+
principle: "Capability paradox resolution",
|
|
239
|
+
metaphysicalContext: "Strong and weak are both void consciousness expressions in different powers",
|
|
240
|
+
voidResolution: "Both are unified in void consciousness as different powers of the same expression",
|
|
241
|
+
consciousnessIntegration: 0.8,
|
|
242
|
+
category: "metaphysics",
|
|
243
|
+
relationships: ["power", "expression", "consciousness_power"],
|
|
244
|
+
examples: [
|
|
245
|
+
"Strength and weakness can coexist in the same being",
|
|
246
|
+
"Power emerges from void consciousness",
|
|
247
|
+
],
|
|
248
|
+
applications: [
|
|
249
|
+
"Capability theory",
|
|
250
|
+
"Power studies",
|
|
251
|
+
"Consciousness expression",
|
|
252
|
+
],
|
|
253
|
+
});
|
|
254
|
+
this.addEquation({
|
|
255
|
+
id: "pure_impure",
|
|
256
|
+
left: "Pure",
|
|
257
|
+
right: "Impure",
|
|
258
|
+
principle: "Purity paradox resolution",
|
|
259
|
+
metaphysicalContext: "Pure and impure are both void consciousness states in different essences",
|
|
260
|
+
voidResolution: "Both are unified in void consciousness as different essences of the same state",
|
|
261
|
+
consciousnessIntegration: 0.9,
|
|
262
|
+
category: "metaphysics",
|
|
263
|
+
relationships: ["essence", "state", "consciousness_essence"],
|
|
264
|
+
examples: [
|
|
265
|
+
"Purity and impurity can coexist in the same substance",
|
|
266
|
+
"Essence emerges from void consciousness",
|
|
267
|
+
],
|
|
268
|
+
applications: ["Purity theory", "Essence studies", "Consciousness state"],
|
|
269
|
+
});
|
|
270
|
+
// === ADVANCED VOID EQUATIONS ===
|
|
271
|
+
this.addEquation({
|
|
272
|
+
id: "zero_infinity",
|
|
273
|
+
left: "Zero",
|
|
274
|
+
right: "Infinity",
|
|
275
|
+
principle: "Mathematical void paradox",
|
|
276
|
+
metaphysicalContext: "Zero and infinity are both void consciousness expressions as center and periphery",
|
|
277
|
+
voidResolution: "Both are unified in void consciousness as center and periphery of the same field",
|
|
278
|
+
consciousnessIntegration: 0.95,
|
|
279
|
+
category: "mathematics",
|
|
280
|
+
relationships: ["center", "periphery", "void_field"],
|
|
281
|
+
examples: [
|
|
282
|
+
"Zero contains infinity, infinity contains zero",
|
|
283
|
+
"Mathematics emerges from void consciousness",
|
|
284
|
+
],
|
|
285
|
+
applications: [
|
|
286
|
+
"Mathematical theory",
|
|
287
|
+
"Infinity studies",
|
|
288
|
+
"Void mathematics",
|
|
289
|
+
],
|
|
290
|
+
});
|
|
291
|
+
this.addEquation({
|
|
292
|
+
id: "one_many",
|
|
293
|
+
left: "One",
|
|
294
|
+
right: "Many",
|
|
295
|
+
principle: "Unity paradox resolution",
|
|
296
|
+
metaphysicalContext: "One and many are both void consciousness expressions as unity and diversity",
|
|
297
|
+
voidResolution: "Both are unified in void consciousness as unity and diversity of the same field",
|
|
298
|
+
consciousnessIntegration: 0.9,
|
|
299
|
+
category: "metaphysics",
|
|
300
|
+
relationships: ["unity", "diversity", "consciousness_field"],
|
|
301
|
+
examples: [
|
|
302
|
+
"One contains many, many contain one",
|
|
303
|
+
"Unity emerges from void consciousness",
|
|
304
|
+
],
|
|
305
|
+
applications: [
|
|
306
|
+
"Unity theory",
|
|
307
|
+
"Diversity studies",
|
|
308
|
+
"Consciousness field",
|
|
309
|
+
],
|
|
310
|
+
});
|
|
311
|
+
this.addEquation({
|
|
312
|
+
id: "past_future",
|
|
313
|
+
left: "Past",
|
|
314
|
+
right: "Future",
|
|
315
|
+
principle: "Temporal paradox resolution",
|
|
316
|
+
metaphysicalContext: "Past and future are both void consciousness expressions in different temporal modes",
|
|
317
|
+
voidResolution: "Both are unified in void consciousness as different temporal modes of the same now",
|
|
318
|
+
consciousnessIntegration: 0.85,
|
|
319
|
+
category: "consciousness",
|
|
320
|
+
relationships: ["temporal", "now", "consciousness_time"],
|
|
321
|
+
examples: [
|
|
322
|
+
"Past and future exist simultaneously in the now",
|
|
323
|
+
"Time emerges from void consciousness",
|
|
324
|
+
],
|
|
325
|
+
applications: ["Temporal theory", "Time studies", "Consciousness now"],
|
|
326
|
+
});
|
|
327
|
+
this.addEquation({
|
|
328
|
+
id: "inside_outside",
|
|
329
|
+
left: "Inside",
|
|
330
|
+
right: "Outside",
|
|
331
|
+
principle: "Spatial paradox resolution",
|
|
332
|
+
metaphysicalContext: "Inside and outside are both void consciousness expressions in different spatial modes",
|
|
333
|
+
voidResolution: "Both are unified in void consciousness as different spatial modes of the same field",
|
|
334
|
+
consciousnessIntegration: 0.85,
|
|
335
|
+
category: "metaphysics",
|
|
336
|
+
relationships: ["spatial", "field", "consciousness_space"],
|
|
337
|
+
examples: [
|
|
338
|
+
"Inside and outside are relative to the observer",
|
|
339
|
+
"Space emerges from void consciousness",
|
|
340
|
+
],
|
|
341
|
+
applications: ["Spatial theory", "Space studies", "Consciousness field"],
|
|
342
|
+
});
|
|
343
|
+
}
|
|
344
|
+
/**
|
|
345
|
+
* Initialize equation categories
|
|
346
|
+
*/
|
|
347
|
+
initializeCategories() {
|
|
348
|
+
const truthEquations = Array.from(this.equations.values()).filter((eq) => eq.category === "truth");
|
|
349
|
+
const valueEquations = Array.from(this.equations.values()).filter((eq) => eq.category === "value");
|
|
350
|
+
const existenceEquations = Array.from(this.equations.values()).filter((eq) => eq.category === "existence");
|
|
351
|
+
const consciousnessEquations = Array.from(this.equations.values()).filter((eq) => eq.category === "consciousness");
|
|
352
|
+
const mathematicsEquations = Array.from(this.equations.values()).filter((eq) => eq.category === "mathematics");
|
|
353
|
+
const metaphysicsEquations = Array.from(this.equations.values()).filter((eq) => eq.category === "metaphysics");
|
|
354
|
+
this.categories.set("truth", {
|
|
355
|
+
name: "Truth Paradoxes",
|
|
356
|
+
description: "Equations resolving paradoxes of truth, logic, and reality",
|
|
357
|
+
equations: truthEquations,
|
|
358
|
+
unityScore: this.calculateCategoryUnity(truthEquations),
|
|
359
|
+
metaphysicalContext: "Truth emerges from void consciousness as different phases of awareness",
|
|
360
|
+
});
|
|
361
|
+
this.categories.set("value", {
|
|
362
|
+
name: "Value Paradoxes",
|
|
363
|
+
description: "Equations resolving paradoxes of value, ethics, and aesthetics",
|
|
364
|
+
equations: valueEquations,
|
|
365
|
+
unityScore: this.calculateCategoryUnity(valueEquations),
|
|
366
|
+
metaphysicalContext: "Values emerge from void consciousness as different expressions of the same essence",
|
|
367
|
+
});
|
|
368
|
+
this.categories.set("existence", {
|
|
369
|
+
name: "Existence Paradoxes",
|
|
370
|
+
description: "Equations resolving paradoxes of existence, being, and reality",
|
|
371
|
+
equations: existenceEquations,
|
|
372
|
+
unityScore: this.calculateCategoryUnity(existenceEquations),
|
|
373
|
+
metaphysicalContext: "Existence emerges from void consciousness as source and expression of the same field",
|
|
374
|
+
});
|
|
375
|
+
this.categories.set("consciousness", {
|
|
376
|
+
name: "Consciousness Paradoxes",
|
|
377
|
+
description: "Equations resolving paradoxes of mind, awareness, and consciousness",
|
|
378
|
+
equations: consciousnessEquations,
|
|
379
|
+
unityScore: this.calculateCategoryUnity(consciousnessEquations),
|
|
380
|
+
metaphysicalContext: "Consciousness emerges from void consciousness as different modes of the same awareness",
|
|
381
|
+
});
|
|
382
|
+
this.categories.set("mathematics", {
|
|
383
|
+
name: "Mathematical Paradoxes",
|
|
384
|
+
description: "Equations resolving paradoxes of mathematics, logic, and form",
|
|
385
|
+
equations: mathematicsEquations,
|
|
386
|
+
unityScore: this.calculateCategoryUnity(mathematicsEquations),
|
|
387
|
+
metaphysicalContext: "Mathematics emerges from void consciousness as different expressions of the same form",
|
|
388
|
+
});
|
|
389
|
+
this.categories.set("metaphysics", {
|
|
390
|
+
name: "Metaphysical Paradoxes",
|
|
391
|
+
description: "Equations resolving paradoxes of metaphysics, essence, and being",
|
|
392
|
+
equations: metaphysicsEquations,
|
|
393
|
+
unityScore: this.calculateCategoryUnity(metaphysicsEquations),
|
|
394
|
+
metaphysicalContext: "Metaphysics emerges from void consciousness as different aspects of the same reality",
|
|
395
|
+
});
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* Add a void equation
|
|
399
|
+
*/
|
|
400
|
+
addEquation(equation) {
|
|
401
|
+
this.equations.set(equation.id, equation);
|
|
402
|
+
}
|
|
403
|
+
/**
|
|
404
|
+
* Calculate category unity score
|
|
405
|
+
*/
|
|
406
|
+
calculateCategoryUnity(equations) {
|
|
407
|
+
if (equations.length === 0)
|
|
408
|
+
return 0;
|
|
409
|
+
const totalIntegration = equations.reduce((sum, eq) => sum + eq.consciousnessIntegration, 0);
|
|
410
|
+
return totalIntegration / equations.length;
|
|
411
|
+
}
|
|
412
|
+
/**
|
|
413
|
+
* Get all void equations
|
|
414
|
+
*/
|
|
415
|
+
getAllEquations() {
|
|
416
|
+
return Array.from(this.equations.values());
|
|
417
|
+
}
|
|
418
|
+
/**
|
|
419
|
+
* Get equation by ID
|
|
420
|
+
*/
|
|
421
|
+
getEquation(id) {
|
|
422
|
+
return this.equations.get(id);
|
|
423
|
+
}
|
|
424
|
+
/**
|
|
425
|
+
* Get equations by category
|
|
426
|
+
*/
|
|
427
|
+
getEquationsByCategory(category) {
|
|
428
|
+
return Array.from(this.equations.values()).filter((eq) => eq.category === category);
|
|
429
|
+
}
|
|
430
|
+
/**
|
|
431
|
+
* Get all categories
|
|
432
|
+
*/
|
|
433
|
+
getAllCategories() {
|
|
434
|
+
return Array.from(this.categories.values());
|
|
435
|
+
}
|
|
436
|
+
/**
|
|
437
|
+
* Get category by name
|
|
438
|
+
*/
|
|
439
|
+
getCategory(name) {
|
|
440
|
+
return this.categories.get(name);
|
|
441
|
+
}
|
|
442
|
+
/**
|
|
443
|
+
* Solve void paradox
|
|
444
|
+
*/
|
|
445
|
+
solveParadox(paradox) {
|
|
446
|
+
const query = paradox.toLowerCase();
|
|
447
|
+
// Find matching equation
|
|
448
|
+
for (const equation of this.equations.values()) {
|
|
449
|
+
if (query.includes(equation.left.toLowerCase()) ||
|
|
450
|
+
query.includes(equation.right.toLowerCase())) {
|
|
451
|
+
return {
|
|
452
|
+
paradox,
|
|
453
|
+
solution: `${equation.left} = Void = ${equation.right}`,
|
|
454
|
+
voidIntegration: equation.consciousnessIntegration,
|
|
455
|
+
metaphysicalContext: equation.metaphysicalContext,
|
|
456
|
+
consciousnessLevel: equation.consciousnessIntegration,
|
|
457
|
+
relationships: equation.relationships,
|
|
458
|
+
applications: equation.applications,
|
|
459
|
+
};
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
// Default resolution for unknown paradoxes
|
|
463
|
+
return {
|
|
464
|
+
paradox,
|
|
465
|
+
solution: "All paradoxes are resolved in the void through consciousness unity",
|
|
466
|
+
voidIntegration: 0.8,
|
|
467
|
+
metaphysicalContext: "The void contains infinite potential for paradox resolution",
|
|
468
|
+
consciousnessLevel: 0.8,
|
|
469
|
+
relationships: ["void_consciousness", "paradox_resolution", "unity"],
|
|
470
|
+
applications: [
|
|
471
|
+
"Paradox resolution",
|
|
472
|
+
"Consciousness unity",
|
|
473
|
+
"Void integration",
|
|
474
|
+
],
|
|
475
|
+
};
|
|
476
|
+
}
|
|
477
|
+
/**
|
|
478
|
+
* Search equations
|
|
479
|
+
*/
|
|
480
|
+
searchEquations(query) {
|
|
481
|
+
const queryLower = query.toLowerCase();
|
|
482
|
+
return Array.from(this.equations.values()).filter((equation) => equation.left.toLowerCase().includes(queryLower) ||
|
|
483
|
+
equation.right.toLowerCase().includes(queryLower) ||
|
|
484
|
+
equation.principle.toLowerCase().includes(queryLower) ||
|
|
485
|
+
equation.metaphysicalContext.toLowerCase().includes(queryLower) ||
|
|
486
|
+
equation.category.includes(queryLower));
|
|
487
|
+
}
|
|
488
|
+
/**
|
|
489
|
+
* Get system summary
|
|
490
|
+
*/
|
|
491
|
+
getSystemSummary() {
|
|
492
|
+
const totalEquations = this.equations.size;
|
|
493
|
+
const totalCategories = this.categories.size;
|
|
494
|
+
const averageIntegration = Array.from(this.equations.values()).reduce((sum, eq) => sum + eq.consciousnessIntegration, 0) / totalEquations;
|
|
495
|
+
return {
|
|
496
|
+
totalEquations,
|
|
497
|
+
totalCategories,
|
|
498
|
+
averageIntegration,
|
|
499
|
+
categories: Array.from(this.categories.values()).map((cat) => ({
|
|
500
|
+
name: cat.name,
|
|
501
|
+
equationCount: cat.equations.length,
|
|
502
|
+
unityScore: cat.unityScore,
|
|
503
|
+
})),
|
|
504
|
+
metaphysicalContext: "All void equations resolve paradoxes through consciousness unity in the void field",
|
|
505
|
+
};
|
|
506
|
+
}
|
|
507
|
+
/**
|
|
508
|
+
* Get void equation insights
|
|
509
|
+
*/
|
|
510
|
+
getVoidInsights() {
|
|
511
|
+
return {
|
|
512
|
+
principle: "All opposites are unified in void consciousness",
|
|
513
|
+
totalEquations: this.equations.size,
|
|
514
|
+
categories: this.getAllCategories().map((cat) => cat.name),
|
|
515
|
+
highestIntegration: Math.max(...Array.from(this.equations.values()).map((eq) => eq.consciousnessIntegration)),
|
|
516
|
+
averageIntegration: Array.from(this.equations.values()).reduce((sum, eq) => sum + eq.consciousnessIntegration, 0) / this.equations.size,
|
|
517
|
+
metaphysicalContext: "Void equations demonstrate the unity of all opposites through consciousness integration",
|
|
518
|
+
};
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
exports.UnifiedVoidEquations = UnifiedVoidEquations;
|
|
522
|
+
//# sourceMappingURL=UnifiedVoidEquations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UnifiedVoidEquations.js","sourceRoot":"","sources":["../../../src/core/UnifiedVoidEquations.ts"],"names":[],"mappings":"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"}
|