kececinumbers 0.6.8__py3-none-any.whl → 0.6.9__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.
kececinumbers/__init__.py CHANGED
@@ -22,7 +22,7 @@ import warnings
22
22
  # importlib.reload(kececinumbers) # F821 undefined name 'kececinumbers'
23
23
 
24
24
  # Paket sürüm numarası
25
- __version__ = "0.6.8"
25
+ __version__ = "0.6.9"
26
26
  __author__ = "Mehmet Keçeci"
27
27
  __email__ = "mkececi@yaani.com"
28
28
 
kececinumbers/_version.py CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  # _version.py
3
3
 
4
- __version__ = "0.6.8"
4
+ __version__ = "0.6.9"
5
5
  __license__ = "MIT"
6
6
  __description__ = "Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets."
7
7
  __author__ = "Mehmet Keçeci"
@@ -63,7 +63,7 @@ except ImportError:
63
63
 
64
64
 
65
65
  # ==============================================================================
66
- # --- MODULE CONSTANTS: KEÇECI NUMBER TYPES ---
66
+ # --- MODULE CONSTANTS: Keçeci NUMBER TYPES ---
67
67
  # ==============================================================================
68
68
  TYPE_POSITIVE_REAL = 1
69
69
  TYPE_NEGATIVE_REAL = 2
@@ -82,8 +82,6 @@ TYPE_CLIFFORD = 14
82
82
  TYPE_DUAL = 15
83
83
  TYPE_SPLIT_COMPLEX = 16
84
84
 
85
-
86
-
87
85
  # ==============================================================================
88
86
  # --- CUSTOM NUMBER CLASS DEFINITIONS ---
89
87
  # ==============================================================================
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kececinumbers
3
- Version: 0.6.8
3
+ Version: 0.6.9
4
4
  Summary: Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets
5
5
  Home-page: https://github.com/WhiteSymmetry/kececinumbers
6
6
  Author: Mehmet Keçeci
@@ -136,7 +136,7 @@ Dynamic: requires-python
136
136
 
137
137
  **Keçeci Numbers** is a Python library for generating, analyzing, and visualizing dynamic sequences inspired by the Collatz Conjecture across diverse number systems.
138
138
 
139
- This library provides a unified algorithm that operates on 11 different number types, from standard integers to complex algebraic structures like quaternions and neutrosophic numbers. It is designed as a tool for academic research and exploration in number theory.
139
+ This library provides a unified algorithm that operates on 16 different number types, from standard integers to complex algebraic structures like quaternions and neutrosophic numbers. It is designed as a tool for academic research and exploration in number theory.
140
140
 
141
141
  <details>
142
142
  <summary>🇹🇷 Türkçe Açıklama (Click to expand)</summary>
@@ -160,11 +160,50 @@ This flexible mechanism provides a rich framework for studying the behavior of n
160
160
 
161
161
  ## Key Features
162
162
 
163
- * **11 Different Number Types:** Supports integers, rationals, complex numbers, quaternions, neutrosophic numbers, and more.
163
+ * **16 Different Number Types:** Supports integers, rationals, complex numbers, quaternions, neutrosophic numbers, and more.
164
164
  * **Unified Generator:** Uses a single, consistent `unified_generator` algorithm for all number types.
165
165
  * **Advanced Visualization:** Provides a multi-dimensional `plot_numbers` function tailored to the nature of each number system.
166
166
  * **Keçeci Prime Number (KPN) Analysis:** Identifies the most recurring prime representation in sequences to analyze their convergence behavior.
167
167
  * **Interactive and Programmatic Usage:** Supports both interactive parameter input (`get_interactive`) and direct use in scripts (`get_with_params`).
168
+ * 0.6.9: 16 Nubers
169
+ * 0.6.7: 11 Numbers
170
+
171
+ ---
172
+
173
+ ## MODULE CONSTANTS: KEÇECİ NUMBER TYPES
174
+
175
+
176
+ TYPE_POSITIVE_REAL = 1
177
+
178
+ TYPE_NEGATIVE_REAL = 2
179
+
180
+ TYPE_COMPLEX = 3
181
+
182
+ TYPE_FLOAT = 4
183
+
184
+ TYPE_RATIONAL = 5
185
+
186
+ TYPE_QUATERNION = 6
187
+
188
+ TYPE_NEUTROSOPHIC = 7
189
+
190
+ TYPE_NEUTROSOPHIC_COMPLEX = 8
191
+
192
+ TYPE_HYPERREAL = 9
193
+
194
+ TYPE_BICOMPLEX = 10
195
+
196
+ TYPE_NEUTROSOPHIC_BICOMPLEX = 11
197
+
198
+ TYPE_OCTONION = 12
199
+
200
+ TYPE_SEDENION = 13
201
+
202
+ TYPE_CLIFFORD = 14
203
+
204
+ TYPE_DUAL = 15
205
+
206
+ TYPE_SPLIT_COMPLEX = 16
168
207
 
