kececinumbers 0.3.7__tar.gz → 0.3.9__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kececinumbers
3
- Version: 0.3.7
3
+ Version: 0.3.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
@@ -259,36 +259,31 @@ import kececinumbers as kn
259
259
 
260
260
  print("--- Interactive Test ---")
261
261
 
262
- # Adım 1: get_interactive'ten tüm verileri al
263
- # Not: Fonksiyon artık birden fazla değer döndürüyor.
264
- interactive_results = kn.get_interactive()
262
+ # Adım 1: get_interactive'ten dönen 2 değeri al (dizi ve parametre sözlüğü)
263
+ # Hata bu satırdaydı. Fonksiyon 2 değer döndürüyor, 5 değil.
264
+ seq_interactive, params = kn.get_interactive()
265
265
 
266
266
  # Fonksiyon bir dizi döndürdüyse (başarılıysa) devam et
267
- if interactive_results and interactive_results[0]:
268
- # Dönen değerleri değişkenlere ata
269
- seq_interactive, type_choice, start_val, add_val, steps = interactive_results
267
+ if seq_interactive:
268
+ # Adım 2: Tip numarasını ve ismini al
269
+ # Gerekli tüm bilgiler zaten `params` sözlüğünde mevcut.
270
+ type_choice = params['type_choice']
270
271
 
271
- # Tip numarasını isme çevirelim
272
272
  type_names = [
273
273
  "Positive Real", "Negative Real", "Complex", "Float", "Rational",
274
274
  "Quaternion", "Neutrosophic", "Neutro-Complex", "Hyperreal",
275
275
  "Bicomplex", "Neutro-Bicomplex"
276
276
  ]
277
- type_name = type_names[type_choice - 1]
278
-
279
- # Adım 2: Ayrıntılı raporu yazdır
280
- params = {
281
- 'type_choice': type_choice,
282
- 'type_name': type_name,
283
- 'start_val': start_val,
284
- 'add_val': add_val,
285
- 'steps': steps
286
- }
277
+ # type_name'i params sözlüğüne ekleyerek raporu zenginleştirelim
278
+ params['type_name'] = type_names[type_choice - 1]
279
+
280
+ # Adım 3: Ayrıntılı raporu yazdır
281
+ # Fonksiyondan dönen params sözlüğünü doğrudan kullanıyoruz.
287
282
  kn.print_detailed_report(seq_interactive, params)
288
283
 
289
- # Adım 3: Grafiği SADECE BİR KERE çizdir
284
+ # Adım 4: Grafiği çizdir
290
285
  print("\nDisplaying plot...")
291
- plot_title = f"Interactive Keçeci Sequence ({type_name})"
286
+ plot_title = f"Interactive Keçeci Sequence ({params['type_name']})"
292
287
  kn.plot_numbers(seq_interactive, plot_title)
293
288
  plt.show()
294
289
 
@@ -298,22 +293,30 @@ else:
298
293
 
299
294
  ```python
300
295
  import matplotlib.pyplot as plt
301
- import random
302
- import numpy as np
303
- import math
304
- from fractions import Fraction
305
- import quaternion # pip install numpy numpy-quaternion
306
296
  import kececinumbers as kn
307
297
 
308
298
  # Matplotlib grafiklerinin notebook içinde gösterilmesini sağla
309
299
  %matplotlib inline
310
300
 
311
301
  print("Trying interactive mode (will prompt for input in the console/output area)...")
312
- interactive_sequence = kn.get_interactive()
313
- if interactive_sequence:
314
- kn.plot_numbers(interactive_sequence, title="Keçeci Numbers")
315
302
 
316
- print("Done with examples.")
303
+ # DÜZELTİLMİŞ KISIM:
304
+ # get_interactive'ten dönen iki değeri ayrı değişkenlere alıyoruz.
305
+ # 'seq' listenin kendisi, 'params' ise parametre sözlüğüdür.
306
+ seq, params = kn.get_interactive()
307
+
308
+ # Sadece dizi (seq) başarılı bir şekilde oluşturulduysa devam et
309
+ if seq:
310
+ print("\nSequence generated successfully. Plotting...")
311
+ # plot_numbers fonksiyonuna artık doğru şekilde SADECE listeyi gönderiyoruz.
312
+ kn.plot_numbers(seq, title=f"Interactive Keçeci Numbers ({params.get('type_name', '')})")
313
+ # Grafiği göstermek için plt.show() ekleyelim
314
+ plt.show()
315
+ else:
316
+ print("\nSequence generation failed or was cancelled.")
317
+
318
+
319
+ print("\nDone with examples.")
317
320
  print("Keçeci Numbers Module Loaded.")
318
321
  print("This module provides functions to generate and plot Keçeci Numbers.")
319
322
  print("Example: Use 'import kececinumbers as kn' in your script/notebook.")
@@ -323,8 +326,6 @@ print("- kn.get_with_params(kececi_type, iterations, ...)")
323
326
  print("- kn.get_random_type(iterations, ...)")
324
327
  print("- kn.plot_numbers(sequence, title)")
325
328
  print("- kn.unified_generator(...) (low-level)")
326
- print("\nAccess definitions with: kn.DEFINITIONS")
327
- print("\nAccess type constants like: kn.TYPE_COMPLEX")
328
329
  ```
