tnfr 1.0__tar.gz
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.
Potentially problematic release.
This version of tnfr might be problematic. Click here for more details.
- tnfr-1.0/LICENSE.txt +21 -0
- tnfr-1.0/PKG-INFO +95 -0
- tnfr-1.0/README.md +58 -0
- tnfr-1.0/pyproject.toml +66 -0
- tnfr-1.0/setup.cfg +4 -0
- tnfr-1.0/src/core/ontosim.py +757 -0
- tnfr-1.0/src/matrix/operators.py +496 -0
- tnfr-1.0/src/tnfr/__init__.py +34 -0
- tnfr-1.0/src/tnfr/constants.py +7 -0
- tnfr-1.0/src/tnfr/core/ontosim.py +1074 -0
- tnfr-1.0/src/tnfr/matrix/operators.py +500 -0
- tnfr-1.0/src/tnfr/resonance/dynamics.py +1305 -0
- tnfr-1.0/src/tnfr/utils/helpers.py +357 -0
- tnfr-1.0/src/tnfr.egg-info/PKG-INFO +95 -0
- tnfr-1.0/src/tnfr.egg-info/SOURCES.txt +17 -0
- tnfr-1.0/src/tnfr.egg-info/dependency_links.txt +1 -0
- tnfr-1.0/src/tnfr.egg-info/entry_points.txt +2 -0
- tnfr-1.0/src/tnfr.egg-info/requires.txt +15 -0
- tnfr-1.0/src/tnfr.egg-info/top_level.txt +3 -0
tnfr-1.0/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) [year] [fullname]
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
tnfr-1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tnfr
|
|
3
|
+
Version: 1.0
|
|
4
|
+
Summary: TNFR
|
|
5
|
+
Author-email: "F.F. Martinez Gamo" <fmartinezgamo@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://fermga.github.io/Teoria-de-la-naturaleza-fractal-resonante-TNFR-/
|
|
8
|
+
Project-URL: Repository, https://github.com/fermga/Teoria-de-la-naturaleza-fractal-resonante-TNFR-
|
|
9
|
+
Keywords: tnfr,fractal,resonance,symbolic,emergence,coherence
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering
|
|
20
|
+
Requires-Python: >=3.8
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE.txt
|
|
23
|
+
Requires-Dist: networkx>=2.8
|
|
24
|
+
Requires-Dist: numpy>=1.21.0
|
|
25
|
+
Requires-Dist: pandas>=1.3.0
|
|
26
|
+
Requires-Dist: matplotlib>=3.5.0
|
|
27
|
+
Provides-Extra: dev
|
|
28
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
29
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
30
|
+
Requires-Dist: black; extra == "dev"
|
|
31
|
+
Requires-Dist: flake8; extra == "dev"
|
|
32
|
+
Requires-Dist: mypy; extra == "dev"
|
|
33
|
+
Provides-Extra: docs
|
|
34
|
+
Requires-Dist: sphinx>=4.0; extra == "docs"
|
|
35
|
+
Requires-Dist: sphinx-rtd-theme; extra == "docs"
|
|
36
|
+
Dynamic: license-file
|
|
37
|
+
|
|
38
|
+
# TNFR - Teoría de la naturaleza fractal resonante
|
|
39
|
+
|
|
40
|
+
**TNFR** is a Python package implementing the Teoría de la naturaleza fractal resonante (TNFR), a paradigm for modeling and simulating complex emergent systems based on structural coherence and resonant dynamics.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## What is TNFR?
|
|
45
|
+
|
|
46
|
+
TNFR provides a computational framework for studying how complex, self-organizing structures arise from simple interactions. Inspired by natural systems—such as biological networks, physical resonances, and social dynamics—TNFR models systems as networks of nodes with evolving structural properties.
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## Key Features
|
|
51
|
+
|
|
52
|
+
- **Structural Coherence Modeling:**
|
|
53
|
+
- Each node in a TNFR network is characterized by parameters such as structural coherence (EPI), resonant frequency (νf), sense index (Si), and structural threshold (θ).
|
|
54
|
+
- **Emergent Dynamics Simulation:**
|
|
55
|
+
- The package allows you to simulate the evolution of networks over time, capturing how local interactions and transformations lead to global patterns and behaviors.
|
|
56
|
+
- **Symbolic Transformations (Glyphs):**
|
|
57
|
+
- TNFR includes a system of symbolic transformations (glyphs) that modify node properties, enabling the study of processes like emergence, mutation, resonance, and self-organization.
|
|
58
|
+
- **Adaptive Thresholds and Bifurcations:**
|
|
59
|
+
- The framework supports dynamic threshold calculations and the detection of structural bifurcations, allowing for the exploration of phase transitions and critical phenomena.
|
|
60
|
+
- **Flexible Analysis and Export:**
|
|
61
|
+
- TNFR provides tools for analyzing network evolution, detecting emergent patterns, and exporting results for further study.
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Who is TNFR for?
|
|
66
|
+
|
|
67
|
+
- **Researchers in complex systems, artificial intelligence, and network science**
|
|
68
|
+
- **Developers interested in novel paradigms for modeling and simulation**
|
|
69
|
+
- **Anyone curious about the principles of emergence, self-organization, and resonance in natural and artificial systems**
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## Installation
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
pip install tnfr
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## Documentation
|
|
82
|
+
|
|
83
|
+
For detailed documentation and API reference, see the TNFR Documentation.
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## License
|
|
88
|
+
|
|
89
|
+
TNFR is released under the MIT License
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
Explore the fractal-resonant nature of complex systems with a new computational paradigm.
|
|
94
|
+
https://github.com/fermga/Teoria-de-la-naturaleza-fractal-resonante-TNFR-
|
|
95
|
+
https://fermga.github.io/Teoria-de-la-naturaleza-fractal-resonante-TNFR-/
|
tnfr-1.0/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# TNFR - Teoría de la naturaleza fractal resonante
|
|
2
|
+
|
|
3
|
+
**TNFR** is a Python package implementing the Teoría de la naturaleza fractal resonante (TNFR), a paradigm for modeling and simulating complex emergent systems based on structural coherence and resonant dynamics.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## What is TNFR?
|
|
8
|
+
|
|
9
|
+
TNFR provides a computational framework for studying how complex, self-organizing structures arise from simple interactions. Inspired by natural systems—such as biological networks, physical resonances, and social dynamics—TNFR models systems as networks of nodes with evolving structural properties.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Key Features
|
|
14
|
+
|
|
15
|
+
- **Structural Coherence Modeling:**
|
|
16
|
+
- Each node in a TNFR network is characterized by parameters such as structural coherence (EPI), resonant frequency (νf), sense index (Si), and structural threshold (θ).
|
|
17
|
+
- **Emergent Dynamics Simulation:**
|
|
18
|
+
- The package allows you to simulate the evolution of networks over time, capturing how local interactions and transformations lead to global patterns and behaviors.
|
|
19
|
+
- **Symbolic Transformations (Glyphs):**
|
|
20
|
+
- TNFR includes a system of symbolic transformations (glyphs) that modify node properties, enabling the study of processes like emergence, mutation, resonance, and self-organization.
|
|
21
|
+
- **Adaptive Thresholds and Bifurcations:**
|
|
22
|
+
- The framework supports dynamic threshold calculations and the detection of structural bifurcations, allowing for the exploration of phase transitions and critical phenomena.
|
|
23
|
+
- **Flexible Analysis and Export:**
|
|
24
|
+
- TNFR provides tools for analyzing network evolution, detecting emergent patterns, and exporting results for further study.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Who is TNFR for?
|
|
29
|
+
|
|
30
|
+
- **Researchers in complex systems, artificial intelligence, and network science**
|
|
31
|
+
- **Developers interested in novel paradigms for modeling and simulation**
|
|
32
|
+
- **Anyone curious about the principles of emergence, self-organization, and resonance in natural and artificial systems**
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pip install tnfr
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Documentation
|
|
45
|
+
|
|
46
|
+
For detailed documentation and API reference, see the TNFR Documentation.
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
TNFR is released under the MIT License
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
Explore the fractal-resonant nature of complex systems with a new computational paradigm.
|
|
57
|
+
https://github.com/fermga/Teoria-de-la-naturaleza-fractal-resonante-TNFR-
|
|
58
|
+
https://fermga.github.io/Teoria-de-la-naturaleza-fractal-resonante-TNFR-/
|
tnfr-1.0/pyproject.toml
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tnfr"
|
|
7
|
+
version = "1.0"
|
|
8
|
+
description = "TNFR"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
|
|
13
|
+
authors = [
|
|
14
|
+
{name = "F.F. Martinez Gamo", email = "fmartinezgamo@gmail.com"}
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
keywords = ["tnfr", "fractal", "resonance", "symbolic", "emergence", "coherence"]
|
|
18
|
+
|
|
19
|
+
classifiers = [
|
|
20
|
+
"Development Status :: 3 - Alpha",
|
|
21
|
+
"Intended Audience :: Science/Research",
|
|
22
|
+
"License :: OSI Approved :: MIT License",
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Programming Language :: Python :: 3.8",
|
|
25
|
+
"Programming Language :: Python :: 3.9",
|
|
26
|
+
"Programming Language :: Python :: 3.10",
|
|
27
|
+
"Programming Language :: Python :: 3.11",
|
|
28
|
+
"Programming Language :: Python :: 3.12",
|
|
29
|
+
"Topic :: Scientific/Engineering"
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
dependencies = [
|
|
33
|
+
"networkx>=2.8",
|
|
34
|
+
"numpy>=1.21.0",
|
|
35
|
+
"pandas>=1.3.0",
|
|
36
|
+
"matplotlib>=3.5.0"
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
[project.optional-dependencies]
|
|
40
|
+
dev = [
|
|
41
|
+
"pytest>=7.0",
|
|
42
|
+
"pytest-cov",
|
|
43
|
+
"black",
|
|
44
|
+
"flake8",
|
|
45
|
+
"mypy"
|
|
46
|
+
]
|
|
47
|
+
docs = [
|
|
48
|
+
"sphinx>=4.0",
|
|
49
|
+
"sphinx-rtd-theme"
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
[project.urls]
|
|
53
|
+
Homepage = "https://fermga.github.io/Teoria-de-la-naturaleza-fractal-resonante-TNFR-/"
|
|
54
|
+
Repository = "https://github.com/fermga/Teoria-de-la-naturaleza-fractal-resonante-TNFR-"
|
|
55
|
+
|
|
56
|
+
[project.scripts]
|
|
57
|
+
tnfr-simulate = "tnfr.cli:main"
|
|
58
|
+
|
|
59
|
+
[tool.pytest.ini_options]
|
|
60
|
+
pythonpath = ["src"]
|
|
61
|
+
|
|
62
|
+
[tool.setuptools.packages.find]
|
|
63
|
+
where = ["src"]
|
|
64
|
+
|
|
65
|
+
[tool.setuptools.package-data]
|
|
66
|
+
tnfr = ["*.json", "*.yaml"]
|
tnfr-1.0/setup.cfg
ADDED