okstra 0.130.4 → 0.131.1

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.
Files changed (365) hide show
  1. package/README.md +0 -1
  2. package/docs/architecture.md +2 -2
  3. package/docs/cli.md +1 -1
  4. package/docs/for-ai/README.md +0 -2
  5. package/docs/for-ai/skills/okstra-run.md +13 -2
  6. package/docs/for-ai/skills/okstra-setup.md +4 -1
  7. package/docs/project-structure-overview.md +5 -4
  8. package/docs/task-process/implementation-planning.md +13 -0
  9. package/docs/task-process/implementation.md +17 -2
  10. package/package.json +1 -1
  11. package/runtime/BUILD.json +2 -2
  12. package/runtime/agents/workers/report-writer-worker.md +7 -0
  13. package/runtime/bin/lib/okstra/usage.sh +4 -4
  14. package/runtime/prompts/lead/okstra-lead-contract.md +2 -2
  15. package/runtime/prompts/lead/plan-body-verification.md +26 -5
  16. package/runtime/prompts/lead/report-writer.md +6 -2
  17. package/runtime/prompts/profiles/_common-contract.md +2 -1
  18. package/runtime/prompts/profiles/_implementation-deliverable.md +6 -1
  19. package/runtime/prompts/profiles/_implementation-executor.md +2 -2
  20. package/runtime/prompts/profiles/_implementation-verifier.md +33 -10
  21. package/runtime/prompts/profiles/final-verification.md +21 -6
  22. package/runtime/prompts/profiles/implementation-planning.md +16 -4
  23. package/runtime/python/okstra_ctl/codex_dispatch.py +31 -0
  24. package/runtime/python/okstra_ctl/conformance.py +49 -11
  25. package/runtime/python/okstra_ctl/report_finalize.py +52 -1
  26. package/runtime/python/okstra_ctl/run.py +15 -3
  27. package/runtime/python/okstra_ctl/worker_prompt_contract.py +14 -6
  28. package/runtime/python/okstra_ctl/worker_prompt_policy.py +19 -1
  29. package/runtime/python/okstra_vendor/__init__.py +0 -44
  30. package/runtime/schemas/final-report-v1.0.schema.json +99 -5
  31. package/runtime/skills/okstra-run/SKILL.md +11 -4
  32. package/runtime/skills/okstra-setup/SKILL.md +3 -2
  33. package/runtime/skills/okstra-setup/references/project-config.md +16 -7
  34. package/runtime/templates/reports/final-report.template.md +15 -9
  35. package/runtime/templates/reports/i18n/en.json +1 -0
  36. package/runtime/templates/reports/i18n/ko.json +1 -0
  37. package/runtime/validators/lib/fixtures.sh +6 -0
  38. package/runtime/validators/validate-run.py +2019 -96
  39. package/src/cli-registry.mjs +0 -7
  40. package/src/commands/lifecycle/doctor.mjs +0 -9
  41. package/src/lib/skill-catalog.mjs +0 -1
  42. package/docs/for-ai/skills/okstra-graphify.md +0 -64
  43. package/runtime/python/okstra_ctl/graphify_cmd.py +0 -225
  44. package/runtime/python/okstra_vendor/graphify/.vendored-version +0 -1
  45. package/runtime/python/okstra_vendor/graphify/__init__.py +0 -28
  46. package/runtime/python/okstra_vendor/graphify/__main__.py +0 -1371
  47. package/runtime/python/okstra_vendor/graphify/analyze.py +0 -540
  48. package/runtime/python/okstra_vendor/graphify/benchmark.py +0 -129
  49. package/runtime/python/okstra_vendor/graphify/build.py +0 -107
  50. package/runtime/python/okstra_vendor/graphify/cache.py +0 -169
  51. package/runtime/python/okstra_vendor/graphify/cluster.py +0 -137
  52. package/runtime/python/okstra_vendor/graphify/detect.py +0 -510
  53. package/runtime/python/okstra_vendor/graphify/export.py +0 -1014
  54. package/runtime/python/okstra_vendor/graphify/extract.py +0 -3277
  55. package/runtime/python/okstra_vendor/graphify/hooks.py +0 -220
  56. package/runtime/python/okstra_vendor/graphify/ingest.py +0 -297
  57. package/runtime/python/okstra_vendor/graphify/manifest.py +0 -4
  58. package/runtime/python/okstra_vendor/graphify/report.py +0 -175
  59. package/runtime/python/okstra_vendor/graphify/security.py +0 -203
  60. package/runtime/python/okstra_vendor/graphify/serve.py +0 -373
  61. package/runtime/python/okstra_vendor/graphify/skill-aider.md +0 -1184
  62. package/runtime/python/okstra_vendor/graphify/skill-claw.md +0 -1184
  63. package/runtime/python/okstra_vendor/graphify/skill-codex.md +0 -1242
  64. package/runtime/python/okstra_vendor/graphify/skill-copilot.md +0 -1268
  65. package/runtime/python/okstra_vendor/graphify/skill-droid.md +0 -1239
  66. package/runtime/python/okstra_vendor/graphify/skill-kiro.md +0 -1183
  67. package/runtime/python/okstra_vendor/graphify/skill-opencode.md +0 -1238
  68. package/runtime/python/okstra_vendor/graphify/skill-trae.md +0 -1208
  69. package/runtime/python/okstra_vendor/graphify/skill-vscode.md +0 -253
  70. package/runtime/python/okstra_vendor/graphify/skill-windows.md +0 -1245
  71. package/runtime/python/okstra_vendor/graphify/skill.md +0 -1319
  72. package/runtime/python/okstra_vendor/graphify/transcribe.py +0 -182
  73. package/runtime/python/okstra_vendor/graphify/validate.py +0 -72
  74. package/runtime/python/okstra_vendor/graphify/watch.py +0 -188
  75. package/runtime/python/okstra_vendor/graphify/wiki.py +0 -214
  76. package/runtime/python/okstra_vendor/networkx/__init__.py +0 -62
  77. package/runtime/python/okstra_vendor/networkx/algorithms/__init__.py +0 -134
  78. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/__init__.py +0 -26
  79. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/clique.py +0 -259
  80. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/clustering_coefficient.py +0 -71
  81. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/connectivity.py +0 -412
  82. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/density.py +0 -396
  83. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/distance_measures.py +0 -150
  84. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/dominating_set.py +0 -149
  85. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/kcomponents.py +0 -369
  86. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/matching.py +0 -44
  87. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/maxcut.py +0 -143
  88. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/ramsey.py +0 -53
  89. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/steinertree.py +0 -265
  90. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/traveling_salesman.py +0 -1508
  91. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/treewidth.py +0 -255
  92. package/runtime/python/okstra_vendor/networkx/algorithms/approximation/vertex_cover.py +0 -83
  93. package/runtime/python/okstra_vendor/networkx/algorithms/assortativity/__init__.py +0 -5
  94. package/runtime/python/okstra_vendor/networkx/algorithms/assortativity/connectivity.py +0 -122
  95. package/runtime/python/okstra_vendor/networkx/algorithms/assortativity/correlation.py +0 -302
  96. package/runtime/python/okstra_vendor/networkx/algorithms/assortativity/mixing.py +0 -255
  97. package/runtime/python/okstra_vendor/networkx/algorithms/assortativity/neighbor_degree.py +0 -160
  98. package/runtime/python/okstra_vendor/networkx/algorithms/assortativity/pairs.py +0 -127
  99. package/runtime/python/okstra_vendor/networkx/algorithms/asteroidal.py +0 -164
  100. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/__init__.py +0 -88
  101. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/basic.py +0 -322
  102. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/centrality.py +0 -290
  103. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/cluster.py +0 -289
  104. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/covering.py +0 -57
  105. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/edgelist.py +0 -360
  106. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/extendability.py +0 -105
  107. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/generators.py +0 -603
  108. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/link_analysis.py +0 -316
  109. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/matching.py +0 -590
  110. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/matrix.py +0 -232
  111. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/projection.py +0 -526
  112. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/redundancy.py +0 -112
  113. package/runtime/python/okstra_vendor/networkx/algorithms/bipartite/spectral.py +0 -69
  114. package/runtime/python/okstra_vendor/networkx/algorithms/boundary.py +0 -168
  115. package/runtime/python/okstra_vendor/networkx/algorithms/bridges.py +0 -205
  116. package/runtime/python/okstra_vendor/networkx/algorithms/broadcasting.py +0 -164
  117. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/__init__.py +0 -20
  118. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/betweenness.py +0 -591
  119. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/betweenness_subset.py +0 -236
  120. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/closeness.py +0 -282
  121. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/current_flow_betweenness.py +0 -364
  122. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/current_flow_betweenness_subset.py +0 -227
  123. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/current_flow_closeness.py +0 -96
  124. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/degree_alg.py +0 -150
  125. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/dispersion.py +0 -107
  126. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/eigenvector.py +0 -357
  127. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/flow_matrix.py +0 -130
  128. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/group.py +0 -787
  129. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/harmonic.py +0 -88
  130. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/katz.py +0 -331
  131. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/laplacian.py +0 -150
  132. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/load.py +0 -200
  133. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/percolation.py +0 -128
  134. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/reaching.py +0 -209
  135. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/second_order.py +0 -141
  136. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/subgraph_alg.py +0 -361
  137. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/trophic.py +0 -181
  138. package/runtime/python/okstra_vendor/networkx/algorithms/centrality/voterank_alg.py +0 -95
  139. package/runtime/python/okstra_vendor/networkx/algorithms/chains.py +0 -172
  140. package/runtime/python/okstra_vendor/networkx/algorithms/chordal.py +0 -443
  141. package/runtime/python/okstra_vendor/networkx/algorithms/clique.py +0 -818
  142. package/runtime/python/okstra_vendor/networkx/algorithms/cluster.py +0 -732
  143. package/runtime/python/okstra_vendor/networkx/algorithms/coloring/__init__.py +0 -4
  144. package/runtime/python/okstra_vendor/networkx/algorithms/coloring/equitable_coloring.py +0 -505
  145. package/runtime/python/okstra_vendor/networkx/algorithms/coloring/greedy_coloring.py +0 -565
  146. package/runtime/python/okstra_vendor/networkx/algorithms/communicability_alg.py +0 -163
  147. package/runtime/python/okstra_vendor/networkx/algorithms/community/__init__.py +0 -28
  148. package/runtime/python/okstra_vendor/networkx/algorithms/community/asyn_fluid.py +0 -153
  149. package/runtime/python/okstra_vendor/networkx/algorithms/community/bipartitions.py +0 -354
  150. package/runtime/python/okstra_vendor/networkx/algorithms/community/centrality.py +0 -171
  151. package/runtime/python/okstra_vendor/networkx/algorithms/community/community_utils.py +0 -30
  152. package/runtime/python/okstra_vendor/networkx/algorithms/community/divisive.py +0 -216
  153. package/runtime/python/okstra_vendor/networkx/algorithms/community/kclique.py +0 -79
  154. package/runtime/python/okstra_vendor/networkx/algorithms/community/label_propagation.py +0 -338
  155. package/runtime/python/okstra_vendor/networkx/algorithms/community/leiden.py +0 -162
  156. package/runtime/python/okstra_vendor/networkx/algorithms/community/local.py +0 -220
  157. package/runtime/python/okstra_vendor/networkx/algorithms/community/louvain.py +0 -384
  158. package/runtime/python/okstra_vendor/networkx/algorithms/community/lukes.py +0 -227
  159. package/runtime/python/okstra_vendor/networkx/algorithms/community/modularity_max.py +0 -452
  160. package/runtime/python/okstra_vendor/networkx/algorithms/community/quality.py +0 -347
  161. package/runtime/python/okstra_vendor/networkx/algorithms/components/__init__.py +0 -6
  162. package/runtime/python/okstra_vendor/networkx/algorithms/components/attracting.py +0 -115
  163. package/runtime/python/okstra_vendor/networkx/algorithms/components/biconnected.py +0 -394
  164. package/runtime/python/okstra_vendor/networkx/algorithms/components/connected.py +0 -282
  165. package/runtime/python/okstra_vendor/networkx/algorithms/components/semiconnected.py +0 -71
  166. package/runtime/python/okstra_vendor/networkx/algorithms/components/strongly_connected.py +0 -359
  167. package/runtime/python/okstra_vendor/networkx/algorithms/components/weakly_connected.py +0 -196
  168. package/runtime/python/okstra_vendor/networkx/algorithms/connectivity/__init__.py +0 -11
  169. package/runtime/python/okstra_vendor/networkx/algorithms/connectivity/connectivity.py +0 -811
  170. package/runtime/python/okstra_vendor/networkx/algorithms/connectivity/cuts.py +0 -616
  171. package/runtime/python/okstra_vendor/networkx/algorithms/connectivity/disjoint_paths.py +0 -408
  172. package/runtime/python/okstra_vendor/networkx/algorithms/connectivity/edge_augmentation.py +0 -1270
  173. package/runtime/python/okstra_vendor/networkx/algorithms/connectivity/edge_kcomponents.py +0 -592
  174. package/runtime/python/okstra_vendor/networkx/algorithms/connectivity/kcomponents.py +0 -220
  175. package/runtime/python/okstra_vendor/networkx/algorithms/connectivity/kcutsets.py +0 -235
  176. package/runtime/python/okstra_vendor/networkx/algorithms/connectivity/stoerwagner.py +0 -152
  177. package/runtime/python/okstra_vendor/networkx/algorithms/connectivity/utils.py +0 -88
  178. package/runtime/python/okstra_vendor/networkx/algorithms/core.py +0 -588
  179. package/runtime/python/okstra_vendor/networkx/algorithms/covering.py +0 -142
  180. package/runtime/python/okstra_vendor/networkx/algorithms/cuts.py +0 -416
  181. package/runtime/python/okstra_vendor/networkx/algorithms/cycles.py +0 -1234
  182. package/runtime/python/okstra_vendor/networkx/algorithms/d_separation.py +0 -677
  183. package/runtime/python/okstra_vendor/networkx/algorithms/dag.py +0 -1392
  184. package/runtime/python/okstra_vendor/networkx/algorithms/distance_measures.py +0 -1095
  185. package/runtime/python/okstra_vendor/networkx/algorithms/distance_regular.py +0 -272
  186. package/runtime/python/okstra_vendor/networkx/algorithms/dominance.py +0 -142
  187. package/runtime/python/okstra_vendor/networkx/algorithms/dominating.py +0 -268
  188. package/runtime/python/okstra_vendor/networkx/algorithms/efficiency_measures.py +0 -167
  189. package/runtime/python/okstra_vendor/networkx/algorithms/euler.py +0 -470
  190. package/runtime/python/okstra_vendor/networkx/algorithms/flow/__init__.py +0 -11
  191. package/runtime/python/okstra_vendor/networkx/algorithms/flow/boykovkolmogorov.py +0 -370
  192. package/runtime/python/okstra_vendor/networkx/algorithms/flow/capacityscaling.py +0 -407
  193. package/runtime/python/okstra_vendor/networkx/algorithms/flow/dinitz_alg.py +0 -238
  194. package/runtime/python/okstra_vendor/networkx/algorithms/flow/edmondskarp.py +0 -241
  195. package/runtime/python/okstra_vendor/networkx/algorithms/flow/gomory_hu.py +0 -178
  196. package/runtime/python/okstra_vendor/networkx/algorithms/flow/maxflow.py +0 -611
  197. package/runtime/python/okstra_vendor/networkx/algorithms/flow/mincost.py +0 -356
  198. package/runtime/python/okstra_vendor/networkx/algorithms/flow/networksimplex.py +0 -662
  199. package/runtime/python/okstra_vendor/networkx/algorithms/flow/preflowpush.py +0 -425
  200. package/runtime/python/okstra_vendor/networkx/algorithms/flow/shortestaugmentingpath.py +0 -300
  201. package/runtime/python/okstra_vendor/networkx/algorithms/flow/utils.py +0 -194
  202. package/runtime/python/okstra_vendor/networkx/algorithms/graph_hashing.py +0 -435
  203. package/runtime/python/okstra_vendor/networkx/algorithms/graphical.py +0 -483
  204. package/runtime/python/okstra_vendor/networkx/algorithms/hierarchy.py +0 -57
  205. package/runtime/python/okstra_vendor/networkx/algorithms/hybrid.py +0 -196
  206. package/runtime/python/okstra_vendor/networkx/algorithms/isolate.py +0 -107
  207. package/runtime/python/okstra_vendor/networkx/algorithms/isomorphism/__init__.py +0 -7
  208. package/runtime/python/okstra_vendor/networkx/algorithms/isomorphism/ismags.py +0 -1306
  209. package/runtime/python/okstra_vendor/networkx/algorithms/isomorphism/isomorph.py +0 -336
  210. package/runtime/python/okstra_vendor/networkx/algorithms/isomorphism/isomorphvf2.py +0 -1262
  211. package/runtime/python/okstra_vendor/networkx/algorithms/isomorphism/matchhelpers.py +0 -352
  212. package/runtime/python/okstra_vendor/networkx/algorithms/isomorphism/temporalisomorphvf2.py +0 -308
  213. package/runtime/python/okstra_vendor/networkx/algorithms/isomorphism/tree_isomorphism.py +0 -264
  214. package/runtime/python/okstra_vendor/networkx/algorithms/isomorphism/vf2pp.py +0 -1102
  215. package/runtime/python/okstra_vendor/networkx/algorithms/isomorphism/vf2userfunc.py +0 -192
  216. package/runtime/python/okstra_vendor/networkx/algorithms/link_analysis/__init__.py +0 -2
  217. package/runtime/python/okstra_vendor/networkx/algorithms/link_analysis/hits_alg.py +0 -337
  218. package/runtime/python/okstra_vendor/networkx/algorithms/link_analysis/pagerank_alg.py +0 -498
  219. package/runtime/python/okstra_vendor/networkx/algorithms/link_prediction.py +0 -687
  220. package/runtime/python/okstra_vendor/networkx/algorithms/lowest_common_ancestors.py +0 -280
  221. package/runtime/python/okstra_vendor/networkx/algorithms/matching.py +0 -1148
  222. package/runtime/python/okstra_vendor/networkx/algorithms/minors/__init__.py +0 -27
  223. package/runtime/python/okstra_vendor/networkx/algorithms/minors/contraction.py +0 -738
  224. package/runtime/python/okstra_vendor/networkx/algorithms/mis.py +0 -78
  225. package/runtime/python/okstra_vendor/networkx/algorithms/moral.py +0 -59
  226. package/runtime/python/okstra_vendor/networkx/algorithms/node_classification.py +0 -219
  227. package/runtime/python/okstra_vendor/networkx/algorithms/non_randomness.py +0 -155
  228. package/runtime/python/okstra_vendor/networkx/algorithms/operators/__init__.py +0 -4
  229. package/runtime/python/okstra_vendor/networkx/algorithms/operators/all.py +0 -324
  230. package/runtime/python/okstra_vendor/networkx/algorithms/operators/binary.py +0 -468
  231. package/runtime/python/okstra_vendor/networkx/algorithms/operators/product.py +0 -633
  232. package/runtime/python/okstra_vendor/networkx/algorithms/operators/unary.py +0 -77
  233. package/runtime/python/okstra_vendor/networkx/algorithms/perfect_graph.py +0 -73
  234. package/runtime/python/okstra_vendor/networkx/algorithms/planar_drawing.py +0 -464
  235. package/runtime/python/okstra_vendor/networkx/algorithms/planarity.py +0 -1463
  236. package/runtime/python/okstra_vendor/networkx/algorithms/polynomials.py +0 -306
  237. package/runtime/python/okstra_vendor/networkx/algorithms/reciprocity.py +0 -98
  238. package/runtime/python/okstra_vendor/networkx/algorithms/regular.py +0 -167
  239. package/runtime/python/okstra_vendor/networkx/algorithms/richclub.py +0 -138
  240. package/runtime/python/okstra_vendor/networkx/algorithms/shortest_paths/__init__.py +0 -5
  241. package/runtime/python/okstra_vendor/networkx/algorithms/shortest_paths/astar.py +0 -239
  242. package/runtime/python/okstra_vendor/networkx/algorithms/shortest_paths/dense.py +0 -264
  243. package/runtime/python/okstra_vendor/networkx/algorithms/shortest_paths/generic.py +0 -716
  244. package/runtime/python/okstra_vendor/networkx/algorithms/shortest_paths/unweighted.py +0 -625
  245. package/runtime/python/okstra_vendor/networkx/algorithms/shortest_paths/weighted.py +0 -2542
  246. package/runtime/python/okstra_vendor/networkx/algorithms/similarity.py +0 -2107
  247. package/runtime/python/okstra_vendor/networkx/algorithms/simple_paths.py +0 -966
  248. package/runtime/python/okstra_vendor/networkx/algorithms/smallworld.py +0 -404
  249. package/runtime/python/okstra_vendor/networkx/algorithms/smetric.py +0 -30
  250. package/runtime/python/okstra_vendor/networkx/algorithms/sparsifiers.py +0 -296
  251. package/runtime/python/okstra_vendor/networkx/algorithms/structuralholes.py +0 -374
  252. package/runtime/python/okstra_vendor/networkx/algorithms/summarization.py +0 -564
  253. package/runtime/python/okstra_vendor/networkx/algorithms/swap.py +0 -406
  254. package/runtime/python/okstra_vendor/networkx/algorithms/threshold.py +0 -981
  255. package/runtime/python/okstra_vendor/networkx/algorithms/time_dependent.py +0 -142
  256. package/runtime/python/okstra_vendor/networkx/algorithms/tournament.py +0 -406
  257. package/runtime/python/okstra_vendor/networkx/algorithms/traversal/__init__.py +0 -5
  258. package/runtime/python/okstra_vendor/networkx/algorithms/traversal/beamsearch.py +0 -90
  259. package/runtime/python/okstra_vendor/networkx/algorithms/traversal/breadth_first_search.py +0 -576
  260. package/runtime/python/okstra_vendor/networkx/algorithms/traversal/depth_first_search.py +0 -529
  261. package/runtime/python/okstra_vendor/networkx/algorithms/traversal/edgebfs.py +0 -185
  262. package/runtime/python/okstra_vendor/networkx/algorithms/traversal/edgedfs.py +0 -182
  263. package/runtime/python/okstra_vendor/networkx/algorithms/tree/__init__.py +0 -7
  264. package/runtime/python/okstra_vendor/networkx/algorithms/tree/branchings.py +0 -1042
  265. package/runtime/python/okstra_vendor/networkx/algorithms/tree/coding.py +0 -413
  266. package/runtime/python/okstra_vendor/networkx/algorithms/tree/decomposition.py +0 -88
  267. package/runtime/python/okstra_vendor/networkx/algorithms/tree/distance_measures.py +0 -219
  268. package/runtime/python/okstra_vendor/networkx/algorithms/tree/mst.py +0 -1281
  269. package/runtime/python/okstra_vendor/networkx/algorithms/tree/operations.py +0 -106
  270. package/runtime/python/okstra_vendor/networkx/algorithms/tree/recognition.py +0 -273
  271. package/runtime/python/okstra_vendor/networkx/algorithms/triads.py +0 -500
  272. package/runtime/python/okstra_vendor/networkx/algorithms/vitality.py +0 -76
  273. package/runtime/python/okstra_vendor/networkx/algorithms/voronoi.py +0 -86
  274. package/runtime/python/okstra_vendor/networkx/algorithms/walks.py +0 -77
  275. package/runtime/python/okstra_vendor/networkx/algorithms/wiener.py +0 -278
  276. package/runtime/python/okstra_vendor/networkx/classes/__init__.py +0 -13
  277. package/runtime/python/okstra_vendor/networkx/classes/coreviews.py +0 -435
  278. package/runtime/python/okstra_vendor/networkx/classes/digraph.py +0 -1363
  279. package/runtime/python/okstra_vendor/networkx/classes/filters.py +0 -95
  280. package/runtime/python/okstra_vendor/networkx/classes/function.py +0 -1549
  281. package/runtime/python/okstra_vendor/networkx/classes/graph.py +0 -2082
  282. package/runtime/python/okstra_vendor/networkx/classes/graphviews.py +0 -269
  283. package/runtime/python/okstra_vendor/networkx/classes/multidigraph.py +0 -977
  284. package/runtime/python/okstra_vendor/networkx/classes/multigraph.py +0 -1294
  285. package/runtime/python/okstra_vendor/networkx/classes/reportviews.py +0 -1447
  286. package/runtime/python/okstra_vendor/networkx/convert.py +0 -502
  287. package/runtime/python/okstra_vendor/networkx/convert_matrix.py +0 -1314
  288. package/runtime/python/okstra_vendor/networkx/drawing/__init__.py +0 -7
  289. package/runtime/python/okstra_vendor/networkx/drawing/layout.py +0 -2036
  290. package/runtime/python/okstra_vendor/networkx/drawing/nx_agraph.py +0 -470
  291. package/runtime/python/okstra_vendor/networkx/drawing/nx_latex.py +0 -570
  292. package/runtime/python/okstra_vendor/networkx/drawing/nx_pydot.py +0 -361
  293. package/runtime/python/okstra_vendor/networkx/drawing/nx_pylab.py +0 -2978
  294. package/runtime/python/okstra_vendor/networkx/exception.py +0 -131
  295. package/runtime/python/okstra_vendor/networkx/generators/__init__.py +0 -34
  296. package/runtime/python/okstra_vendor/networkx/generators/atlas.dat.gz +0 -0
  297. package/runtime/python/okstra_vendor/networkx/generators/atlas.py +0 -227
  298. package/runtime/python/okstra_vendor/networkx/generators/classic.py +0 -1091
  299. package/runtime/python/okstra_vendor/networkx/generators/cographs.py +0 -68
  300. package/runtime/python/okstra_vendor/networkx/generators/community.py +0 -1070
  301. package/runtime/python/okstra_vendor/networkx/generators/degree_seq.py +0 -886
  302. package/runtime/python/okstra_vendor/networkx/generators/directed.py +0 -572
  303. package/runtime/python/okstra_vendor/networkx/generators/duplication.py +0 -174
  304. package/runtime/python/okstra_vendor/networkx/generators/ego.py +0 -66
  305. package/runtime/python/okstra_vendor/networkx/generators/expanders.py +0 -499
  306. package/runtime/python/okstra_vendor/networkx/generators/geometric.py +0 -1037
  307. package/runtime/python/okstra_vendor/networkx/generators/harary_graph.py +0 -163
  308. package/runtime/python/okstra_vendor/networkx/generators/internet_as_graphs.py +0 -443
  309. package/runtime/python/okstra_vendor/networkx/generators/intersection.py +0 -125
  310. package/runtime/python/okstra_vendor/networkx/generators/interval_graph.py +0 -70
  311. package/runtime/python/okstra_vendor/networkx/generators/joint_degree_seq.py +0 -664
  312. package/runtime/python/okstra_vendor/networkx/generators/lattice.py +0 -405
  313. package/runtime/python/okstra_vendor/networkx/generators/line.py +0 -501
  314. package/runtime/python/okstra_vendor/networkx/generators/mycielski.py +0 -110
  315. package/runtime/python/okstra_vendor/networkx/generators/nonisomorphic_trees.py +0 -259
  316. package/runtime/python/okstra_vendor/networkx/generators/random_clustered.py +0 -117
  317. package/runtime/python/okstra_vendor/networkx/generators/random_graphs.py +0 -1416
  318. package/runtime/python/okstra_vendor/networkx/generators/small.py +0 -1070
  319. package/runtime/python/okstra_vendor/networkx/generators/social.py +0 -554
  320. package/runtime/python/okstra_vendor/networkx/generators/spectral_graph_forge.py +0 -120
  321. package/runtime/python/okstra_vendor/networkx/generators/stochastic.py +0 -54
  322. package/runtime/python/okstra_vendor/networkx/generators/sudoku.py +0 -131
  323. package/runtime/python/okstra_vendor/networkx/generators/time_series.py +0 -74
  324. package/runtime/python/okstra_vendor/networkx/generators/trees.py +0 -1070
  325. package/runtime/python/okstra_vendor/networkx/generators/triads.py +0 -94
  326. package/runtime/python/okstra_vendor/networkx/lazy_imports.py +0 -188
  327. package/runtime/python/okstra_vendor/networkx/linalg/__init__.py +0 -13
  328. package/runtime/python/okstra_vendor/networkx/linalg/algebraicconnectivity.py +0 -650
  329. package/runtime/python/okstra_vendor/networkx/linalg/attrmatrix.py +0 -466
  330. package/runtime/python/okstra_vendor/networkx/linalg/bethehessianmatrix.py +0 -77
  331. package/runtime/python/okstra_vendor/networkx/linalg/graphmatrix.py +0 -168
  332. package/runtime/python/okstra_vendor/networkx/linalg/laplacianmatrix.py +0 -512
  333. package/runtime/python/okstra_vendor/networkx/linalg/modularitymatrix.py +0 -166
  334. package/runtime/python/okstra_vendor/networkx/linalg/spectrum.py +0 -186
  335. package/runtime/python/okstra_vendor/networkx/readwrite/__init__.py +0 -17
  336. package/runtime/python/okstra_vendor/networkx/readwrite/adjlist.py +0 -330
  337. package/runtime/python/okstra_vendor/networkx/readwrite/edgelist.py +0 -489
  338. package/runtime/python/okstra_vendor/networkx/readwrite/gexf.py +0 -1084
  339. package/runtime/python/okstra_vendor/networkx/readwrite/gml.py +0 -879
  340. package/runtime/python/okstra_vendor/networkx/readwrite/graph6.py +0 -427
  341. package/runtime/python/okstra_vendor/networkx/readwrite/graphml.py +0 -1053
  342. package/runtime/python/okstra_vendor/networkx/readwrite/json_graph/__init__.py +0 -19
  343. package/runtime/python/okstra_vendor/networkx/readwrite/json_graph/adjacency.py +0 -156
  344. package/runtime/python/okstra_vendor/networkx/readwrite/json_graph/cytoscape.py +0 -190
  345. package/runtime/python/okstra_vendor/networkx/readwrite/json_graph/node_link.py +0 -261
  346. package/runtime/python/okstra_vendor/networkx/readwrite/json_graph/tree.py +0 -137
  347. package/runtime/python/okstra_vendor/networkx/readwrite/leda.py +0 -108
  348. package/runtime/python/okstra_vendor/networkx/readwrite/multiline_adjlist.py +0 -393
  349. package/runtime/python/okstra_vendor/networkx/readwrite/p2g.py +0 -113
  350. package/runtime/python/okstra_vendor/networkx/readwrite/pajek.py +0 -286
  351. package/runtime/python/okstra_vendor/networkx/readwrite/sparse6.py +0 -379
  352. package/runtime/python/okstra_vendor/networkx/readwrite/text.py +0 -851
  353. package/runtime/python/okstra_vendor/networkx/relabel.py +0 -285
  354. package/runtime/python/okstra_vendor/networkx/utils/__init__.py +0 -8
  355. package/runtime/python/okstra_vendor/networkx/utils/backends.py +0 -2171
  356. package/runtime/python/okstra_vendor/networkx/utils/configs.py +0 -396
  357. package/runtime/python/okstra_vendor/networkx/utils/decorators.py +0 -1233
  358. package/runtime/python/okstra_vendor/networkx/utils/heaps.py +0 -338
  359. package/runtime/python/okstra_vendor/networkx/utils/mapped_queue.py +0 -297
  360. package/runtime/python/okstra_vendor/networkx/utils/misc.py +0 -703
  361. package/runtime/python/okstra_vendor/networkx/utils/random_sequence.py +0 -198
  362. package/runtime/python/okstra_vendor/networkx/utils/rcm.py +0 -159
  363. package/runtime/python/okstra_vendor/networkx/utils/union_find.py +0 -106
  364. package/runtime/skills/okstra-graphify/SKILL.md +0 -169
  365. package/src/commands/graphify.mjs +0 -32