329
330
  ---
330
331
  Trying interactive mode (will prompt for input in the console/output area)...
@@ -379,18 +380,31 @@ Enter the number of iterations (positive integer: e.g., 30): 30
379
380
  import matplotlib.pyplot as plt
380
381
  import kececinumbers as kn
381
382
 
382
-
383
+ # ==============================================================================
384
+ # --- Interactive Test ---
385
+ # ==============================================================================
383
386
  print("--- Interactive Test ---")
384
- seq_interactive = kn.get_interactive()
387
+
388
+ # DÜZELTME: Fonksiyondan dönen 2 değeri ayrı değişkenlere alıyoruz.
389
+ # Sadece diziye ihtiyacımız olduğu için 'params'ı şimdilik kullanmayacağız.
390
+ seq_interactive, params_interactive = kn.get_interactive()
391
+
392
+ # Dizi başarılı bir şekilde oluşturulduysa (boş değilse) grafiği çiz
385
393
  if seq_interactive:
386
- kn.plot_numbers(seq_interactive, "Keçeci Numbers")
394
+ kn.plot_numbers(seq_interactive, "Interactive Keçeci Numbers")
387
395
 
396
+ # ==============================================================================
397
+ # --- Random Type Test (Bu kısım zaten doğruydu) ---
398
+ # ==============================================================================
388
399
  print("\n--- Random Type Test (60 Keçeci Steps) ---")
389
400
  # num_iterations burada Keçeci adımı sayısıdır
390
401
  seq_random = kn.get_random_type(num_iterations=60)
391
402
  if seq_random:
392
403
  kn.plot_numbers(seq_random, "Random Type Keçeci Numbers")
393
404
 
405
+ # ==============================================================================
406
+ # --- Fixed Params Test (Bu kısım da zaten doğruydu) ---
407
+ # ==============================================================================
394
408
  print("\n--- Fixed Params Test (Complex, 60 Keçeci Steps) ---")
