kececilayout 0.5.4__py3-none-any.whl → 0.5.6__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.
kececilayout/__init__.py CHANGED
@@ -10,7 +10,7 @@ import inspect
10
10
  import warnings
11
11
 
12
12
  # Paket sürüm numarası
13
- __version__ = "0.5.4"
13
+ __version__ = "0.5.6"
14
14
 
15
15
  # =============================================================================
16
16
  # OTOMATİK İÇE AKTARMA VE __all__ OLUŞTURMA
@@ -175,3 +175,5 @@ def old_function_placeholder():
175
175
 
176
176
 
177
177
 
178
+
179
+
kececilayout/_version.py CHANGED
@@ -1,9 +1,11 @@
1
1
  # _version.py
2
2
 
3
- __version__ = "0.5.4"
3
+ __version__ = "0.5.6"
4
4
  __license__ = "AGPL3.0-or-later"
5
5
  __description__ = "A deterministic node placement algorithm used in graph visualization. In this layout, nodes are arranged sequentially along a defined primary axis. Each subsequent node is then alternately offset along a secondary, perpendicular axis, typically moving to one side of the primary axis and then the other. Often, the magnitude of this secondary offset increases as nodes progress along the primary axis, creating a characteristic zig-zag or serpentine pattern."
6
6
  __author__ = "Mehmet Keçeci"
7
7
  __url__ = "https://github.com/WhiteSymmetry/kececilayout"
8
8
  __docs__ = "https://github.com/WhiteSymmetry/kececilayout" # Opsiyonel: Dokümantasyon linki
9
9
  __dependencies__ = ["python>=3.11"] # Diğer bağımlılıkları da ekleyebilirsiniz
10
+
11
+
@@ -409,6 +409,10 @@ for i in range(6, 12):
409
409
  else:
410
410
  G_small.add_edge(i, i-2)
411
411
 
412
+ # Layout'ları hesapla
413
+ pos_basic = kececi_layout_edge(G_small, edge=False)
414
+ pos_edge_aware = kececi_layout_edge(G_small, edge=True)
415
+
412
416
  edges_small = list(G_small.edges())
413
417
  cross_basic = count_edge_crossings(pos_basic, edges_small)
414
418
  cross_edge_aware = count_edge_crossings(pos_edge_aware, edges_small)
@@ -2260,3 +2264,4 @@ if __name__ == '__main__':
2260
2264
 
2261
2265
 
2262
2266
 
2267
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kececilayout
3
- Version: 0.5.4
3
+ Version: 0.5.6
4
4
  Summary: Çeşitli graf kütüphaneleri için sıralı-zigzag yerleşimleri sağlayan bir Python paketi.
5
5
  Home-page: https://github.com/WhiteSymmetry/kececilayout
6
6
  Author: Mehmet Keçeci
@@ -2773,7 +2773,7 @@ KececiLayout v0.5.0 processes 10,000-node graphs in **2 milliseconds**, deliveri
2773
2773
  [![Complexity](https://img.shields.io/badge/O(n)_complexity-blue)](https://github.com/WhiteSymmetry/kececilayout)
2774
2774
  [![Libraries](https://img.shields.io/badge/6_graph_libraries_supported-27ae60)](https://github.com/WhiteSymmetry/kececilayout)
2775
2775
 
2776
- > 💡 **Profesyonel ipucu:** README'de "süper-lineer" veya abartılı iddialardan kaçının. "Lineer zaman karmaşıklığı (O(n))" ve "NetworkX'e göre 9.463x hız avantajı" gibi **ölçülebilir, bilimsel olarak kanıtlanmış** ifadeler kullanın. Bu, projenizin güvenilirliğini artırır. 🚀
2776
+
2777
2777
 
2778
2778
 
2779
2779
 
@@ -0,0 +1,10 @@
1
+ docs/conf.py,sha256=GCnObt4uegIychQdfaWy1ObNytxnf3tvot7PDVZR4mA,2831
2
+ kececilayout/__init__.py,sha256=7EqiQdGhWLU_9KpH9cW1nuC3NFy5OWwdkJidpQkSPzs,5246
3
+ kececilayout/_version.py,sha256=EaaT4GFTsiWoOyTKVpE6-F7dm3d7AK5TftcjNpou5dg,830
4
+ kececilayout/kececi_layout.py,sha256=zmhSvKPxUpzZciuxe20vGOPPuM9S1aapqxapeSwZmkA,96019
5
+ kececilayout-0.5.6.dist-info/licenses/LICENSE,sha256=xdxzt6hFCDi0ssOOl4UK4E8yuf47W_POYGGnBjwkxaM,34518
6
+ tests/test_sample.py,sha256=dDwjPZyVH5GEOHc2WH-Zv8vFHvAKze0iLiH0HCishYI,10764
7
+ kececilayout-0.5.6.dist-info/METADATA,sha256=dRaur3ZofyrX30aZ2OvD7w3lkNIcg-RGynOG_lQXxMw,126759
8
+ kececilayout-0.5.6.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
9
+ kececilayout-0.5.6.dist-info/top_level.txt,sha256=BaQiBtdzk9y2bVscER5uJlQqSaXN0Wnyg0rTOnFfbqU,24
10
+ kececilayout-0.5.6.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- docs/conf.py,sha256=GCnObt4uegIychQdfaWy1ObNytxnf3tvot7PDVZR4mA,2831
2
- kececilayout/__init__.py,sha256=KtYZPOG0EhwTkptYQ64FcEHkRPBq30-WYlHq-kuPG-8,5242
3
- kececilayout/_version.py,sha256=JFE0Z7pcRKN9VBxC3a_7nhlSAeYJV9kMnyxNLEs0KEM,826
4
- kececilayout/kececi_layout.py,sha256=21Hmh-m2tCpt3iXmgFMUAYwz3UKy6kOEl8ge0DBvmFI,95881
5
- kececilayout-0.5.4.dist-info/licenses/LICENSE,sha256=xdxzt6hFCDi0ssOOl4UK4E8yuf47W_POYGGnBjwkxaM,34518
6
- tests/test_sample.py,sha256=dDwjPZyVH5GEOHc2WH-Zv8vFHvAKze0iLiH0HCishYI,10764
7
- kececilayout-0.5.4.dist-info/METADATA,sha256=FyfgtIRqs7CGHLlZnXd9MjvnB1zCdTRJ8Yy0rLVvGtU,127063
8
- kececilayout-0.5.4.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
9
- kececilayout-0.5.4.dist-info/top_level.txt,sha256=BaQiBtdzk9y2bVscER5uJlQqSaXN0Wnyg0rTOnFfbqU,24
10
- kececilayout-0.5.4.dist-info/RECORD,,