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,664 +0,0 @@
1
- """Generate graphs with a given joint degree and directed joint degree"""
2
-
3
- import networkx as nx
4
- from networkx.utils import py_random_state
5
-
6
- __all__ = [
7
- "is_valid_joint_degree",
8
- "is_valid_directed_joint_degree",
9
- "joint_degree_graph",
10
- "directed_joint_degree_graph",
11
- ]
12
-
13
-
14
- @nx._dispatchable(graphs=None)
15
- def is_valid_joint_degree(joint_degrees):
16
- """Checks whether the given joint degree dictionary is realizable.
17
-
18
- A *joint degree dictionary* is a dictionary of dictionaries, in
19
- which entry ``joint_degrees[k][l]`` is an integer representing the
20
- number of edges joining nodes of degree *k* with nodes of degree
21
- *l*. Such a dictionary is realizable as a simple graph if and only
22
- if the following conditions are satisfied.
23
-
24
- - each entry must be an integer,
25
- - the total number of nodes of degree *k*, computed by
26
- ``sum(joint_degrees[k].values()) / k``, must be an integer,
27
- - the total number of edges joining nodes of degree *k* with
28
- nodes of degree *l* cannot exceed the total number of possible edges,
29
- - each diagonal entry ``joint_degrees[k][k]`` must be even (this is
30
- a convention assumed by the :func:`joint_degree_graph` function).
31
-
32
-
33
- Parameters
34
- ----------
35
- joint_degrees : dictionary of dictionary of integers
36
- A joint degree dictionary in which entry ``joint_degrees[k][l]``
37
- is the number of edges joining nodes of degree *k* with nodes of
38
- degree *l*.
39
-
40
- Returns
41
- -------
42
- bool
43
- Whether the given joint degree dictionary is realizable as a
44
- simple graph.
45
-
46
- References
47
- ----------
48
- .. [1] M. Gjoka, M. Kurant, A. Markopoulou, "2.5K Graphs: from Sampling
49
- to Generation", IEEE Infocom, 2013.
50
- .. [2] I. Stanton, A. Pinar, "Constructing and sampling graphs with a
51
- prescribed joint degree distribution", Journal of Experimental
52
- Algorithmics, 2012.
53
- """
54
-
55
- degree_count = {}
56
- for k in joint_degrees:
57
- if k > 0:
58
- k_size = sum(joint_degrees[k].values()) / k
59
- if not k_size.is_integer():
60
- return False
61
- degree_count[k] = k_size
62
-
63
- for k in joint_degrees:
64
- for l in joint_degrees[k]:
65
- if not float(joint_degrees[k][l]).is_integer():
66
- return False
67
-
68
- if (k != l) and (joint_degrees[k][l] > degree_count[k] * degree_count[l]):
69
- return False
70
- elif k == l:
71
- if joint_degrees[k][k] > degree_count[k] * (degree_count[k] - 1):
72
- return False
73
- if joint_degrees[k][k] % 2 != 0:
74
- return False
75
-
76
- # if all above conditions have been satisfied then the input
77
- # joint degree is realizable as a simple graph.
78
- return True
79
-
80
-
81
- def _neighbor_switch(G, w, unsat, h_node_residual, avoid_node_id=None):
82
- """Releases one free stub for ``w``, while preserving joint degree in G.
83
-
84
- Parameters
85
- ----------
86
- G : NetworkX graph
87
- Graph in which the neighbor switch will take place.
88
- w : integer
89
- Node id for which we will execute this neighbor switch.
90
- unsat : set of integers
91
- Set of unsaturated node ids that have the same degree as w.
92
- h_node_residual: dictionary of integers
93
- Keeps track of the remaining stubs for a given node.
94
- avoid_node_id: integer
95
- Node id to avoid when selecting w_prime.
96
-
97
- Notes
98
- -----
99
- First, it selects *w_prime*, an unsaturated node that has the same degree
100
- as ``w``. Second, it selects *switch_node*, a neighbor node of ``w`` that
101
- is not connected to *w_prime*. Then it executes an edge swap i.e. removes
102
- (``w``,*switch_node*) and adds (*w_prime*,*switch_node*). Gjoka et. al. [1]
103
- prove that such an edge swap is always possible.
104
-
105
- References
106
- ----------
107
- .. [1] M. Gjoka, B. Tillman, A. Markopoulou, "Construction of Simple
108
- Graphs with a Target Joint Degree Matrix and Beyond", IEEE Infocom, '15
109
- """
110
-
111
- if (avoid_node_id is None) or (h_node_residual[avoid_node_id] > 1):
112
- # select unsaturated node w_prime that has the same degree as w
113
- w_prime = next(iter(unsat))
114
- else:
115
- # assume that the node pair (v,w) has been selected for connection. if
116
- # - neighbor_switch is called for node w,
117
- # - nodes v and w have the same degree,
118
- # - node v=avoid_node_id has only one stub left,
119
- # then prevent v=avoid_node_id from being selected as w_prime.
120
-
121
- iter_var = iter(unsat)
122
- while True:
123
- w_prime = next(iter_var)
124
- if w_prime != avoid_node_id:
125
- break
126
-
127
- # select switch_node, a neighbor of w, that is not connected to w_prime
128
- w_prime_neighbs = G[w_prime] # slightly faster declaring this variable
129
- for v in G[w]:
130
- if (v not in w_prime_neighbs) and (v != w_prime):
131
- switch_node = v
132
- break
133
-
134
- # remove edge (w,switch_node), add edge (w_prime,switch_node) and update
135
- # data structures
136
- G.remove_edge(w, switch_node)
137
- G.add_edge(w_prime, switch_node)
138
- h_node_residual[w] += 1
139
- h_node_residual[w_prime] -= 1
140
- if h_node_residual[w_prime] == 0:
141
- unsat.remove(w_prime)
142
-
143
-
144
- @py_random_state(1)
145
- @nx._dispatchable(graphs=None, returns_graph=True)
146
- def joint_degree_graph(joint_degrees, seed=None):
147
- """Generates a random simple graph with the given joint degree dictionary.
148
-
149
- Parameters
150
- ----------
151
- joint_degrees : dictionary of dictionary of integers
152
- A joint degree dictionary in which entry ``joint_degrees[k][l]`` is the
153
- number of edges joining nodes of degree *k* with nodes of degree *l*.
154
- seed : integer, random_state, or None (default)
155
- Indicator of random number generation state.
156
- See :ref:`Randomness<randomness>`.
157
-
158
- Returns
159
- -------
160
- G : Graph
161
- A graph with the specified joint degree dictionary.
162
-
163
- Raises
164
- ------
165
- NetworkXError
166
- If *joint_degrees* dictionary is not realizable.
167
-
168
- Notes
169
- -----
170
- In each iteration of the "while loop" the algorithm picks two disconnected
171
- nodes *v* and *w*, of degree *k* and *l* correspondingly, for which
172
- ``joint_degrees[k][l]`` has not reached its target yet. It then adds
173
- edge (*v*, *w*) and increases the number of edges in graph G by one.
174
-
175
- The intelligence of the algorithm lies in the fact that it is always
176
- possible to add an edge between such disconnected nodes *v* and *w*,
177
- even if one or both nodes do not have free stubs. That is made possible by
178
- executing a "neighbor switch", an edge rewiring move that releases
179
- a free stub while keeping the joint degree of G the same.
180
-
181
- The algorithm continues for E (number of edges) iterations of
182
- the "while loop", at the which point all entries of the given
183
- ``joint_degrees[k][l]`` have reached their target values and the
184
- construction is complete.
185
-
186
- References
187
- ----------
188
- .. [1] M. Gjoka, B. Tillman, A. Markopoulou, "Construction of Simple
189
- Graphs with a Target Joint Degree Matrix and Beyond", IEEE Infocom, '15
190
-
191
- Examples
192
- --------
193
- >>> joint_degrees = {
194
- ... 1: {4: 1},
195
- ... 2: {2: 2, 3: 2, 4: 2},
196
- ... 3: {2: 2, 4: 1},
197
- ... 4: {1: 1, 2: 2, 3: 1},
198
- ... }
199
- >>> G = nx.joint_degree_graph(joint_degrees)
200
- >>>
201
- """
202
-
203
- if not is_valid_joint_degree(joint_degrees):
204
- msg = "Input joint degree dict not realizable as a simple graph"
205
- raise nx.NetworkXError(msg)
206
-
207
- # compute degree count from joint_degrees
208
- degree_count = {k: sum(l.values()) // k for k, l in joint_degrees.items() if k > 0}
209
-
210
- # start with empty N-node graph
211
- N = sum(degree_count.values())
212
- G = nx.empty_graph(N)
213
-
214
- # for a given degree group, keep the list of all node ids
215
- h_degree_nodelist = {}
216
-
217
- # for a given node, keep track of the remaining stubs
218
- h_node_residual = {}
219
-
220
- # populate h_degree_nodelist and h_node_residual
221
- nodeid = 0
222
- for degree, num_nodes in degree_count.items():
223
- h_degree_nodelist[degree] = range(nodeid, nodeid + num_nodes)
224
- for v in h_degree_nodelist[degree]:
225
- h_node_residual[v] = degree
226
- nodeid += int(num_nodes)
227
-
228
- # iterate over every degree pair (k,l) and add the number of edges given
229
- # for each pair
230
- for k in joint_degrees:
231
- for l in joint_degrees[k]:
232
- # n_edges_add is the number of edges to add for the
233
- # degree pair (k,l)
234
- n_edges_add = joint_degrees[k][l]
235
-
236
- if (n_edges_add > 0) and (k >= l):
237
- # number of nodes with degree k and l
238
- k_size = degree_count[k]
239
- l_size = degree_count[l]
240
-
241
- # k_nodes and l_nodes consist of all nodes of degree k and l
242
- k_nodes = h_degree_nodelist[k]
243
- l_nodes = h_degree_nodelist[l]
244
-
245
- # k_unsat and l_unsat consist of nodes of degree k and l that
246
- # are unsaturated (nodes that have at least 1 available stub)
247
- k_unsat = {v for v in k_nodes if h_node_residual[v] > 0}
248
-
249
- if k != l:
250
- l_unsat = {w for w in l_nodes if h_node_residual[w] > 0}
251
- else:
252
- l_unsat = k_unsat
253
- n_edges_add = joint_degrees[k][l] // 2
254
-
255
- while n_edges_add > 0:
256
- # randomly pick nodes v and w that have degrees k and l
257
- v = k_nodes[seed.randrange(k_size)]
258
- w = l_nodes[seed.randrange(l_size)]
259
-
260
- # if nodes v and w are disconnected then attempt to connect
261
- if not G.has_edge(v, w) and (v != w):
262
- # if node v has no free stubs then do neighbor switch
263
- if h_node_residual[v] == 0:
264
- _neighbor_switch(G, v, k_unsat, h_node_residual)
265
-
266
- # if node w has no free stubs then do neighbor switch
267
- if h_node_residual[w] == 0:
268
- if k != l:
269
- _neighbor_switch(G, w, l_unsat, h_node_residual)
270
- else:
271
- _neighbor_switch(
272
- G, w, l_unsat, h_node_residual, avoid_node_id=v
273
- )
274
-
275
- # add edge (v, w) and update data structures
276
- G.add_edge(v, w)
277
- h_node_residual[v] -= 1
278
- h_node_residual[w] -= 1
279
- n_edges_add -= 1
280
-
281
- if h_node_residual[v] == 0:
282
- k_unsat.discard(v)
283
- if h_node_residual[w] == 0:
284
- l_unsat.discard(w)
285
- return G
286
-
287
-
288
- @nx._dispatchable(graphs=None)
289
- def is_valid_directed_joint_degree(in_degrees, out_degrees, nkk):
290
- """Checks whether the given directed joint degree input is realizable
291
-
292
- Parameters
293
- ----------
294
- in_degrees : list of integers
295
- in degree sequence contains the in degrees of nodes.
296
- out_degrees : list of integers
297
- out degree sequence contains the out degrees of nodes.
298
- nkk : dictionary of dictionary of integers
299
- directed joint degree dictionary. for nodes of out degree k (first
300
- level of dict) and nodes of in degree l (second level of dict)
301
- describes the number of edges.
302
-
303
- Returns
304
- -------
305
- boolean
306
- returns true if given input is realizable, else returns false.
307
-
308
- Notes
309
- -----
310
- Here is the list of conditions that the inputs (in/out degree sequences,
311
- nkk) need to satisfy for simple directed graph realizability:
312
-
313
- - Condition 0: in_degrees and out_degrees have the same length
314
- - Condition 1: nkk[k][l] is integer for all k,l
315
- - Condition 2: sum(nkk[k])/k = number of nodes with partition id k, is an
316
- integer and matching degree sequence
317
- - Condition 3: number of edges and non-chords between k and l cannot exceed
318
- maximum possible number of edges
319
-
320
-
321
- References
322
- ----------
323
- [1] B. Tillman, A. Markopoulou, C. T. Butts & M. Gjoka,
324
- "Construction of Directed 2K Graphs". In Proc. of KDD 2017.
325
- """
326
- V = {} # number of nodes with in/out degree.
327
- forbidden = {}
328
- if len(in_degrees) != len(out_degrees):
329
- return False
330
-
331
- for idx in range(len(in_degrees)):
332
- i = in_degrees[idx]
333
- o = out_degrees[idx]
334
- V[(i, 0)] = V.get((i, 0), 0) + 1
335
- V[(o, 1)] = V.get((o, 1), 0) + 1
336
-
337
- forbidden[(o, i)] = forbidden.get((o, i), 0) + 1
338
-
339
- S = {} # number of edges going from in/out degree nodes.
340
- for k in nkk:
341
- for l in nkk[k]:
342
- val = nkk[k][l]
343
- if not float(val).is_integer(): # condition 1
344
- return False
345
-
346
- if val > 0:
347
- S[(k, 1)] = S.get((k, 1), 0) + val
348
- S[(l, 0)] = S.get((l, 0), 0) + val
349
- # condition 3
350
- if val + forbidden.get((k, l), 0) > V[(k, 1)] * V[(l, 0)]:
351
- return False
352
-
353
- return all(S[s] / s[0] == V[s] for s in S)
354
-
355
-
356
- def _directed_neighbor_switch(
357
- G, w, unsat, h_node_residual_out, chords, h_partition_in, partition
358
- ):
359
- """Releases one free stub for node w, while preserving joint degree in G.
360
-
361
- Parameters
362
- ----------
363
- G : networkx directed graph
364
- graph within which the edge swap will take place.
365
- w : integer
366
- node id for which we need to perform a neighbor switch.
367
- unsat: set of integers
368
- set of node ids that have the same degree as w and are unsaturated.
369
- h_node_residual_out: dict of integers
370
- for a given node, keeps track of the remaining stubs to be added.
371
- chords: set of tuples
372
- keeps track of available positions to add edges.
373
- h_partition_in: dict of integers
374
- for a given node, keeps track of its partition id (in degree).
375
- partition: integer
376
- partition id to check if chords have to be updated.
377
-
378
- Notes
379
- -----
380
- First, it selects node w_prime that (1) has the same degree as w and
381
- (2) is unsaturated. Then, it selects node v, a neighbor of w, that is
382
- not connected to w_prime and does an edge swap i.e. removes (w,v) and
383
- adds (w_prime,v). If neighbor switch is not possible for w using
384
- w_prime and v, then return w_prime; in [1] it's proven that
385
- such unsaturated nodes can be used.
386
-
387
- References
388
- ----------
389
- [1] B. Tillman, A. Markopoulou, C. T. Butts & M. Gjoka,
390
- "Construction of Directed 2K Graphs". In Proc. of KDD 2017.
391
- """
392
- w_prime = unsat.pop()
393
- unsat.add(w_prime)
394
- # select node t, a neighbor of w, that is not connected to w_prime
395
- w_neighbs = list(G.successors(w))
396
- # slightly faster declaring this variable
397
- w_prime_neighbs = list(G.successors(w_prime))
398
-
399
- for v in w_neighbs:
400
- if (v not in w_prime_neighbs) and w_prime != v:
401
- # removes (w,v), add (w_prime,v) and update data structures
402
- G.remove_edge(w, v)
403
- G.add_edge(w_prime, v)
404
-
405
- if h_partition_in[v] == partition:
406
- chords.add((w, v))
407
- chords.discard((w_prime, v))
408
-
409
- h_node_residual_out[w] += 1
410
- h_node_residual_out[w_prime] -= 1
411
- if h_node_residual_out[w_prime] == 0:
412
- unsat.remove(w_prime)
413
- return None
414
-
415
- # If neighbor switch didn't work, use unsaturated node
416
- return w_prime
417
-
418
-
419
- def _directed_neighbor_switch_rev(
420
- G, w, unsat, h_node_residual_in, chords, h_partition_out, partition
421
- ):
422
- """The reverse of directed_neighbor_switch.
423
-
424
- Parameters
425
- ----------
426
- G : networkx directed graph
427
- graph within which the edge swap will take place.
428
- w : integer
429
- node id for which we need to perform a neighbor switch.
430
- unsat: set of integers
431
- set of node ids that have the same degree as w and are unsaturated.
432
- h_node_residual_in: dict of integers
433
- for a given node, keeps track of the remaining stubs to be added.
434
- chords: set of tuples
435
- keeps track of available positions to add edges.
436
- h_partition_out: dict of integers
437
- for a given node, keeps track of its partition id (out degree).
438
- partition: integer
439
- partition id to check if chords have to be updated.
440
-
441
- Notes
442
- -----
443
- Same operation as directed_neighbor_switch except it handles this operation
444
- for incoming edges instead of outgoing.
445
- """
446
- w_prime = unsat.pop()
447
- unsat.add(w_prime)
448
- # slightly faster declaring these as variables.
449
- w_neighbs = list(G.predecessors(w))
450
- w_prime_neighbs = list(G.predecessors(w_prime))
451
- # select node v, a neighbor of w, that is not connected to w_prime.
452
- for v in w_neighbs:
453
- if (v not in w_prime_neighbs) and w_prime != v:
454
- # removes (v,w), add (v,w_prime) and update data structures.
455
- G.remove_edge(v, w)
456
- G.add_edge(v, w_prime)
457
- if h_partition_out[v] == partition:
458
- chords.add((v, w))
459
- chords.discard((v, w_prime))
460
-
461
- h_node_residual_in[w] += 1
462
- h_node_residual_in[w_prime] -= 1
463
- if h_node_residual_in[w_prime] == 0:
464
- unsat.remove(w_prime)
465
- return None
466
-
467
- # If neighbor switch didn't work, use the unsaturated node.
468
- return w_prime
469
-
470
-
471
- @py_random_state(3)
472
- @nx._dispatchable(graphs=None, returns_graph=True)
473
- def directed_joint_degree_graph(in_degrees, out_degrees, nkk, seed=None):
474
- """Generates a random simple directed graph with the joint degree.
475
-
476
- Parameters
477
- ----------
478
- degree_seq : list of tuples (of size 3)
479
- degree sequence contains tuples of nodes with node id, in degree and
480
- out degree.
481
- nkk : dictionary of dictionary of integers
482
- directed joint degree dictionary, for nodes of out degree k (first
483
- level of dict) and nodes of in degree l (second level of dict)
484
- describes the number of edges.
485
- seed : hashable object, optional
486
- Seed for random number generator.
487
-
488
- Returns
489
- -------
490
- G : Graph
491
- A directed graph with the specified inputs.
492
-
493
- Raises
494
- ------
495
- NetworkXError
496
- If degree_seq and nkk are not realizable as a simple directed graph.
497
-
498
-
499
- Notes
500
- -----
501
- Similarly to the undirected version:
502
- In each iteration of the "while loop" the algorithm picks two disconnected
503
- nodes v and w, of degree k and l correspondingly, for which nkk[k][l] has
504
- not reached its target yet i.e. (for given k,l): n_edges_add < nkk[k][l].
505
- It then adds edge (v,w) and always increases the number of edges in graph G
506
- by one.
507
-
508
- The intelligence of the algorithm lies in the fact that it is always
509
- possible to add an edge between disconnected nodes v and w, for which
510
- nkk[degree(v)][degree(w)] has not reached its target, even if one or both
511
- nodes do not have free stubs. If either node v or w does not have a free
512
- stub, we perform a "neighbor switch", an edge rewiring move that releases a
513
- free stub while keeping nkk the same.
514
-
515
- The difference for the directed version lies in the fact that neighbor
516
- switches might not be able to rewire, but in these cases unsaturated nodes
517
- can be reassigned to use instead, see [1] for detailed description and
518
- proofs.
519
-
520
- The algorithm continues for E (number of edges in the graph) iterations of
521
- the "while loop", at which point all entries of the given nkk[k][l] have
522
- reached their target values and the construction is complete.
523
-
524
- References
525
- ----------
526
- [1] B. Tillman, A. Markopoulou, C. T. Butts & M. Gjoka,
527
- "Construction of Directed 2K Graphs". In Proc. of KDD 2017.
528
-
529
- Examples
530
- --------
531
- >>> in_degrees = [0, 1, 1, 2]
532
- >>> out_degrees = [1, 1, 1, 1]
533
- >>> nkk = {1: {1: 2, 2: 2}}
534
- >>> G = nx.directed_joint_degree_graph(in_degrees, out_degrees, nkk)
535
- >>>
536
- """
537
- if not is_valid_directed_joint_degree(in_degrees, out_degrees, nkk):
538
- msg = "Input is not realizable as a simple graph"
539
- raise nx.NetworkXError(msg)
540
-
541
- # start with an empty directed graph.
542
- G = nx.DiGraph()
543
-
544
- # for a given group, keep the list of all node ids.
545
- h_degree_nodelist_in = {}
546
- h_degree_nodelist_out = {}
547
- # for a given group, keep the list of all unsaturated node ids.
548
- h_degree_nodelist_in_unsat = {}
549
- h_degree_nodelist_out_unsat = {}
550
- # for a given node, keep track of the remaining stubs to be added.
551
- h_node_residual_out = {}
552
- h_node_residual_in = {}
553
- # for a given node, keep track of the partition id.
554
- h_partition_out = {}
555
- h_partition_in = {}
556
- # keep track of non-chords between pairs of partition ids.
557
- non_chords = {}
558
-
559
- # populate data structures
560
- for idx, i in enumerate(in_degrees):
561
- idx = int(idx)
562
- if i > 0:
563
- h_degree_nodelist_in.setdefault(i, [])
564
- h_degree_nodelist_in_unsat.setdefault(i, set())
565
- h_degree_nodelist_in[i].append(idx)
566
- h_degree_nodelist_in_unsat[i].add(idx)
567
- h_node_residual_in[idx] = i
568
- h_partition_in[idx] = i
569
-
570
- for idx, o in enumerate(out_degrees):
571
- o = out_degrees[idx]
572
- non_chords[(o, in_degrees[idx])] = non_chords.get((o, in_degrees[idx]), 0) + 1
573
- idx = int(idx)
574
- if o > 0:
575
- h_degree_nodelist_out.setdefault(o, [])
576
- h_degree_nodelist_out_unsat.setdefault(o, set())
577
- h_degree_nodelist_out[o].append(idx)
578
- h_degree_nodelist_out_unsat[o].add(idx)
579
- h_node_residual_out[idx] = o
580
- h_partition_out[idx] = o
581
-
582
- G.add_node(idx)
583
-
584
- nk_in = {}
585
- nk_out = {}
586
- for p in h_degree_nodelist_in:
587
- nk_in[p] = len(h_degree_nodelist_in[p])
588
- for p in h_degree_nodelist_out:
589
- nk_out[p] = len(h_degree_nodelist_out[p])
590
-
591
- # iterate over every degree pair (k,l) and add the number of edges given
592
- # for each pair.
593
- for k in nkk:
594
- for l in nkk[k]:
595
- n_edges_add = nkk[k][l]
596
-
597
- if n_edges_add > 0:
598
- # chords contains a random set of potential edges.
599
- chords = set()
600
-
601
- k_len = nk_out[k]
602
- l_len = nk_in[l]
603
- chords_sample = seed.sample(
604
- range(k_len * l_len), n_edges_add + non_chords.get((k, l), 0)
605
- )
606
-
607
- num = 0
608
- while len(chords) < n_edges_add:
609
- i = h_degree_nodelist_out[k][chords_sample[num] % k_len]
610
- j = h_degree_nodelist_in[l][chords_sample[num] // k_len]
611
- num += 1
612
- if i != j:
613
- chords.add((i, j))
614
-
615
- # k_unsat and l_unsat consist of nodes of in/out degree k and l
616
- # that are unsaturated i.e. those nodes that have at least one
617
- # available stub
618
- k_unsat = h_degree_nodelist_out_unsat[k]
619
- l_unsat = h_degree_nodelist_in_unsat[l]
620
-
621
- while n_edges_add > 0:
622
- v, w = chords.pop()
623
- chords.add((v, w))
624
-
625
- # if node v has no free stubs then do neighbor switch.
626
- if h_node_residual_out[v] == 0:
627
- _v = _directed_neighbor_switch(
628
- G,
629
- v,
630
- k_unsat,
631
- h_node_residual_out,
632
- chords,
633
- h_partition_in,
634
- l,
635
- )
636
- if _v is not None:
637
- v = _v
638
-
639
- # if node w has no free stubs then do neighbor switch.
640
- if h_node_residual_in[w] == 0:
641
- _w = _directed_neighbor_switch_rev(
642
- G,
643
- w,
644
- l_unsat,
645
- h_node_residual_in,
646
- chords,
647
- h_partition_out,
648
- k,
649
- )
650
- if _w is not None:
651
- w = _w
652
-
653
- # add edge (v,w) and update data structures.
654
- G.add_edge(v, w)
655
- h_node_residual_out[v] -= 1
656
- h_node_residual_in[w] -= 1
657
- n_edges_add -= 1
658
- chords.discard((v, w))
659
-
660
- if h_node_residual_out[v] == 0:
661
- k_unsat.discard(v)
662
- if h_node_residual_in[w] == 0:
663
- l_unsat.discard(w)
664
- return G