@@ -1,732 +0,0 @@
1
- """Algorithms to characterize the number of triangles in a graph."""
2
-
3
- from collections import Counter
4
- from itertools import chain, combinations
5
-
6
- import networkx as nx
7
- from networkx.utils import not_implemented_for
8
-
9
- __all__ = [
10
- "triangles",
11
- "all_triangles",
12
- "average_clustering",
13
- "clustering",
14
- "transitivity",
15
- "square_clustering",
16
- "generalized_degree",
17
- ]
18
-
19
-
20
- @not_implemented_for("directed")
21
- @nx._dispatchable
22
- def triangles(G, nodes=None):
23
- """Compute the number of triangles.
24
-
25
- Finds the number of triangles that include a node as one vertex.
26
-
27
- Parameters
28
- ----------
29
- G : graph
30
- A networkx graph
31
-
32
- nodes : node, iterable of nodes, or None (default=None)
33
- If a singleton node, return the number of triangles for that node.
34
- If an iterable, compute the number of triangles for each of those nodes.
35
- If `None` (the default) compute the number of triangles for all nodes in `G`.
36
-
37
- Returns
38
- -------
39
- out : dict or int
40
- If `nodes` is a container of nodes, returns number of triangles keyed by node (dict).
41
- If `nodes` is a specific node, returns number of triangles for the node (int).
42
-
43
- Examples
44
- --------
45
- >>> G = nx.complete_graph(5)
46
- >>> print(nx.triangles(G, 0))
47
- 6
48
- >>> print(nx.triangles(G))
49
- {0: 6, 1: 6, 2: 6, 3: 6, 4: 6}
50
- >>> print(list(nx.triangles(G, [0, 1]).values()))
51
- [6, 6]
52
-
53
- The total number of unique triangles in `G` can be determined by summing
54
- the number of triangles for each node and dividing by 3 (because a given
55
- triangle gets counted three times, once for each of its nodes).
56
-
57
- >>> sum(nx.triangles(G).values()) // 3
58
- 10
59
-
60
- Notes
61
- -----
62
- Self loops are ignored.
63
-
64
- """
65
- if nodes is not None:
66
- # If `nodes` represents a single node, return only its number of triangles
67
- if nodes in G:
68
- return next(_triangles_and_degree_iter(G, nodes))[2] // 2
69
-
70
- # if `nodes` is a container of nodes, then return a
71
- # dictionary mapping node to number of triangles.
72
- return {v: t // 2 for v, d, t, _ in _triangles_and_degree_iter(G, nodes)}
73
-
74
- # if nodes is None, then compute triangles for the complete graph
75
-
76
- # dict used to avoid visiting the same nodes twice
77
- # this allows calculating/counting each triangle only once
78
- later_nbrs = {}
79
-
80
- # iterate over the nodes in a graph
81
- for node, neighbors in G.adjacency():
82
- later_nbrs[node] = {n for n in neighbors if n not in later_nbrs and n != node}
83
-
84
- # instantiate Counter for each node to include isolated nodes
85
- # add 1 to the count if a nodes neighbor's neighbor is also a neighbor
86
- triangle_counts = Counter(dict.fromkeys(G, 0))
87
- for node1, neighbors in later_nbrs.items():
88
- for node2 in neighbors:
89
- third_nodes = neighbors & later_nbrs[node2]
90
- m = len(third_nodes)
91
- triangle_counts[node1] += m
92
- triangle_counts[node2] += m
93
- triangle_counts.update(third_nodes)
94
-
95
- return dict(triangle_counts)
96
-
97
-
98
- @not_implemented_for("multigraph")
99
- def _triangles_and_degree_iter(G, nodes=None):
100
- """Return an iterator of (node, degree, triangles, generalized degree).
101
-
102
- This double counts triangles so you may want to divide by 2.
103
- See degree(), triangles() and generalized_degree() for definitions
104
- and details.
105
-
106
- """
107
- if nodes is None:
108
- nodes_nbrs = G.adj.items()
109
- else:
110
- nodes_nbrs = ((n, G[n]) for n in G.nbunch_iter(nodes))
111
-
112
- for v, v_nbrs in nodes_nbrs:
113
- vs = set(v_nbrs) - {v}
114
- gen_degree = Counter(len(vs & (set(G[w]) - {w})) for w in vs)
115
- ntriangles = sum(k * val for k, val in gen_degree.items())
116
- yield (v, len(vs), ntriangles, gen_degree)
117
-
118
-
119
- @not_implemented_for("multigraph")
120
- def _weighted_triangles_and_degree_iter(G, nodes=None, weight="weight"):
121
- """Return an iterator of (node, degree, weighted_triangles).
122
-
123
- Used for weighted clustering.
124
- Note: this returns the geometric average weight of edges in the triangle.
125
- Also, each triangle is counted twice (each direction).
126
- So you may want to divide by 2.
127
-
128
- """
129
- import numpy as np
130
-
131
- if weight is None or G.number_of_edges() == 0:
132
- max_weight = 1
133
- else:
134
- max_weight = max(d.get(weight, 1) for u, v, d in G.edges(data=True))
135
- if nodes is None:
136
- nodes_nbrs = G.adj.items()
137
- else:
138
- nodes_nbrs = ((n, G[n]) for n in G.nbunch_iter(nodes))
139
-
140
- def wt(u, v):
141
- return G[u][v].get(weight, 1) / max_weight
142
-
143
- for i, nbrs in nodes_nbrs:
144
- inbrs = set(nbrs) - {i}
145
- weighted_triangles = 0
146
- seen = set()
147
- for j in inbrs:
148
- seen.add(j)
149
- # This avoids counting twice -- we double at the end.
150
- jnbrs = set(G[j]) - seen
151
- # Only compute the edge weight once, before the inner inner
152
- # loop.
153
- wij = wt(i, j)
154
- weighted_triangles += np.cbrt(
155
- [(wij * wt(j, k) * wt(k, i)) for k in inbrs & jnbrs]
156
- ).sum()
157
- yield (i, len(inbrs), 2 * float(weighted_triangles))
158
-
159
-
160
- @not_implemented_for("multigraph")
161
- def _directed_triangles_and_degree_iter(G, nodes=None):
162
- """Return an iterator of
163
- (node, total_degree, reciprocal_degree, directed_triangles).
164
-
165
- Used for directed clustering.
166
- Note that unlike `_triangles_and_degree_iter()`, this function counts
167
- directed triangles so does not count triangles twice.
168
-
169
- """
170
- nodes_nbrs = ((n, G._pred[n], G._succ[n]) for n in G.nbunch_iter(nodes))
171
-
172
- for i, preds, succs in nodes_nbrs:
173
- ipreds = set(preds) - {i}
174
- isuccs = set(succs) - {i}
175
-
176
- directed_triangles = 0
177
- for j in chain(ipreds, isuccs):
178
- jpreds = set(G._pred[j]) - {j}
179
- jsuccs = set(G._succ[j]) - {j}
180
- directed_triangles += sum(
181
- 1
182
- for k in chain(
183
- (ipreds & jpreds),
184
- (ipreds & jsuccs),
185
- (isuccs & jpreds),
186
- (isuccs & jsuccs),
187
- )
188
- )
189
- dtotal = len(ipreds) + len(isuccs)
190
- dbidirectional = len(ipreds & isuccs)
191
- yield (i, dtotal, dbidirectional, directed_triangles)
192
-
193
-
194
- @not_implemented_for("multigraph")
195
- def _directed_weighted_triangles_and_degree_iter(G, nodes=None, weight="weight"):
196
- """Return an iterator of
197
- (node, total_degree, reciprocal_degree, directed_weighted_triangles).
198
-
199
- Used for directed weighted clustering.
200
- Note that unlike `_weighted_triangles_and_degree_iter()`, this function counts
201
- directed triangles so does not count triangles twice.
202
-
203
- """
204
- import numpy as np
205
-
206
- if weight is None or G.number_of_edges() == 0:
207
- max_weight = 1
208
- else:
209
- max_weight = max(d.get(weight, 1) for u, v, d in G.edges(data=True))
210
-
211
- nodes_nbrs = ((n, G._pred[n], G._succ[n]) for n in G.nbunch_iter(nodes))
212
-
213
- def wt(u, v):
214
- return G[u][v].get(weight, 1) / max_weight
215
-
216
- for i, preds, succs in nodes_nbrs:
217
- ipreds = set(preds) - {i}
218
- isuccs = set(succs) - {i}
219
-
220
- directed_triangles = 0
221
- for j in ipreds:
222
- jpreds = set(G._pred[j]) - {j}
223
- jsuccs = set(G._succ[j]) - {j}
224
- directed_triangles += np.cbrt(
225
- [(wt(j, i) * wt(k, i) * wt(k, j)) for k in ipreds & jpreds]
226
- ).sum()
227
- directed_triangles += np.cbrt(
228
- [(wt(j, i) * wt(k, i) * wt(j, k)) for k in ipreds & jsuccs]
229
- ).sum()
230
- directed_triangles += np.cbrt(
231
- [(wt(j, i) * wt(i, k) * wt(k, j)) for k in isuccs & jpreds]
232
- ).sum()
233
- directed_triangles += np.cbrt(
234
- [(wt(j, i) * wt(i, k) * wt(j, k)) for k in isuccs & jsuccs]
235
- ).sum()
236
-
237
- for j in isuccs:
238
- jpreds = set(G._pred[j]) - {j}
239
- jsuccs = set(G._succ[j]) - {j}
240
- directed_triangles += np.cbrt(
241
- [(wt(i, j) * wt(k, i) * wt(k, j)) for k in ipreds & jpreds]
242
- ).sum()
243
- directed_triangles += np.cbrt(
244
- [(wt(i, j) * wt(k, i) * wt(j, k)) for k in ipreds & jsuccs]
245
- ).sum()
246
- directed_triangles += np.cbrt(
247
- [(wt(i, j) * wt(i, k) * wt(k, j)) for k in isuccs & jpreds]
248
- ).sum()
249
- directed_triangles += np.cbrt(
250
- [(wt(i, j) * wt(i, k) * wt(j, k)) for k in isuccs & jsuccs]
251
- ).sum()
252
-
253
- dtotal = len(ipreds) + len(isuccs)
254
- dbidirectional = len(ipreds & isuccs)
255
- yield (i, dtotal, dbidirectional, float(directed_triangles))
256
-
257
-
258
- @not_implemented_for("directed")
259
- @nx._dispatchable
260
- def all_triangles(G, nbunch=None):
261
- """
262
- Yields all unique triangles in an undirected graph.
263
-
264
- A triangle is a set of three distinct nodes where each node is connected to
265
- the other two.
266
-
267
- Parameters
268
- ----------
269
- G : NetworkX graph
270
- An undirected graph.
271
-
272
- nbunch : node, iterable of nodes, or None (default=None)
273
- If a node or iterable of nodes, only triangles involving at least one
274
- node in `nbunch` are yielded.
275
- If ``None``, yields all unique triangles in the graph.
276
-
277
- Yields
278
- ------
279
- tuple
280
- A tuple of three nodes forming a triangle ``(u, v, w)``.
281
-
282
- Examples
283
- --------
284
- >>> G = nx.complete_graph(4)
285
- >>> sorted([sorted(t) for t in all_triangles(G)])
286
- [[0, 1, 2], [0, 1, 3], [0, 2, 3], [1, 2, 3]]
287
-
288
- Notes
289
- -----
290
- This algorithm ensures each triangle is yielded once using an internal node ordering.
291
- In multigraphs, triangles are identified by their unique set of nodes,
292
- ignoring multiple edges between the same nodes. Self-loops are ignored.
293
- Runs in ``O(m * d)`` time in the worst case, where ``m`` the number of edges
294
- and ``d`` the maximum degree.
295
-
296
- See Also
297
- --------
298
- :func:`~networkx.algorithms.triads.all_triads` : related function for directed graphs
299
- """
300
- if nbunch is None:
301
- nbunch = relevant_nodes = G
302
- else:
303
- nbunch = dict.fromkeys(G.nbunch_iter(nbunch))
304
- relevant_nodes = chain(
305
- nbunch,
306
- (nbr for node in nbunch for nbr in G.neighbors(node) if nbr not in nbunch),
307
- )
308
-
309
- node_to_id = {node: i for i, node in enumerate(relevant_nodes)}
310
-
311
- for u in nbunch:
312
- u_id = node_to_id[u]
313
- u_nbrs = G._adj[u].keys()
314
- for v in u_nbrs:
315
- v_id = node_to_id.get(v, -1)
316
- if v_id <= u_id:
317
- continue
318
- v_nbrs = G._adj[v].keys()
319
- for w in v_nbrs & u_nbrs:
320
- if node_to_id.get(w, -1) > v_id:
321
- yield u, v, w
322
-
323
-
324
- @nx._dispatchable(edge_attrs="weight")
325
- def average_clustering(G, nodes=None, weight=None, count_zeros=True):
326
- r"""Compute the average clustering coefficient for the graph G.
327
-
328
- The clustering coefficient for the graph is the average,
329
-
330
- .. math::
331
-
332
- C = \frac{1}{n}\sum_{v \in G} c_v,
333
-
334
- where :math:`n` is the number of nodes in `G`.
335
-
336
- Parameters
337
- ----------
338
- G : graph
339
-
340
- nodes : container of nodes, optional (default=all nodes in G)
341
- Compute average clustering for nodes in this container.
342
-
343
- weight : string or None, optional (default=None)
344
- The edge attribute that holds the numerical value used as a weight.
345
- If None, then each edge has weight 1.
346
-
347
- count_zeros : bool
348
- If False include only the nodes with nonzero clustering in the average.
349
-
350
- Returns
351
- -------
352
- avg : float
353
- Average clustering
354
-
355
- Examples
356
- --------
357
- >>> G = nx.complete_graph(5)
358
- >>> print(nx.average_clustering(G))
359
- 1.0
360
-
361
- Notes
362
- -----
363
- This is a space saving routine; it might be faster
364
- to use the clustering function to get a list and then take the average.
365
-
366
- Self loops are ignored.
367
-
368
- References
369
- ----------
370
- .. [1] Generalizations of the clustering coefficient to weighted
371
- complex networks by J. Saramäki, M. Kivelä, J.-P. Onnela,
372
- K. Kaski, and J. Kertész, Physical Review E, 75 027105 (2007).
373
- http://jponnela.com/web_documents/a9.pdf
374
- .. [2] Marcus Kaiser, Mean clustering coefficients: the role of isolated
375
- nodes and leafs on clustering measures for small-world networks.
376
- https://arxiv.org/abs/0802.2512
377
- """
378
- c = clustering(G, nodes, weight=weight).values()
379
- if not count_zeros:
380
- c = [v for v in c if abs(v) > 0]
381
- return sum(c) / len(c)
382
-
383
-
384
- @nx._dispatchable(edge_attrs="weight")
385
- def clustering(G, nodes=None, weight=None):
386
- r"""Compute the clustering coefficient for nodes.
387
-
388
- For unweighted graphs, the clustering of a node :math:`u`
389
- is the fraction of possible triangles through that node that exist,
390
-
391
- .. math::
392
-
393
- c_u = \frac{2 T(u)}{deg(u)(deg(u)-1)},
394
-
395
- where :math:`T(u)` is the number of triangles through node :math:`u` and
396
- :math:`deg(u)` is the degree of :math:`u`.
397
-
398
- For weighted graphs, there are several ways to define clustering [1]_.
399
- the one used here is defined
400
- as the geometric average of the subgraph edge weights [2]_,
401
-
402
- .. math::
403
-
404
- c_u = \frac{1}{deg(u)(deg(u)-1))}
405
- \sum_{vw} (\hat{w}_{uv} \hat{w}_{uw} \hat{w}_{vw})^{1/3}.
406
-
407
- The edge weights :math:`\hat{w}_{uv}` are normalized by the maximum weight
408
- in the network :math:`\hat{w}_{uv} = w_{uv}/\max(w)`.
409
-
410
- The value of :math:`c_u` is assigned to 0 if :math:`deg(u) < 2`.
411
-
412
- Additionally, this weighted definition has been generalized to support negative edge weights [3]_.
413
-
414
- For directed graphs, the clustering is similarly defined as the fraction
415
- of all possible directed triangles or geometric average of the subgraph
416
- edge weights for unweighted and weighted directed graph respectively [4]_.
417
-
418
- .. math::
419
-
420
- c_u = \frac{T(u)}{2(deg^{tot}(u)(deg^{tot}(u)-1) - 2deg^{\leftrightarrow}(u))},
421
-
422
- where :math:`T(u)` is the number of directed triangles through node
423
- :math:`u`, :math:`deg^{tot}(u)` is the sum of in degree and out degree of
424
- :math:`u` and :math:`deg^{\leftrightarrow}(u)` is the reciprocal degree of
425
- :math:`u`.
426
-
427
-
428
- Parameters
429
- ----------
430
- G : graph
431
-
432
- nodes : node, iterable of nodes, or None (default=None)
433
- If a singleton node, return the number of triangles for that node.
434
- If an iterable, compute the number of triangles for each of those nodes.
435
- If `None` (the default) compute the number of triangles for all nodes in `G`.
436
-
437
- weight : string or None, optional (default=None)
438
- The edge attribute that holds the numerical value used as a weight.
439
- If None, then each edge has weight 1.
440
-
441
- Returns
442
- -------
443
- out : float, or dictionary
444
- Clustering coefficient at specified nodes
445
-
446
- Examples
447
- --------
448
- >>> G = nx.complete_graph(5)
449
- >>> print(nx.clustering(G, 0))
450
- 1.0
451
- >>> print(nx.clustering(G))
452
- {0: 1.0, 1: 1.0, 2: 1.0, 3: 1.0, 4: 1.0}
453
-
454
- Notes
455
- -----
456
- Self loops are ignored.
457
-
458
- References
459
- ----------
460
- .. [1] Generalizations of the clustering coefficient to weighted
461
- complex networks by J. Saramäki, M. Kivelä, J.-P. Onnela,
462
- K. Kaski, and J. Kertész, Physical Review E, 75 027105 (2007).
463
- http://jponnela.com/web_documents/a9.pdf
464
- .. [2] Intensity and coherence of motifs in weighted complex
465
- networks by J. P. Onnela, J. Saramäki, J. Kertész, and K. Kaski,
466
- Physical Review E, 71(6), 065103 (2005).
467
- .. [3] Generalization of Clustering Coefficients to Signed Correlation Networks
468
- by G. Costantini and M. Perugini, PloS one, 9(2), e88669 (2014).
469
- .. [4] Clustering in complex directed networks by G. Fagiolo,
470
- Physical Review E, 76(2), 026107 (2007).
471
- """
472
- if G.is_directed():
473
- if weight is not None:
474
- td_iter = _directed_weighted_triangles_and_degree_iter(G, nodes, weight)
475
- clusterc = {
476
- v: 0 if t == 0 else t / ((dt * (dt - 1) - 2 * db) * 2)
477
- for v, dt, db, t in td_iter
478
- }
479
- else:
480
- td_iter = _directed_triangles_and_degree_iter(G, nodes)
481
- clusterc = {
482
- v: 0 if t == 0 else t / ((dt * (dt - 1) - 2 * db) * 2)
483
- for v, dt, db, t in td_iter
484
- }
485
- else:
486
- # The formula 2*T/(d*(d-1)) from docs is t/(d*(d-1)) here b/c t==2*T
487
- if weight is not None:
488
- td_iter = _weighted_triangles_and_degree_iter(G, nodes, weight)
489
- clusterc = {v: 0 if t == 0 else t / (d * (d - 1)) for v, d, t in td_iter}
490
- else:
491
- td_iter = _triangles_and_degree_iter(G, nodes)
492
- clusterc = {v: 0 if t == 0 else t / (d * (d - 1)) for v, d, t, _ in td_iter}
493
- if nodes in G:
494
- # Return the value of the sole entry in the dictionary.
495
- return clusterc[nodes]
496
- return clusterc
497
-
498
-
499
- @nx._dispatchable
500
- def transitivity(G):
501
- r"""Compute graph transitivity, the fraction of all possible triangles
502
- present in G.
503
-
504
- Possible triangles are identified by the number of "triads"
505
- (two edges with a shared vertex).
506
-
507
- The transitivity is
508
-
509
- .. math::
510
-
511
- T = 3\frac{\#triangles}{\#triads}.
512
-
513
- Parameters
514
- ----------
515
- G : graph
516
-
517
- Returns
518
- -------
519
- out : float
520
- Transitivity
521
-
522
- Notes
523
- -----
524
- Self loops are ignored.
525
-
526
- Examples
527
- --------
528
- >>> G = nx.complete_graph(5)
529
- >>> print(nx.transitivity(G))
530
- 1.0
531
- """
532
- triangles_contri = [
533
- (t, d * (d - 1)) for v, d, t, _ in _triangles_and_degree_iter(G)
534
- ]
535
- # If the graph is empty
536
- if len(triangles_contri) == 0:
537
- return 0
538
- triangles, contri = map(sum, zip(*triangles_contri))
539
- return 0 if triangles == 0 else triangles / contri
540
-
541
-
542
- @nx._dispatchable
543
- def square_clustering(G, nodes=None):
544
- r"""Compute the squares clustering coefficient for nodes.
545
-
546
- For each node return the fraction of possible squares that exist at
547
- the node [1]_
548
-
549
- .. math::
550
- C_4(v) = \frac{ \sum_{u=1}^{k_v}
551
- \sum_{w=u+1}^{k_v} q_v(u,w) }{ \sum_{u=1}^{k_v}
552
- \sum_{w=u+1}^{k_v} [a_v(u,w) + q_v(u,w)]},
553
-
554
- where :math:`q_v(u,w)` are the number of common neighbors of :math:`u` and
555
- :math:`w` other than :math:`v` (ie squares), and :math:`a_v(u,w) = (k_u -
556
- (1+q_v(u,w)+\theta_{uv})) + (k_w - (1+q_v(u,w)+\theta_{uw}))`, where
557
- :math:`\theta_{uw} = 1` if :math:`u` and :math:`w` are connected and 0
558
- otherwise. [2]_
559
-
560
- Parameters
561
- ----------
562
- G : graph
563
-
564
- nodes : container of nodes, optional (default=all nodes in G)
565
- Compute clustering for nodes in this container.
566
-
567
- Returns
568
- -------
569
- c4 : dictionary
570
- A dictionary keyed by node with the square clustering coefficient value.
571
-
572
- Examples
573
- --------
574
- >>> G = nx.complete_graph(5)
575
- >>> print(nx.square_clustering(G, 0))
576
- 1.0
577
- >>> print(nx.square_clustering(G))
578
- {0: 1.0, 1: 1.0, 2: 1.0, 3: 1.0, 4: 1.0}
579
-
580
- Notes
581
- -----
582
- Self loops are ignored.
583
-
584
- While :math:`C_3(v)` (triangle clustering) gives the probability that
585
- two neighbors of node v are connected with each other, :math:`C_4(v)` is
586
- the probability that two neighbors of node v share a common
587
- neighbor different from v. This algorithm can be applied to both
588
- bipartite and unipartite networks.
589
-
590
- References
591
- ----------
592
- .. [1] Pedro G. Lind, Marta C. González, and Hans J. Herrmann. 2005
593
- Cycles and clustering in bipartite networks.
594
- Physical Review E (72) 056127.
595
- .. [2] Zhang, Peng et al. Clustering Coefficient and Community Structure of
596
- Bipartite Networks. Physica A: Statistical Mechanics and its Applications 387.27 (2008): 6869–6875.
597
- https://arxiv.org/abs/0710.0117v1
598
- """
599
- if nodes is None:
600
- node_iter = G
601
- else:
602
- node_iter = G.nbunch_iter(nodes)
603
- clustering = {}
604
- _G_adj = G._adj
605
-
606
- class GAdj(dict):
607
- """Calculate (and cache) node neighbor sets excluding self-loops."""
608
-
609
- def __missing__(self, v):
610
- v_neighbors = self[v] = set(_G_adj[v])
611
- v_neighbors.discard(v) # Ignore self-loops
612
- return v_neighbors
613
-
614
- G_adj = GAdj() # Values are sets of neighbors (no self-loops)
615
-
616
- for v in node_iter:
617
- v_neighbors = G_adj[v]
618
- v_degrees_m1 = len(v_neighbors) - 1 # degrees[v] - 1 (used below)
619
- if v_degrees_m1 <= 0:
620
- # Can't form a square without at least two neighbors
621
- clustering[v] = 0
622
- continue
623
-
624
- # Count squares with nodes u-v-w-x from the current node v.
625
- # Terms of the denominator: potential = uw_degrees - uw_count - triangles - squares
626
- # uw_degrees: degrees[u] + degrees[w] for each u-w combo
627
- uw_degrees = 0
628
- # uw_count: 1 for each u and 1 for each w for all combos (degrees * (degrees - 1))
629
- uw_count = len(v_neighbors) * v_degrees_m1
630
- # triangles: 1 for each edge where u-w or w-u are connected (i.e. triangles)
631
- triangles = 0
632
- # squares: the number of squares (also the numerator)
633
- squares = 0
634
-
635
- # Iterate over all neighbors
636
- for u in v_neighbors:
637
- u_neighbors = G_adj[u]
638
- uw_degrees += len(u_neighbors) * v_degrees_m1
639
- # P2 from https://arxiv.org/abs/2007.11111
640
- p2 = len(u_neighbors & v_neighbors)
641
- # triangles is C_3, sigma_4 from https://arxiv.org/abs/2007.11111
642
- # This double-counts triangles compared to `triangles` function
643
- triangles += p2
644
- # squares is C_4, sigma_12 from https://arxiv.org/abs/2007.11111
645
- # Include this term, b/c a neighbor u can also be a neighbor of neighbor x
646
- squares += p2 * (p2 - 1) # Will divide by 2 later
647
-
648
- # And iterate over all neighbors of neighbors.
649
- # These nodes x may be the corners opposite v in squares u-v-w-x.
650
- two_hop_neighbors = set.union(*(G_adj[u] for u in v_neighbors))
651
- two_hop_neighbors -= v_neighbors # Neighbors already counted above
652
- two_hop_neighbors.discard(v)
653
- for x in two_hop_neighbors:
654
- p2 = len(v_neighbors & G_adj[x])
655
- squares += p2 * (p2 - 1) # Will divide by 2 later
656
-
657
- squares //= 2
658
- potential = uw_degrees - uw_count - triangles - squares
659
- if potential > 0:
660
- clustering[v] = squares / potential
661
- else:
662
- clustering[v] = 0
663
- if nodes in G:
664
- # Return the value of the sole entry in the dictionary.
665
- return clustering[nodes]
666
- return clustering
667
-
668
-
669
- @not_implemented_for("directed")
670
- @nx._dispatchable
671
- def generalized_degree(G, nodes=None):
672
- r"""Compute the generalized degree for nodes.
673
-
674
- For each node, the generalized degree shows how many edges of given
675
- triangle multiplicity the node is connected to. The triangle multiplicity
676
- of an edge is the number of triangles an edge participates in. The
677
- generalized degree of node :math:`i` can be written as a vector
678
- :math:`\mathbf{k}_i=(k_i^{(0)}, \dotsc, k_i^{(N-2)})` where
679
- :math:`k_i^{(j)}` is the number of edges attached to node :math:`i` that
680
- participate in :math:`j` triangles.
681
-
682
- Parameters
683
- ----------
684
- G : graph
685
-
686
- nodes : container of nodes, optional (default=all nodes in G)
687
- Compute the generalized degree for nodes in this container.
688
-
689
- Returns
690
- -------
691
- out : Counter, or dictionary of Counters
692
- Generalized degree of specified nodes. The Counter is keyed by edge
693
- triangle multiplicity.
694
-
695
- Examples
696
- --------
697
- >>> G = nx.complete_graph(5)
698
- >>> print(nx.generalized_degree(G, 0))
699
- Counter({3: 4})
700
- >>> print(nx.generalized_degree(G))
701
- {0: Counter({3: 4}), 1: Counter({3: 4}), 2: Counter({3: 4}), 3: Counter({3: 4}), 4: Counter({3: 4})}
702
-
703
- To recover the number of triangles attached to a node:
704
-
705
- >>> k1 = nx.generalized_degree(G, 0)
706
- >>> sum([k * v for k, v in k1.items()]) / 2 == nx.triangles(G, 0)
707
- True
708
-
709
- Notes
710
- -----
711
- Self loops are ignored.
712
-
713
- In a network of N nodes, the highest triangle multiplicity an edge can have
714
- is N-2.
715
-
716
- The return value does not include a `zero` entry if no edges of a
717
- particular triangle multiplicity are present.
718
-
719
- The number of triangles node :math:`i` is attached to can be recovered from
720
- the generalized degree :math:`\mathbf{k}_i=(k_i^{(0)}, \dotsc,
721
- k_i^{(N-2)})` by :math:`(k_i^{(1)}+2k_i^{(2)}+\dotsc +(N-2)k_i^{(N-2)})/2`.
722
-
723
- References
724
- ----------
725
- .. [1] Networks with arbitrary edge multiplicities by V. Zlatić,
726
- D. Garlaschelli and G. Caldarelli, EPL (Europhysics Letters),
727
- Volume 97, Number 2 (2012).
728
- https://iopscience.iop.org/article/10.1209/0295-5075/97/28005
729
- """
730
- if nodes in G:
731
- return next(_triangles_and_degree_iter(G, nodes))[3]
732
- return {v: gd for v, d, t, gd in _triangles_and_degree_iter(G, nodes)}