395
409
  seq_fixed = kn.get_with_params(
396
410
  kececi_type_choice=kn.TYPE_COMPLEX,
@@ -406,6 +420,12 @@ if seq_fixed:
406
420
  kpn_direct = kn.find_kececi_prime_number(seq_fixed)
407
421
  if kpn_direct is not None:
408
422
  print(f"\nDirect call to find_kececi_prime_number for fixed numbers: {kpn_direct}")
423
+
424
+ # ==============================================================================
425
+ # --- Tüm Grafikleri Göster ---
426
+ # ==============================================================================
427
+ print("\nDisplaying all generated plots...")
428
+ plt.show()
409
429
  ```
410
430
 
411
431
  Generated Keçeci Sequence (first 20 of 121): [4, 11, 12, 4, 11, 10, 5, 12, 4, 11, 12, 6, 13, 12, 4, 11, 12, 6, 13, 12]...
@@ -226,36 +226,31 @@ import kececinumbers as kn
226
226
 
227
227
  print("--- Interactive Test ---")
228
228
 
229
- # Adım 1: get_interactive'ten tüm verileri al
230
- # Not: Fonksiyon artık birden fazla değer döndürüyor.
231
- interactive_results = kn.get_interactive()
229
+ # Adım 1: get_interactive'ten dönen 2 değeri al (dizi ve parametre sözlüğü)
230
+ # Hata bu satırdaydı. Fonksiyon 2 değer döndürüyor, 5 değil.
231
+ seq_interactive, params = kn.get_interactive()
232
232
 
233
233
  # Fonksiyon bir dizi döndürdüyse (başarılıysa) devam et
234
- if interactive_results and interactive_results[0]:
235
- # Dönen değerleri değişkenlere ata
236
- seq_interactive, type_choice, start_val, add_val, steps = interactive_results
234
+ if seq_interactive:
235
+ # Adım 2: Tip numarasını ve ismini al
236
+ # Gerekli tüm bilgiler zaten `params` sözlüğünde mevcut.
237
+ type_choice = params['type_choice']
237
238
 
238
- # Tip numarasını isme çevirelim
239
239
  type_names = [
240
240
  "Positive Real", "Negative Real", "Complex", "Float", "Rational",
241
241
  "Quaternion", "Neutrosophic", "Neutro-Complex", "Hyperreal",
242
242
  "Bicomplex", "Neutro-Bicomplex"
243
243
  ]
244
- type_name = type_names[type_choice - 1]
245
-
246
- # Adım 2: Ayrıntılı raporu yazdır
247
- params = {
248
- 'type_choice': type_choice,
249
- 'type_name': type_name,
250
- 'start_val': start_val,
251
- 'add_val': add_val,
252
- 'steps': steps
253
- }
244
+ # type_name'i params sözlüğüne ekleyerek raporu zenginleştirelim
245
+ params['type_name'] = type_names[type_choice - 1]
246
+
247
+ # Adım 3: Ayrıntılı raporu yazdır
248
+ # Fonksiyondan dönen params sözlüğünü doğrudan kullanıyoruz.
254
249
  kn.print_detailed_report(seq_interactive, params)
255
250
 
256
- # Adım 3: Grafiği SADECE BİR KERE çizdir
251
+ # Adım 4: Grafiği çizdir
257
252
  print("\nDisplaying plot...")
258
- plot_title = f"Interactive Keçeci Sequence ({type_name})"
253
+ plot_title = f"Interactive Keçeci Sequence ({params['type_name']})"
259
254
  kn.plot_numbers(seq_interactive, plot_title)
260
255
  plt.show()
261
256
 
@@ -265,22 +260,30 @@ else:
265
260
 
266
261
  ```python
267
262
  import matplotlib.pyplot as plt
268
- import random
269
- import numpy as np
270
- import math
271
- from fractions import Fraction
272
- import quaternion # pip install numpy numpy-quaternion
273
263
  import kececinumbers as kn
274
264
 
275
265
  # Matplotlib grafiklerinin notebook içinde gösterilmesini sağla
276
266
  %matplotlib inline
277
267
 
278
268
  print("Trying interactive mode (will prompt for input in the console/output area)...")
279
- interactive_sequence = kn.get_interactive()
280
- if interactive_sequence:
281
- kn.plot_numbers(interactive_sequence, title="Keçeci Numbers")
282
269
 
283
- print("Done with examples.")
270
+ # DÜZELTİLMİŞ KISIM:
271
+ # get_interactive'ten dönen iki değeri ayrı değişkenlere alıyoruz.
272
+ # 'seq' listenin kendisi, 'params' ise parametre sözlüğüdür.
273
+ seq, params = kn.get_interactive()
274
+
275
+ # Sadece dizi (seq) başarılı bir şekilde oluşturulduysa devam et
276
+ if seq:
277
+ print("\nSequence generated successfully. Plotting...")
278
+ # plot_numbers fonksiyonuna artık doğru şekilde SADECE listeyi gönderiyoruz.
279
+ kn.plot_numbers(seq, title=f"Interactive Keçeci Numbers ({params.get('type_name', '')})")
280
+ # Grafiği göstermek için plt.show() ekleyelim
281
+ plt.show()
282
+ else:
283
+ print("\nSequence generation failed or was cancelled.")
284
+
285
+
286
+ print("\nDone with examples.")
284
287
  print("Keçeci Numbers Module Loaded.")
285
288
  print("This module provides functions to generate and plot Keçeci Numbers.")
286
289
  print("Example: Use 'import kececinumbers as kn' in your script/notebook.")
@@ -290,8 +293,6 @@ print("- kn.get_with_params(kececi_type, iterations, ...)")
290
293
  print("- kn.get_random_type(iterations, ...)")
291
294
  print("- kn.plot_numbers(sequence, title)")
292
295
  print("- kn.unified_generator(...) (low-level)")
293
- print("\nAccess definitions with: kn.DEFINITIONS")
294
- print("\nAccess type constants like: kn.TYPE_COMPLEX")
295
296
  ```
296
297
  ---
297
298
  Trying interactive mode (will prompt for input in the console/output area)...
@@ -346,18 +347,31 @@ Enter the number of iterations (positive integer: e.g., 30): 30
346
347
  import matplotlib.pyplot as plt
347
348
  import kececinumbers as kn
348
349
 
349
-
350
+ # ==============================================================================
351
+ # --- Interactive Test ---
352
+ # ==============================================================================
350
353
  print("--- Interactive Test ---")
351
- seq_interactive = kn.get_interactive()
354
+
355
+ # DÜZELTME: Fonksiyondan dönen 2 değeri ayrı değişkenlere alıyoruz.
356
+ # Sadece diziye ihtiyacımız olduğu için 'params'ı şimdilik kullanmayacağız.
357
+ seq_interactive, params_interactive = kn.get_interactive()
358
+
359
+ # Dizi başarılı bir şekilde oluşturulduysa (boş değilse) grafiği çiz
352
360
  if seq_interactive:
353
- kn.plot_numbers(seq_interactive, "Keçeci Numbers")
361
+ kn.plot_numbers(seq_interactive, "Interactive Keçeci Numbers")
354
362
 
363
+ # ==============================================================================
364
+ # --- Random Type Test (Bu kısım zaten doğruydu) ---
365
+ # ==============================================================================
355
366
  print("\n--- Random Type Test (60 Keçeci Steps) ---")
356
367
  # num_iterations burada Keçeci adımı sayısıdır
357
368
  seq_random = kn.get_random_type(num_iterations=60)
358
369
  if seq_random:
359
370
  kn.plot_numbers(seq_random, "Random Type Keçeci Numbers")
360
371
 
372
+ # ==============================================================================
373
+ # --- Fixed Params Test (Bu kısım da zaten doğruydu) ---
374
+ # ==============================================================================
361
375
  print("\n--- Fixed Params Test (Complex, 60 Keçeci Steps) ---")
362
376
  seq_fixed = kn.get_with_params(
363
377
  kececi_type_choice=kn.TYPE_COMPLEX,
@@ -373,6 +387,12 @@ if seq_fixed:
373
387
  kpn_direct = kn.find_kececi_prime_number(seq_fixed)
374
388
  if kpn_direct is not None:
375
389
  print(f"\nDirect call to find_kececi_prime_number for fixed numbers: {kpn_direct}")
390
+
391
+ # ==============================================================================
392
+ # --- Tüm Grafikleri Göster ---
393
+ # ==============================================================================
394
+ print("\nDisplaying all generated plots...")
395
+ plt.show()
376
396
  ```
377
397
 
378
398
  Generated Keçeci Sequence (first 20 of 121): [4, 11, 12, 4, 11, 10, 5, 12, 4, 11, 12, 6, 13, 12, 4, 11, 12, 6, 13, 12]...
@@ -20,7 +20,7 @@ import warnings
20
20
  # importlib.reload(kececinumbers) # F821 undefined name 'kececinumbers'
21
21
 
22
22
  # Paket sürüm numarası
23
- __version__ = "0.3.7"
23
+ __version__ = "0.3.9"
24
24
  __author__ = "Mehmet Keçeci"
25
25
  __email__ = "mkececi@yaani.com"
26
26
 
@@ -41,6 +41,7 @@ __all__ = [
41
41
  # --- Core Generation and Analysis ---
42
42
  'unified_generator',
43
43
  'is_prime',
44
+ 'find_period',
44
45
  'find_kececi_prime_number',
45
46
 
46
47
  # --- Visualization and Reporting ---
@@ -82,6 +83,7 @@ try:
82
83
  get_random_type,
83
84
  unified_generator,
84
85
  is_prime,
86
+ find_period,
85
87
  find_kececi_prime_number,
86
88
  plot_numbers,
87
89
  print_detailed_report,
@@ -1,6 +1,6 @@
1
1
  # _version.py
2
2
 
3
- __version__ = "0.3.7"
3
+ __version__ = "0.3.9"
4
4
  __license__ = "MIT"
5
5
  __description__ = "Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets."
6
6
  __author__ = "Mehmet Keçeci"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kececinumbers
3
- Version: 0.3.7
3
+ Version: 0.3.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
@@ -259,36 +259,31 @@ import kececinumbers as kn
259
259
 
260
260
  print("--- Interactive Test ---")
261
261
 
262
- # Adım 1: get_interactive'ten tüm verileri al
263
- # Not: Fonksiyon artık birden fazla değer döndürüyor.
264
- interactive_results = kn.get_interactive()
262
+ # Adım 1: get_interactive'ten dönen 2 değeri al (dizi ve parametre sözlüğü)
263
+ # Hata bu satırdaydı. Fonksiyon 2 değer döndürüyor, 5 değil.
264
+ seq_interactive, params = kn.get_interactive()
265
265
 
266
266
  # Fonksiyon bir dizi döndürdüyse (başarılıysa) devam et
267
- if interactive_results and interactive_results[0]:
268
- # Dönen değerleri değişkenlere ata
269
- seq_interactive, type_choice, start_val, add_val, steps = interactive_results
267
+ if seq_interactive:
268
+ # Adım 2: Tip numarasını ve ismini al
269
+ # Gerekli tüm bilgiler zaten `params` sözlüğünde mevcut.
270
+ type_choice = params['type_choice']
270
271
 
271
- # Tip numarasını isme çevirelim
272
272
  type_names = [
273
273
  "Positive Real", "Negative Real", "Complex", "Float", "Rational",
274
274
  "Quaternion", "Neutrosophic", "Neutro-Complex", "Hyperreal",
275
275
  "Bicomplex", "Neutro-Bicomplex"
276
276
  ]
277
- type_name = type_names[type_choice - 1]
278
-
279
- # Adım 2: Ayrıntılı raporu yazdır
280
- params = {
281
- 'type_choice': type_choice,
282
- 'type_name': type_name,
283
- 'start_val': start_val,
284
- 'add_val': add_val,
285
- 'steps': steps
286
- }
277
+ # type_name'i params sözlüğüne ekleyerek raporu zenginleştirelim
278
+ params['type_name'] = type_names[type_choice - 1]
279
+
280
+ # Adım 3: Ayrıntılı raporu yazdır
281
+ # Fonksiyondan dönen params sözlüğünü doğrudan kullanıyoruz.
287
282
  kn.print_detailed_report(seq_interactive, params)
288
283
 
289
- # Adım 3: Grafiği SADECE BİR KERE çizdir
284
+ # Adım 4: Grafiği çizdir
290
285
  print("\nDisplaying plot...")
291
- plot_title = f"Interactive Keçeci Sequence ({type_name})"
286
+ plot_title = f"Interactive Keçeci Sequence ({params['type_name']})"
292
287
  kn.plot_numbers(seq_interactive, plot_title)
293
288
  plt.show()
294
289
 
@@ -298,22 +293,30 @@ else:
298
293
 
299
294
  ```python
300
295
  import matplotlib.pyplot as plt
301
- import random
302
- import numpy as np
303
- import math
304
- from fractions import Fraction
305
- import quaternion # pip install numpy numpy-quaternion
306
296
  import kececinumbers as kn
307
297
 
308
298
  # Matplotlib grafiklerinin notebook içinde gösterilmesini sağla
309
299
  %matplotlib inline
310
300
 
311
301
  print("Trying interactive mode (will prompt for input in the console/output area)...")
312
- interactive_sequence = kn.get_interactive()
313
- if interactive_sequence:
314
- kn.plot_numbers(interactive_sequence, title="Keçeci Numbers")
315
302
 
316
- print("Done with examples.")
303
+ # DÜZELTİLMİŞ KISIM:
304
+ # get_interactive'ten dönen iki değeri ayrı değişkenlere alıyoruz.
305
+ # 'seq' listenin kendisi, 'params' ise parametre sözlüğüdür.
306
+ seq, params = kn.get_interactive()
307
+
308
+ # Sadece dizi (seq) başarılı bir şekilde oluşturulduysa devam et
309
+ if seq:
310
+ print("\nSequence generated successfully. Plotting...")
311
+ # plot_numbers fonksiyonuna artık doğru şekilde SADECE listeyi gönderiyoruz.
312
+ kn.plot_numbers(seq, title=f"Interactive Keçeci Numbers ({params.get('type_name', '')})")
313
+ # Grafiği göstermek için plt.show() ekleyelim
314
+ plt.show()
315
+ else:
316
+ print("\nSequence generation failed or was cancelled.")
317
+
318
+
319
+ print("\nDone with examples.")
317
320
  print("Keçeci Numbers Module Loaded.")
318
321
  print("This module provides functions to generate and plot Keçeci Numbers.")
319
322
  print("Example: Use 'import kececinumbers as kn' in your script/notebook.")
@@ -323,8 +326,6 @@ print("- kn.get_with_params(kececi_type, iterations, ...)")
323
326
  print("- kn.get_random_type(iterations, ...)")
324
327
  print("- kn.plot_numbers(sequence, title)")
325
328
  print("- kn.unified_generator(...) (low-level)")
326
- print("\nAccess definitions with: kn.DEFINITIONS")
327
- print("\nAccess type constants like: kn.TYPE_COMPLEX")
328
329
  ```
329
330
  ---
330
331
  Trying interactive mode (will prompt for input in the console/output area)...
@@ -379,18 +380,31 @@ Enter the number of iterations (positive integer: e.g., 30): 30
379
380
  import matplotlib.pyplot as plt
380
381
  import kececinumbers as kn
381
382
 
382
-
383
+ # ==============================================================================
384
+ # --- Interactive Test ---
385
+ # ==============================================================================
383
386
  print("--- Interactive Test ---")
384
- seq_interactive = kn.get_interactive()
387
+
388
+ # DÜZELTME: Fonksiyondan dönen 2 değeri ayrı değişkenlere alıyoruz.
389
+ # Sadece diziye ihtiyacımız olduğu için 'params'ı şimdilik kullanmayacağız.
390
+ seq_interactive, params_interactive = kn.get_interactive()
391
+
392
+ # Dizi başarılı bir şekilde oluşturulduysa (boş değilse) grafiği çiz
385
393
  if seq_interactive:
386
- kn.plot_numbers(seq_interactive, "Keçeci Numbers")
394
+ kn.plot_numbers(seq_interactive, "Interactive Keçeci Numbers")
387
395
 
396
+ # ==============================================================================
397
+ # --- Random Type Test (Bu kısım zaten doğruydu) ---
398
+ # ==============================================================================
388
399
  print("\n--- Random Type Test (60 Keçeci Steps) ---")
389
400
  # num_iterations burada Keçeci adımı sayısıdır
390
401
  seq_random = kn.get_random_type(num_iterations=60)
391
402
  if seq_random:
392
403
  kn.plot_numbers(seq_random, "Random Type Keçeci Numbers")
393
404
 
405
+ # ==============================================================================
406
+ # --- Fixed Params Test (Bu kısım da zaten doğruydu) ---
407
+ # ==============================================================================
394
408
  print("\n--- Fixed Params Test (Complex, 60 Keçeci Steps) ---")
395
409
  seq_fixed = kn.get_with_params(
396
410
  kececi_type_choice=kn.TYPE_COMPLEX,
@@ -406,6 +420,12 @@ if seq_fixed:
406
420
  kpn_direct = kn.find_kececi_prime_number(seq_fixed)
407
421
  if kpn_direct is not None:
408
422
  print(f"\nDirect call to find_kececi_prime_number for fixed numbers: {kpn_direct}")
423
+
424
+ # ==============================================================================
425
+ # --- Tüm Grafikleri Göster ---
426
+ # ==============================================================================
427
+ print("\nDisplaying all generated plots...")
428
+ plt.show()
409
429
  ```
410
430
 
411
431
  Generated Keçeci Sequence (first 20 of 121): [4, 11, 12, 4, 11, 10, 5, 12, 4, 11, 12, 6, 13, 12, 4, 11, 12, 6, 13, 12]...
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
3
3
 
4
4
  setup(
5
5
  name="kececinumbers",
6
- version="0.3.7",
6
+ version="0.3.9",
7
7
  description="Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets",
8
8
  long_description=open("README.md").read(),
9
9
  long_description_content_type="text/markdown",
File without changes
File without changes
File without changes