tnfr 3.0.1__py3-none-any.whl → 3.0.2__py3-none-any.whl

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/__init__.py CHANGED
@@ -3,53 +3,47 @@ from __future__ import annotations
3
3
  TNFR — Teoría de la Naturaleza Fractal Resonante
4
4
  API pública del paquete.
5
5
 
6
- Principio operativo (ecuación nodal):
6
+ Ecuación nodal:
7
7
  ∂EPI/∂t = νf · ΔNFR(t)
8
-
9
- Re-exporta:
10
- - preparar_red
11
- - step, run, set_delta_nfr_hook
12
- - attach_standard_observer, coherencia_global, orden_kuramoto
13
8
  """
14
9
 
15
- __version__ = "3.0.1"
10
+ __version__ = "3.0.2"
16
11
 
17
12
  # -------------------------------------------------------------------
18
- # 1) Registrar alias ANTES de importar submódulos que usan imports
19
- # absolutos (p.ej. `from constants import DEFAULTS`)
13
+ # 1) Registrar alias en sys.modules ANTES de cargar submódulos que
14
+ # hacen imports absolutos (p.ej. `from constants import ...`).
15
+ # Orden: constants -> helpers -> operators -> observers
16
+ # Luego: dynamics / ontosim (que dependen de los anteriores)
20
17
  # -------------------------------------------------------------------
21
18
  import sys as _sys
22
19
 
20
+ # 1.a constants (no depende de helpers/otros)
23
21
  from . import constants as _constants
24
- from . import helpers as _helpers
25
- from . import operators as _operators
26
- from . import observers as _observers
27
-
28
22
  _sys.modules.setdefault("constants", _constants)
23
+
24
+ # 1.b helpers (usa: from constants import ...)
25
+ from . import helpers as _helpers
29
26
  _sys.modules.setdefault("helpers", _helpers)
27
+
28
+ # 1.c operators (usa: from constants/helpers import ...)
29
+ from . import operators as _operators
30
30
  _sys.modules.setdefault("operators", _operators)
31
+
32
+ # 1.d observers (usa: from constants/helpers import ...)
33
+ from . import observers as _observers
31
34
  _sys.modules.setdefault("observers", _observers)
32
35
 
33
- # -------------------------------------------------------------------
34
- # 2) Ahora sí: importar módulos que dependen de esos alias
35
- # -------------------------------------------------------------------
36
+ # 2) dynamics / ontosim (ya con alias creados)
37
+ from . import dynamics as _dynamics
38
+ from . import ontosim as _ontosim
39
+ _sys.modules.setdefault("dynamics", _dynamics)
40
+ _sys.modules.setdefault("ontosim", _ontosim)
41
+
42
+ # 3) Re-exports de la API pública
36
43
  from .dynamics import step, run, set_delta_nfr_hook
37
44
  from .ontosim import preparar_red
38
45
  from .observers import attach_standard_observer, coherencia_global, orden_kuramoto
39
46
 
40
- # (opcional) exponer también alias para `dynamics` y `ontosim`
41
- # si algún código externo hace `from dynamics import run`, etc.
42
- import types as _types
43
- import importlib as _importlib
44
-
45
- _dynamics_mod = _importlib.import_module(__name__ + ".dynamics")
46
- _ontosim_mod = _importlib.import_module(__name__ + ".ontosim")
47
- _sys.modules.setdefault("dynamics", _dynamics_mod)
48
- _sys.modules.setdefault("ontosim", _ontosim_mod)
49
-
50
- # -------------------------------------------------------------------
51
- # 3) API pública
52
- # -------------------------------------------------------------------
53
47
  __all__ = [
54
48
  "preparar_red",
55
49
  "step", "run", "set_delta_nfr_hook",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tnfr
3
- Version: 3.0.1
3
+ Version: 3.0.2
4
4
  Summary: TNFR canónica: dinámica glífica modular sobre redes.
5
5
  Author: Fer
6
6
  License: MIT
@@ -1,4 +1,4 @@
1
- tnfr/__init__.py,sha256=KFOkKW99ZQR_czFQ2oyWf3fEGFPBOXXZIs6HLtbAPfc,2135
1
+ tnfr/__init__.py,sha256=RBQO7L4qQQWMK0S6S9j2Ev52U6GOH2iNTaH2d8o5Zj8,1798
2
2
  tnfr/constants.py,sha256=_775sPHussR9vgkWRCLC6dzwgk_1_lLnSlWT8sBWR3U,7677
3
3
  tnfr/dynamics.py,sha256=7B38c9SVKLVFBrKHeJ1nXbghoRHfDs8Nl9CqUmCcAyI,23260
4
4
  tnfr/helpers.py,sha256=tZJsDXc8k9HIfg8BA9cVUEFKBoX1Rfnuhurl2Fvxsy0,6017
@@ -6,8 +6,8 @@ tnfr/main.py,sha256=TEngteuC9MD7Ec9bNGuCC9ym-2ohbh202-HGArCR4tk,1506
6
6
  tnfr/observers.py,sha256=MoC-xLJuMP-UYj8cpIVlgSbXDsE1Uj70Zy51PSH3AJY,5192
7
7
  tnfr/ontosim.py,sha256=U0IeNVF8rFNhnmWWux91xDc0djTDZQkqRRosP6Z7FmE,5485
8
8
  tnfr/operators.py,sha256=M6ahJL8IuB2y4qiEalge5EufCz0eEbhw-O4xfh3NpwE,12146
9
- tnfr-3.0.1.dist-info/licenses/LICENSE.txt,sha256=xTjBNhy3N8pomFljrCkD1d34SmAEWv8hyJMMOjNMH0M,1071
10
- tnfr-3.0.1.dist-info/METADATA,sha256=llsEctHecy9-uddgAq6Xw7CmJrwRamSH0bZ4Ov95Q28,1325
11
- tnfr-3.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
- tnfr-3.0.1.dist-info/top_level.txt,sha256=Q2HJnvc5Rt2VHwVvyBTnNPT4SfmJWnCj7XUxxEvQa7c,5
13
- tnfr-3.0.1.dist-info/RECORD,,
9
+ tnfr-3.0.2.dist-info/licenses/LICENSE.txt,sha256=xTjBNhy3N8pomFljrCkD1d34SmAEWv8hyJMMOjNMH0M,1071
10
+ tnfr-3.0.2.dist-info/METADATA,sha256=IjrYafbG2gRYW4LcsQMsKFG4VqT3zw-H5qHolXKuk3g,1325
11
+ tnfr-3.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
+ tnfr-3.0.2.dist-info/top_level.txt,sha256=Q2HJnvc5Rt2VHwVvyBTnNPT4SfmJWnCj7XUxxEvQa7c,5
13
+ tnfr-3.0.2.dist-info/RECORD,,
File without changes