pytopology 1.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (328) hide show
  1. pytopology-1.7.0/LICENSE +21 -0
  2. pytopology-1.7.0/PKG-INFO +1048 -0
  3. pytopology-1.7.0/README.md +1010 -0
  4. pytopology-1.7.0/pyproject.toml +98 -0
  5. pytopology-1.7.0/setup.cfg +4 -0
  6. pytopology-1.7.0/src/pytop/__init__.py +3573 -0
  7. pytopology-1.7.0/src/pytop/_deprecation.py +119 -0
  8. pytopology-1.7.0/src/pytop/_finite_utils.py +41 -0
  9. pytopology-1.7.0/src/pytop/_gpu_backend.py +182 -0
  10. pytopology-1.7.0/src/pytop/_infinite_helpers.py +67 -0
  11. pytopology-1.7.0/src/pytop/_internal/__init__.py +2 -0
  12. pytopology-1.7.0/src/pytop/_internal/api_consistency.py +167 -0
  13. pytopology-1.7.0/src/pytop/_internal/archive_bundle_checker.py +447 -0
  14. pytopology-1.7.0/src/pytop/_internal/benchmark_runner.py +201 -0
  15. pytopology-1.7.0/src/pytop/_internal/chapter_07_09_first_insertion_pass.py +231 -0
  16. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_development_queue_contract_baseline.py +56 -0
  17. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_development_queue_selection.py +56 -0
  18. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_closure_checkpoint.py +220 -0
  19. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_final_handoff_audit.py +223 -0
  20. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_regression_gate.py +207 -0
  21. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_remediation_pass.py +207 -0
  22. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_second_regression_gate.py +221 -0
  23. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_signoff_packet.py +221 -0
  24. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_api_matrix.py +295 -0
  25. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_coverage_audit.py +458 -0
  26. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_cross_chapter_quality_gate.py +417 -0
  27. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_final_handoff_audit.py +274 -0
  28. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_first_active_queue_implementation_pass.py +206 -0
  29. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_insertion_queue.py +96 -0
  30. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_maintenance_closure_signoff_packet.py +56 -0
  31. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_maintenance_documentation_closure_checkpoint.py +50 -0
  32. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_maintenance_remediation_follow_up_regression_gate.py +41 -0
  33. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_maintenance_remediation_queue_stabilization.py +41 -0
  34. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_maintenance_triage_regression_sweep.py +111 -0
  35. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_manuscript_target_map.py +427 -0
  36. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_closure_checkpoint.py +9 -0
  37. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_pass.py +233 -0
  38. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_regression_gate.py +249 -0
  39. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_remediation_pass.py +256 -0
  40. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_second_regression_gate.py +63 -0
  41. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_signoff_packet.py +38 -0
  42. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_queue_contract_baseline.py +76 -0
  43. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_queue_selection.py +359 -0
  44. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_notebook_smoke_sync.py +228 -0
  45. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_packaging_audit.py +264 -0
  46. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_post_active_queue_roadmap_refresh.py +276 -0
  47. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_post_consolidation_checkpoint.py +209 -0
  48. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_post_insertion_audit.py +240 -0
  49. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_post_maintenance_roadmap_refresh.py +56 -0
  50. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_post_release_maintenance_roadmap.py +381 -0
  51. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_questionbank_contract_alignment.py +288 -0
  52. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_release_candidate_verification.py +258 -0
  53. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_release_dry_run_checklist.py +215 -0
  54. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_release_signoff_packet.py +240 -0
  55. pytopology-1.7.0/src/pytop/_internal/chapter_07_15_release_stabilization.py +229 -0
  56. pytopology-1.7.0/src/pytop/_internal/chapter_07_continuity_integration.py +454 -0
  57. pytopology-1.7.0/src/pytop/_internal/chapter_08_metric_integration.py +520 -0
  58. pytopology-1.7.0/src/pytop/_internal/chapter_09_countability_integration.py +696 -0
  59. pytopology-1.7.0/src/pytop/_internal/chapter_10_12_second_insertion_pass.py +247 -0
  60. pytopology-1.7.0/src/pytop/_internal/chapter_10_separation_axioms_integration.py +689 -0
  61. pytopology-1.7.0/src/pytop/_internal/chapter_11_compactness_integration.py +609 -0
  62. pytopology-1.7.0/src/pytop/_internal/chapter_12_product_spaces_integration.py +517 -0
  63. pytopology-1.7.0/src/pytop/_internal/chapter_13_15_third_insertion_pass.py +248 -0
  64. pytopology-1.7.0/src/pytop/_internal/chapter_13_connectedness_integration.py +494 -0
  65. pytopology-1.7.0/src/pytop/_internal/chapter_14_complete_metric_integration.py +484 -0
  66. pytopology-1.7.0/src/pytop/_internal/chapter_15_function_spaces_integration.py +461 -0
  67. pytopology-1.7.0/src/pytop/_internal/cilt2_route_summary.py +164 -0
  68. pytopology-1.7.0/src/pytop/_internal/cilt4_transition_audit.py +495 -0
  69. pytopology-1.7.0/src/pytop/_internal/core_strengthening_checkpoint.py +268 -0
  70. pytopology-1.7.0/src/pytop/_internal/integration_phase_checkpoint.py +248 -0
  71. pytopology-1.7.0/src/pytop/_internal/integration_quality_gate.py +318 -0
  72. pytopology-1.7.0/src/pytop/_internal/manifest_checker.py +281 -0
  73. pytopology-1.7.0/src/pytop/_internal/manuscript_integration.py +210 -0
  74. pytopology-1.7.0/src/pytop/_internal/notebook_smoke_examples.py +296 -0
  75. pytopology-1.7.0/src/pytop/_internal/package_verifier.py +486 -0
  76. pytopology-1.7.0/src/pytop/_internal/packaging_checkpoint.py +171 -0
  77. pytopology-1.7.0/src/pytop/_internal/pi_base_compile.py +214 -0
  78. pytopology-1.7.0/src/pytop/_internal/profiling.py +237 -0
  79. pytopology-1.7.0/src/pytop/_internal/profiling_fixtures.py +149 -0
  80. pytopology-1.7.0/src/pytop/_internal/profiling_report.py +180 -0
  81. pytopology-1.7.0/src/pytop/_internal/questionbank_bridge.py +282 -0
  82. pytopology-1.7.0/src/pytop/_internal/release_report_standard.py +463 -0
  83. pytopology-1.7.0/src/pytop/_internal/volume6_audit.py +294 -0
  84. pytopology-1.7.0/src/pytop/abstract_homotopy.py +953 -0
  85. pytopology-1.7.0/src/pytop/advanced_compactifications.py +391 -0
  86. pytopology-1.7.0/src/pytop/alexandroff.py +459 -0
  87. pytopology-1.7.0/src/pytop/baire_category.py +557 -0
  88. pytopology-1.7.0/src/pytop/basic_invariants.py +306 -0
  89. pytopology-1.7.0/src/pytop/borel_measures.py +932 -0
  90. pytopology-1.7.0/src/pytop/capabilities.py +344 -0
  91. pytopology-1.7.0/src/pytop/cardinal_function_examples.py +638 -0
  92. pytopology-1.7.0/src/pytop/cardinal_function_profiles.py +94 -0
  93. pytopology-1.7.0/src/pytop/cardinal_functions_framework.py +599 -0
  94. pytopology-1.7.0/src/pytop/cardinal_numbers.py +405 -0
  95. pytopology-1.7.0/src/pytop/casson_invariant.py +394 -0
  96. pytopology-1.7.0/src/pytop/cech_complex.py +289 -0
  97. pytopology-1.7.0/src/pytop/cell_complexes.py +164 -0
  98. pytopology-1.7.0/src/pytop/cellular_homology.py +347 -0
  99. pytopology-1.7.0/src/pytop/chain_homotopy.py +401 -0
  100. pytopology-1.7.0/src/pytop/chaos_profiles.py +453 -0
  101. pytopology-1.7.0/src/pytop/classical_inequality_profiles.py +190 -0
  102. pytopology-1.7.0/src/pytop/coarse_geometry.py +1184 -0
  103. pytopology-1.7.0/src/pytop/cofinality.py +421 -0
  104. pytopology-1.7.0/src/pytop/cohomology.py +517 -0
  105. pytopology-1.7.0/src/pytop/combinatorial_topology.py +866 -0
  106. pytopology-1.7.0/src/pytop/compactness.py +175 -0
  107. pytopology-1.7.0/src/pytop/compactness_bridges.py +93 -0
  108. pytopology-1.7.0/src/pytop/compactness_strengthened_profiles.py +182 -0
  109. pytopology-1.7.0/src/pytop/compactness_variants.py +753 -0
  110. pytopology-1.7.0/src/pytop/comparison.py +172 -0
  111. pytopology-1.7.0/src/pytop/concordance.py +473 -0
  112. pytopology-1.7.0/src/pytop/connectedness.py +290 -0
  113. pytopology-1.7.0/src/pytop/construction_contracts.py +100 -0
  114. pytopology-1.7.0/src/pytop/continua.py +354 -0
  115. pytopology-1.7.0/src/pytop/convergence_comparison.py +160 -0
  116. pytopology-1.7.0/src/pytop/cosmology_topology.py +162 -0
  117. pytopology-1.7.0/src/pytop/countability.py +299 -0
  118. pytopology-1.7.0/src/pytop/counterexample_atlas.py +363 -0
  119. pytopology-1.7.0/src/pytop/covering_spaces.py +556 -0
  120. pytopology-1.7.0/src/pytop/cubical_homology.py +521 -0
  121. pytopology-1.7.0/src/pytop/degree_theory.py +267 -0
  122. pytopology-1.7.0/src/pytop/degree_theory_applications.py +176 -0
  123. pytopology-1.7.0/src/pytop/dehn_surgery.py +242 -0
  124. pytopology-1.7.0/src/pytop/derived_categories.py +1174 -0
  125. pytopology-1.7.0/src/pytop/descriptive_set_theory.py +802 -0
  126. pytopology-1.7.0/src/pytop/digital_image_topology.py +193 -0
  127. pytopology-1.7.0/src/pytop/dimension_theory.py +310 -0
  128. pytopology-1.7.0/src/pytop/discrete_morse.py +346 -0
  129. pytopology-1.7.0/src/pytop/dynamical_systems.py +379 -0
  130. pytopology-1.7.0/src/pytop/eilenberg_maclane.py +426 -0
  131. pytopology-1.7.0/src/pytop/embeddings.py +189 -0
  132. pytopology-1.7.0/src/pytop/enumeration.py +100 -0
  133. pytopology-1.7.0/src/pytop/euclidean_topology.py +298 -0
  134. pytopology-1.7.0/src/pytop/exact_linalg.py +227 -0
  135. pytopology-1.7.0/src/pytop/examples.py +160 -0
  136. pytopology-1.7.0/src/pytop/experimental/__init__.py +224 -0
  137. pytopology-1.7.0/src/pytop/experimental/_pi_base_data.json +1 -0
  138. pytopology-1.7.0/src/pytop/experimental/advanced_cardinal_functions.py +25 -0
  139. pytopology-1.7.0/src/pytop/experimental/advanced_metrization.py +15 -0
  140. pytopology-1.7.0/src/pytop/experimental/chapter_experimental_registry.py +128 -0
  141. pytopology-1.7.0/src/pytop/experimental/classical_inequality_profiles.py +21 -0
  142. pytopology-1.7.0/src/pytop/experimental/compactness_cardinal_bridges.py +15 -0
  143. pytopology-1.7.0/src/pytop/experimental/compactness_strengthened_profiles.py +21 -0
  144. pytopology-1.7.0/src/pytop/experimental/convergence_spaces.py +254 -0
  145. pytopology-1.7.0/src/pytop/experimental/experimental_inference.py +25 -0
  146. pytopology-1.7.0/src/pytop/experimental/hereditary_local_profiles.py +20 -0
  147. pytopology-1.7.0/src/pytop/experimental/maturity_registry.py +251 -0
  148. pytopology-1.7.0/src/pytop/experimental/pi_base.py +312 -0
  149. pytopology-1.7.0/src/pytop/experimental/pi_base_atlas.py +139 -0
  150. pytopology-1.7.0/src/pytop/experimental/research_bridge_inventory.py +63 -0
  151. pytopology-1.7.0/src/pytop/experimental/research_bridge_profiles.py +15 -0
  152. pytopology-1.7.0/src/pytop/experimental/research_notebook_registry.py +82 -0
  153. pytopology-1.7.0/src/pytop/experimental/research_path_registry.py +22 -0
  154. pytopology-1.7.0/src/pytop/experimental/spaces/__init__.py +232 -0
  155. pytopology-1.7.0/src/pytop/experimental/spaces/cardinal_invariants.py +198 -0
  156. pytopology-1.7.0/src/pytop/experimental/spaces/constructed.py +113 -0
  157. pytopology-1.7.0/src/pytop/experimental/spaces/constructions.py +98 -0
  158. pytopology-1.7.0/src/pytop/experimental/spaces/core.py +208 -0
  159. pytopology-1.7.0/src/pytop/experimental/spaces/pi1.py +461 -0
  160. pytopology-1.7.0/src/pytop/experimental/spaces/pi_base_bridge.py +84 -0
  161. pytopology-1.7.0/src/pytop/experimental/spaces/pi_base_representations.py +1706 -0
  162. pytopology-1.7.0/src/pytop/experimental/spaces/predicates.py +334 -0
  163. pytopology-1.7.0/src/pytop/experimental/spaces/reasoning.py +286 -0
  164. pytopology-1.7.0/src/pytop/experimental/spaces/representations.py +1111 -0
  165. pytopology-1.7.0/src/pytop/experimental/spaces/representations_p9.py +955 -0
  166. pytopology-1.7.0/src/pytop/experimental/spaces/urysohn.py +416 -0
  167. pytopology-1.7.0/src/pytop/experimental/special_example_spaces.py +16 -0
  168. pytopology-1.7.0/src/pytop/experimental/theorem_drafts.py +128 -0
  169. pytopology-1.7.0/src/pytop/experimental/tightness_network_profiles.py +20 -0
  170. pytopology-1.7.0/src/pytop/families.py +89 -0
  171. pytopology-1.7.0/src/pytop/fiber_bundles.py +914 -0
  172. pytopology-1.7.0/src/pytop/filters.py +628 -0
  173. pytopology-1.7.0/src/pytop/finite_basis_engine.py +367 -0
  174. pytopology-1.7.0/src/pytop/finite_map_analysis.py +530 -0
  175. pytopology-1.7.0/src/pytop/finite_map_engine.py +262 -0
  176. pytopology-1.7.0/src/pytop/finite_operator_engine.py +316 -0
  177. pytopology-1.7.0/src/pytop/finite_spaces.py +26 -0
  178. pytopology-1.7.0/src/pytop/finite_witness_diagnostics.py +285 -0
  179. pytopology-1.7.0/src/pytop/fixed_point_profiles.py +390 -0
  180. pytopology-1.7.0/src/pytop/foliations.py +945 -0
  181. pytopology-1.7.0/src/pytop/function_spaces.py +900 -0
  182. pytopology-1.7.0/src/pytop/fundamental_group.py +360 -0
  183. pytopology-1.7.0/src/pytop/game_theory_profiles.py +454 -0
  184. pytopology-1.7.0/src/pytop/graph_planarity.py +514 -0
  185. pytopology-1.7.0/src/pytop/graph_topology.py +369 -0
  186. pytopology-1.7.0/src/pytop/grid_floer.py +554 -0
  187. pytopology-1.7.0/src/pytop/hereditary_local_profiles.py +177 -0
  188. pytopology-1.7.0/src/pytop/higher_categories.py +1045 -0
  189. pytopology-1.7.0/src/pytop/homfly.py +359 -0
  190. pytopology-1.7.0/src/pytop/homology.py +320 -0
  191. pytopology-1.7.0/src/pytop/homology_coefficients.py +197 -0
  192. pytopology-1.7.0/src/pytop/homotopy.py +470 -0
  193. pytopology-1.7.0/src/pytop/hopf_invariant.py +311 -0
  194. pytopology-1.7.0/src/pytop/hyperspaces.py +751 -0
  195. pytopology-1.7.0/src/pytop/infinite_compactness.py +74 -0
  196. pytopology-1.7.0/src/pytop/infinite_connectedness.py +74 -0
  197. pytopology-1.7.0/src/pytop/infinite_constructions.py +115 -0
  198. pytopology-1.7.0/src/pytop/infinite_countability.py +134 -0
  199. pytopology-1.7.0/src/pytop/infinite_examples.py +336 -0
  200. pytopology-1.7.0/src/pytop/infinite_image_preimage.py +134 -0
  201. pytopology-1.7.0/src/pytop/infinite_maps.py +349 -0
  202. pytopology-1.7.0/src/pytop/infinite_quotients.py +42 -0
  203. pytopology-1.7.0/src/pytop/infinite_separation.py +127 -0
  204. pytopology-1.7.0/src/pytop/infinite_spaces.py +192 -0
  205. pytopology-1.7.0/src/pytop/intersection_forms.py +486 -0
  206. pytopology-1.7.0/src/pytop/invariants.py +311 -0
  207. pytopology-1.7.0/src/pytop/inverse_systems.py +425 -0
  208. pytopology-1.7.0/src/pytop/khovanov.py +330 -0
  209. pytopology-1.7.0/src/pytop/khovanov_odd.py +381 -0
  210. pytopology-1.7.0/src/pytop/kirby_calculus.py +477 -0
  211. pytopology-1.7.0/src/pytop/knot_invariants.py +609 -0
  212. pytopology-1.7.0/src/pytop/knots.py +415 -0
  213. pytopology-1.7.0/src/pytop/local_compactness.py +391 -0
  214. pytopology-1.7.0/src/pytop/locale_theory.py +1224 -0
  215. pytopology-1.7.0/src/pytop/logic.py +107 -0
  216. pytopology-1.7.0/src/pytop/manifolds.py +396 -0
  217. pytopology-1.7.0/src/pytop/map_continuity.py +232 -0
  218. pytopology-1.7.0/src/pytop/mapper.py +398 -0
  219. pytopology-1.7.0/src/pytop/maps.py +112 -0
  220. pytopology-1.7.0/src/pytop/massey_products.py +407 -0
  221. pytopology-1.7.0/src/pytop/mayer_vietoris.py +743 -0
  222. pytopology-1.7.0/src/pytop/metric_completeness.py +280 -0
  223. pytopology-1.7.0/src/pytop/metric_contracts.py +102 -0
  224. pytopology-1.7.0/src/pytop/metric_map_taxonomy.py +276 -0
  225. pytopology-1.7.0/src/pytop/metric_spaces.py +446 -0
  226. pytopology-1.7.0/src/pytop/metrization_api.py +188 -0
  227. pytopology-1.7.0/src/pytop/metrization_profiles.py +456 -0
  228. pytopology-1.7.0/src/pytop/milnor_fibers.py +429 -0
  229. pytopology-1.7.0/src/pytop/morse_complex.py +419 -0
  230. pytopology-1.7.0/src/pytop/motivic_homotopy.py +985 -0
  231. pytopology-1.7.0/src/pytop/multivariable_alexander.py +427 -0
  232. pytopology-1.7.0/src/pytop/named_spaces.py +2740 -0
  233. pytopology-1.7.0/src/pytop/neighborhood_systems.py +444 -0
  234. pytopology-1.7.0/src/pytop/nerve_complex.py +362 -0
  235. pytopology-1.7.0/src/pytop/nets.py +698 -0
  236. pytopology-1.7.0/src/pytop/noncommutative_topology.py +1080 -0
  237. pytopology-1.7.0/src/pytop/normal_spaces.py +501 -0
  238. pytopology-1.7.0/src/pytop/operads.py +1160 -0
  239. pytopology-1.7.0/src/pytop/order_lattice.py +175 -0
  240. pytopology-1.7.0/src/pytop/order_spaces.py +193 -0
  241. pytopology-1.7.0/src/pytop/ordinal_numbers.py +498 -0
  242. pytopology-1.7.0/src/pytop/paracompactness.py +633 -0
  243. pytopology-1.7.0/src/pytop/paths.py +196 -0
  244. pytopology-1.7.0/src/pytop/persistence_distances.py +463 -0
  245. pytopology-1.7.0/src/pytop/persistent_homology.py +1245 -0
  246. pytopology-1.7.0/src/pytop/persistent_homology_fp.py +177 -0
  247. pytopology-1.7.0/src/pytop/persistent_homology_optimized.py +485 -0
  248. pytopology-1.7.0/src/pytop/persistent_ktheory.py +273 -0
  249. pytopology-1.7.0/src/pytop/predicate_contracts.py +62 -0
  250. pytopology-1.7.0/src/pytop/predicate_functions.py +264 -0
  251. pytopology-1.7.0/src/pytop/predicate_relations.py +343 -0
  252. pytopology-1.7.0/src/pytop/predicate_sets.py +359 -0
  253. pytopology-1.7.0/src/pytop/predicates.py +300 -0
  254. pytopology-1.7.0/src/pytop/preservation.py +254 -0
  255. pytopology-1.7.0/src/pytop/preservation_legacy.py +179 -0
  256. pytopology-1.7.0/src/pytop/preservation_tables.py +309 -0
  257. pytopology-1.7.0/src/pytop/products.py +85 -0
  258. pytopology-1.7.0/src/pytop/property_utils.py +52 -0
  259. pytopology-1.7.0/src/pytop/proximity_spaces.py +128 -0
  260. pytopology-1.7.0/src/pytop/quantitative_topology.py +343 -0
  261. pytopology-1.7.0/src/pytop/quotients.py +111 -0
  262. pytopology-1.7.0/src/pytop/random_functions.py +423 -0
  263. pytopology-1.7.0/src/pytop/random_generators.py +479 -0
  264. pytopology-1.7.0/src/pytop/random_relations.py +235 -0
  265. pytopology-1.7.0/src/pytop/refinements.py +361 -0
  266. pytopology-1.7.0/src/pytop/relations.py +393 -0
  267. pytopology-1.7.0/src/pytop/research_bridge_profiles.py +108 -0
  268. pytopology-1.7.0/src/pytop/research_path_profiles.py +141 -0
  269. pytopology-1.7.0/src/pytop/result.py +293 -0
  270. pytopology-1.7.0/src/pytop/result_rendering.py +140 -0
  271. pytopology-1.7.0/src/pytop/retracts.py +530 -0
  272. pytopology-1.7.0/src/pytop/rohlin_theorem.py +415 -0
  273. pytopology-1.7.0/src/pytop/satellite_knots.py +536 -0
  274. pytopology-1.7.0/src/pytop/seifert.py +783 -0
  275. pytopology-1.7.0/src/pytop/separation.py +91 -0
  276. pytopology-1.7.0/src/pytop/separation_advanced.py +239 -0
  277. pytopology-1.7.0/src/pytop/separation_basic.py +503 -0
  278. pytopology-1.7.0/src/pytop/sequences.py +356 -0
  279. pytopology-1.7.0/src/pytop/sets.py +210 -0
  280. pytopology-1.7.0/src/pytop/shape_theory.py +1109 -0
  281. pytopology-1.7.0/src/pytop/sheaf_cohomology.py +454 -0
  282. pytopology-1.7.0/src/pytop/simplices.py +136 -0
  283. pytopology-1.7.0/src/pytop/simplicial_complexes.py +194 -0
  284. pytopology-1.7.0/src/pytop/simplicial_filtration.py +231 -0
  285. pytopology-1.7.0/src/pytop/simplicial_maps.py +344 -0
  286. pytopology-1.7.0/src/pytop/solenoid_profiles.py +919 -0
  287. pytopology-1.7.0/src/pytop/space_catalog.py +1556 -0
  288. pytopology-1.7.0/src/pytop/spaces.py +75 -0
  289. pytopology-1.7.0/src/pytop/sparse_linalg.py +282 -0
  290. pytopology-1.7.0/src/pytop/special_example_profiles.py +121 -0
  291. pytopology-1.7.0/src/pytop/spectral_sequences.py +1330 -0
  292. pytopology-1.7.0/src/pytop/spectral_spaces.py +902 -0
  293. pytopology-1.7.0/src/pytop/stone_cech.py +494 -0
  294. pytopology-1.7.0/src/pytop/streaming_persistence.py +193 -0
  295. pytopology-1.7.0/src/pytop/subbases.py +261 -0
  296. pytopology-1.7.0/src/pytop/subset_operators.py +373 -0
  297. pytopology-1.7.0/src/pytop/subspaces.py +58 -0
  298. pytopology-1.7.0/src/pytop/sullivan_models.py +503 -0
  299. pytopology-1.7.0/src/pytop/surface_classification.py +132 -0
  300. pytopology-1.7.0/src/pytop/surface_gluing.py +157 -0
  301. pytopology-1.7.0/src/pytop/surface_word_classification.py +152 -0
  302. pytopology-1.7.0/src/pytop/surfaces.py +129 -0
  303. pytopology-1.7.0/src/pytop/surgery_theory.py +264 -0
  304. pytopology-1.7.0/src/pytop/symbolic_convergence.py +474 -0
  305. pytopology-1.7.0/src/pytop/symplectic_topology.py +947 -0
  306. pytopology-1.7.0/src/pytop/tda_pipeline.py +463 -0
  307. pytopology-1.7.0/src/pytop/theorem_engine.py +387 -0
  308. pytopology-1.7.0/src/pytop/theorem_profile_alignment.py +386 -0
  309. pytopology-1.7.0/src/pytop/three_manifolds.py +284 -0
  310. pytopology-1.7.0/src/pytop/tightness_network_profiles.py +153 -0
  311. pytopology-1.7.0/src/pytop/topological_field_theory.py +710 -0
  312. pytopology-1.7.0/src/pytop/topological_groups.py +485 -0
  313. pytopology-1.7.0/src/pytop/topological_vector_spaces.py +808 -0
  314. pytopology-1.7.0/src/pytop/topology_builders.py +185 -0
  315. pytopology-1.7.0/src/pytop/topos_theory.py +1137 -0
  316. pytopology-1.7.0/src/pytop/unified_property.py +275 -0
  317. pytopology-1.7.0/src/pytop/uniform_convergence.py +854 -0
  318. pytopology-1.7.0/src/pytop/uniform_spaces.py +424 -0
  319. pytopology-1.7.0/src/pytop/van_kampen.py +908 -0
  320. pytopology-1.7.0/src/pytop/virtual_knots.py +447 -0
  321. pytopology-1.7.0/src/pytop/winding_number.py +90 -0
  322. pytopology-1.7.0/src/pytop/witness_complex.py +250 -0
  323. pytopology-1.7.0/src/pytop/zero_dimensionality.py +1004 -0
  324. pytopology-1.7.0/src/pytopology.egg-info/PKG-INFO +1048 -0
  325. pytopology-1.7.0/src/pytopology.egg-info/SOURCES.txt +326 -0
  326. pytopology-1.7.0/src/pytopology.egg-info/dependency_links.txt +1 -0
  327. pytopology-1.7.0/src/pytopology.egg-info/requires.txt +19 -0
  328. pytopology-1.7.0/src/pytopology.egg-info/top_level.txt +1 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.