169
208
  ---
170
209
 
@@ -410,7 +449,18 @@ Keçeci Number Types:
410
449
 
411
450
  11: Neutro-Bicomplex
412
451
 
413
- Please select Keçeci Number Type (1-11): 1
452
+ 12: Octonion (in 'e0,e1,e2,e3,e4,e5,e6,e7' format, e.g., '1.0,0.5,-0.2,0.3,0.1,-0.4,0.2,0.0')
453
+
454
+ 13: "Sedenion(in 'e0,e1,...,e15' format, e.g., '1.0', '0.0'): ",
455
+
456
+ 14: "Clifford(in 'scalar,e1,e2,e12,...' format, e.g., '0.1+0.2e1', '1.0+2.0e1+3.0e12')
457
+
458
+ 15: "Dual(in 'real,dual' format, e.g., '2.0,0.5')
459
+
460
+ 16: "Split-Complex(in 'real,split' format, e.g., '1.0,0.8')
461
+
462
+
463
+ Please select Keçeci Number Type (1-16): 1
414
464
 
415
465
  Enter the starting number (e.g., 0 or 2.5, complex:3+4j, rational: 3/4, quaternions: 1) : 0
416
466
 
@@ -0,0 +1,10 @@
1
+ docs/conf.py,sha256=jkpH_TchRJcC_EspKeY1E_rml2ODmIWhWoqvyCPu_ok,1116
2
+ kececinumbers/__init__.py,sha256=hcp5N1niet4RTCVLHFER1Trne3N4rkr7FuTOYmW5CF8,8399
3
+ kececinumbers/_version.py,sha256=99vsIW2hk-mcMeKtSlgQTxyLR5WE8y25YIUWf5X9jjA,453
4
+ kececinumbers/kececinumbers.py,sha256=dtGfkAwjoJRC0j06XV2P2JF0F78k1bZ7UbfJ8xb5wU0,125125
5
+ kececinumbers-0.6.9.dist-info/licenses/LICENSE,sha256=NJZsJEbQuKzxn1mWPWCbRx8jRUqGS22thl8wwuRQJ9c,1071
6
+ tests/test_sample.py,sha256=vwGbEZ6gcEFq60P5Sqrnc_DVw2QFXOSU1vm3GyzQMnc,9628
7
+ kececinumbers-0.6.9.dist-info/METADATA,sha256=WTf4gVAJKivHi6eN-bRZaOxyb1JctKarq_DfaZIBSV8,34886
8
+ kececinumbers-0.6.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
9
+ kececinumbers-0.6.9.dist-info/top_level.txt,sha256=ABQEKRH9iYb4sWnFdx7gIx7Hg899YktRkQpbRlSSqwU,25
10
+ kececinumbers-0.6.9.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- docs/conf.py,sha256=jkpH_TchRJcC_EspKeY1E_rml2ODmIWhWoqvyCPu_ok,1116
2
- kececinumbers/__init__.py,sha256=4bsoC1-VftHH6p9ZP21HTlmvOjqxV3HlFsovoHPXCis,8399
3
- kececinumbers/_version.py,sha256=fqu2lHgewipDERoAgq-2zYXbVPijC9JsV1p3Xuw5oSI,453
4
- kececinumbers/kececinumbers.py,sha256=5rITANhxL8poHTu4beOvhLaBPXEDSHDIOo_d6-mWUcE,125127
5
- kececinumbers-0.6.8.dist-info/licenses/LICENSE,sha256=NJZsJEbQuKzxn1mWPWCbRx8jRUqGS22thl8wwuRQJ9c,1071
6
- tests/test_sample.py,sha256=vwGbEZ6gcEFq60P5Sqrnc_DVw2QFXOSU1vm3GyzQMnc,9628
7
- kececinumbers-0.6.8.dist-info/METADATA,sha256=Cz8Lp7D871IDV_m_edM1XdHtOfHvg8dJ3zQuZvxU9JU,34047
8
- kececinumbers-0.6.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
9
- kececinumbers-0.6.8.dist-info/top_level.txt,sha256=ABQEKRH9iYb4sWnFdx7gIx7Hg899YktRkQpbRlSSqwU,25
10
- kececinumbers-0.6.8.dist-info/RECORD,,