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.
- pytopology-1.7.0/LICENSE +21 -0
- pytopology-1.7.0/PKG-INFO +1048 -0
- pytopology-1.7.0/README.md +1010 -0
- pytopology-1.7.0/pyproject.toml +98 -0
- pytopology-1.7.0/setup.cfg +4 -0
- pytopology-1.7.0/src/pytop/__init__.py +3573 -0
- pytopology-1.7.0/src/pytop/_deprecation.py +119 -0
- pytopology-1.7.0/src/pytop/_finite_utils.py +41 -0
- pytopology-1.7.0/src/pytop/_gpu_backend.py +182 -0
- pytopology-1.7.0/src/pytop/_infinite_helpers.py +67 -0
- pytopology-1.7.0/src/pytop/_internal/__init__.py +2 -0
- pytopology-1.7.0/src/pytop/_internal/api_consistency.py +167 -0
- pytopology-1.7.0/src/pytop/_internal/archive_bundle_checker.py +447 -0
- pytopology-1.7.0/src/pytop/_internal/benchmark_runner.py +201 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_09_first_insertion_pass.py +231 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_development_queue_contract_baseline.py +56 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_development_queue_selection.py +56 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_closure_checkpoint.py +220 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_final_handoff_audit.py +223 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_regression_gate.py +207 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_remediation_pass.py +207 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_second_regression_gate.py +221 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_active_queue_implementation_signoff_packet.py +221 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_api_matrix.py +295 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_coverage_audit.py +458 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_cross_chapter_quality_gate.py +417 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_final_handoff_audit.py +274 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_first_active_queue_implementation_pass.py +206 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_insertion_queue.py +96 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_maintenance_closure_signoff_packet.py +56 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_maintenance_documentation_closure_checkpoint.py +50 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_maintenance_remediation_follow_up_regression_gate.py +41 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_maintenance_remediation_queue_stabilization.py +41 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_maintenance_triage_regression_sweep.py +111 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_manuscript_target_map.py +427 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_closure_checkpoint.py +9 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_pass.py +233 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_regression_gate.py +249 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_remediation_pass.py +256 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_second_regression_gate.py +63 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_implementation_signoff_packet.py +38 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_queue_contract_baseline.py +76 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_next_cycle_queue_selection.py +359 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_notebook_smoke_sync.py +228 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_packaging_audit.py +264 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_post_active_queue_roadmap_refresh.py +276 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_post_consolidation_checkpoint.py +209 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_post_insertion_audit.py +240 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_post_maintenance_roadmap_refresh.py +56 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_post_release_maintenance_roadmap.py +381 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_questionbank_contract_alignment.py +288 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_release_candidate_verification.py +258 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_release_dry_run_checklist.py +215 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_release_signoff_packet.py +240 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_15_release_stabilization.py +229 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_07_continuity_integration.py +454 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_08_metric_integration.py +520 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_09_countability_integration.py +696 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_10_12_second_insertion_pass.py +247 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_10_separation_axioms_integration.py +689 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_11_compactness_integration.py +609 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_12_product_spaces_integration.py +517 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_13_15_third_insertion_pass.py +248 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_13_connectedness_integration.py +494 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_14_complete_metric_integration.py +484 -0
- pytopology-1.7.0/src/pytop/_internal/chapter_15_function_spaces_integration.py +461 -0
- pytopology-1.7.0/src/pytop/_internal/cilt2_route_summary.py +164 -0
- pytopology-1.7.0/src/pytop/_internal/cilt4_transition_audit.py +495 -0
- pytopology-1.7.0/src/pytop/_internal/core_strengthening_checkpoint.py +268 -0
- pytopology-1.7.0/src/pytop/_internal/integration_phase_checkpoint.py +248 -0
- pytopology-1.7.0/src/pytop/_internal/integration_quality_gate.py +318 -0
- pytopology-1.7.0/src/pytop/_internal/manifest_checker.py +281 -0
- pytopology-1.7.0/src/pytop/_internal/manuscript_integration.py +210 -0
- pytopology-1.7.0/src/pytop/_internal/notebook_smoke_examples.py +296 -0
- pytopology-1.7.0/src/pytop/_internal/package_verifier.py +486 -0
- pytopology-1.7.0/src/pytop/_internal/packaging_checkpoint.py +171 -0
- pytopology-1.7.0/src/pytop/_internal/pi_base_compile.py +214 -0
- pytopology-1.7.0/src/pytop/_internal/profiling.py +237 -0
- pytopology-1.7.0/src/pytop/_internal/profiling_fixtures.py +149 -0
- pytopology-1.7.0/src/pytop/_internal/profiling_report.py +180 -0
- pytopology-1.7.0/src/pytop/_internal/questionbank_bridge.py +282 -0
- pytopology-1.7.0/src/pytop/_internal/release_report_standard.py +463 -0
- pytopology-1.7.0/src/pytop/_internal/volume6_audit.py +294 -0
- pytopology-1.7.0/src/pytop/abstract_homotopy.py +953 -0
- pytopology-1.7.0/src/pytop/advanced_compactifications.py +391 -0
- pytopology-1.7.0/src/pytop/alexandroff.py +459 -0
- pytopology-1.7.0/src/pytop/baire_category.py +557 -0
- pytopology-1.7.0/src/pytop/basic_invariants.py +306 -0
- pytopology-1.7.0/src/pytop/borel_measures.py +932 -0
- pytopology-1.7.0/src/pytop/capabilities.py +344 -0
- pytopology-1.7.0/src/pytop/cardinal_function_examples.py +638 -0
- pytopology-1.7.0/src/pytop/cardinal_function_profiles.py +94 -0
- pytopology-1.7.0/src/pytop/cardinal_functions_framework.py +599 -0
- pytopology-1.7.0/src/pytop/cardinal_numbers.py +405 -0
- pytopology-1.7.0/src/pytop/casson_invariant.py +394 -0
- pytopology-1.7.0/src/pytop/cech_complex.py +289 -0
- pytopology-1.7.0/src/pytop/cell_complexes.py +164 -0
- pytopology-1.7.0/src/pytop/cellular_homology.py +347 -0
- pytopology-1.7.0/src/pytop/chain_homotopy.py +401 -0
- pytopology-1.7.0/src/pytop/chaos_profiles.py +453 -0
- pytopology-1.7.0/src/pytop/classical_inequality_profiles.py +190 -0
- pytopology-1.7.0/src/pytop/coarse_geometry.py +1184 -0
- pytopology-1.7.0/src/pytop/cofinality.py +421 -0
- pytopology-1.7.0/src/pytop/cohomology.py +517 -0
- pytopology-1.7.0/src/pytop/combinatorial_topology.py +866 -0
- pytopology-1.7.0/src/pytop/compactness.py +175 -0
- pytopology-1.7.0/src/pytop/compactness_bridges.py +93 -0
- pytopology-1.7.0/src/pytop/compactness_strengthened_profiles.py +182 -0
- pytopology-1.7.0/src/pytop/compactness_variants.py +753 -0
- pytopology-1.7.0/src/pytop/comparison.py +172 -0
- pytopology-1.7.0/src/pytop/concordance.py +473 -0
- pytopology-1.7.0/src/pytop/connectedness.py +290 -0
- pytopology-1.7.0/src/pytop/construction_contracts.py +100 -0
- pytopology-1.7.0/src/pytop/continua.py +354 -0
- pytopology-1.7.0/src/pytop/convergence_comparison.py +160 -0
- pytopology-1.7.0/src/pytop/cosmology_topology.py +162 -0
- pytopology-1.7.0/src/pytop/countability.py +299 -0
- pytopology-1.7.0/src/pytop/counterexample_atlas.py +363 -0
- pytopology-1.7.0/src/pytop/covering_spaces.py +556 -0
- pytopology-1.7.0/src/pytop/cubical_homology.py +521 -0
- pytopology-1.7.0/src/pytop/degree_theory.py +267 -0
- pytopology-1.7.0/src/pytop/degree_theory_applications.py +176 -0
- pytopology-1.7.0/src/pytop/dehn_surgery.py +242 -0
- pytopology-1.7.0/src/pytop/derived_categories.py +1174 -0
- pytopology-1.7.0/src/pytop/descriptive_set_theory.py +802 -0
- pytopology-1.7.0/src/pytop/digital_image_topology.py +193 -0
- pytopology-1.7.0/src/pytop/dimension_theory.py +310 -0
- pytopology-1.7.0/src/pytop/discrete_morse.py +346 -0
- pytopology-1.7.0/src/pytop/dynamical_systems.py +379 -0
- pytopology-1.7.0/src/pytop/eilenberg_maclane.py +426 -0
- pytopology-1.7.0/src/pytop/embeddings.py +189 -0
- pytopology-1.7.0/src/pytop/enumeration.py +100 -0
- pytopology-1.7.0/src/pytop/euclidean_topology.py +298 -0
- pytopology-1.7.0/src/pytop/exact_linalg.py +227 -0
- pytopology-1.7.0/src/pytop/examples.py +160 -0
- pytopology-1.7.0/src/pytop/experimental/__init__.py +224 -0
- pytopology-1.7.0/src/pytop/experimental/_pi_base_data.json +1 -0
- pytopology-1.7.0/src/pytop/experimental/advanced_cardinal_functions.py +25 -0
- pytopology-1.7.0/src/pytop/experimental/advanced_metrization.py +15 -0
- pytopology-1.7.0/src/pytop/experimental/chapter_experimental_registry.py +128 -0
- pytopology-1.7.0/src/pytop/experimental/classical_inequality_profiles.py +21 -0
- pytopology-1.7.0/src/pytop/experimental/compactness_cardinal_bridges.py +15 -0
- pytopology-1.7.0/src/pytop/experimental/compactness_strengthened_profiles.py +21 -0
- pytopology-1.7.0/src/pytop/experimental/convergence_spaces.py +254 -0
- pytopology-1.7.0/src/pytop/experimental/experimental_inference.py +25 -0
- pytopology-1.7.0/src/pytop/experimental/hereditary_local_profiles.py +20 -0
- pytopology-1.7.0/src/pytop/experimental/maturity_registry.py +251 -0
- pytopology-1.7.0/src/pytop/experimental/pi_base.py +312 -0
- pytopology-1.7.0/src/pytop/experimental/pi_base_atlas.py +139 -0
- pytopology-1.7.0/src/pytop/experimental/research_bridge_inventory.py +63 -0
- pytopology-1.7.0/src/pytop/experimental/research_bridge_profiles.py +15 -0
- pytopology-1.7.0/src/pytop/experimental/research_notebook_registry.py +82 -0
- pytopology-1.7.0/src/pytop/experimental/research_path_registry.py +22 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/__init__.py +232 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/cardinal_invariants.py +198 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/constructed.py +113 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/constructions.py +98 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/core.py +208 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/pi1.py +461 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/pi_base_bridge.py +84 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/pi_base_representations.py +1706 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/predicates.py +334 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/reasoning.py +286 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/representations.py +1111 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/representations_p9.py +955 -0
- pytopology-1.7.0/src/pytop/experimental/spaces/urysohn.py +416 -0
- pytopology-1.7.0/src/pytop/experimental/special_example_spaces.py +16 -0
- pytopology-1.7.0/src/pytop/experimental/theorem_drafts.py +128 -0
- pytopology-1.7.0/src/pytop/experimental/tightness_network_profiles.py +20 -0
- pytopology-1.7.0/src/pytop/families.py +89 -0
- pytopology-1.7.0/src/pytop/fiber_bundles.py +914 -0
- pytopology-1.7.0/src/pytop/filters.py +628 -0
- pytopology-1.7.0/src/pytop/finite_basis_engine.py +367 -0
- pytopology-1.7.0/src/pytop/finite_map_analysis.py +530 -0
- pytopology-1.7.0/src/pytop/finite_map_engine.py +262 -0
- pytopology-1.7.0/src/pytop/finite_operator_engine.py +316 -0
- pytopology-1.7.0/src/pytop/finite_spaces.py +26 -0
- pytopology-1.7.0/src/pytop/finite_witness_diagnostics.py +285 -0
- pytopology-1.7.0/src/pytop/fixed_point_profiles.py +390 -0
- pytopology-1.7.0/src/pytop/foliations.py +945 -0
- pytopology-1.7.0/src/pytop/function_spaces.py +900 -0
- pytopology-1.7.0/src/pytop/fundamental_group.py +360 -0
- pytopology-1.7.0/src/pytop/game_theory_profiles.py +454 -0
- pytopology-1.7.0/src/pytop/graph_planarity.py +514 -0
- pytopology-1.7.0/src/pytop/graph_topology.py +369 -0
- pytopology-1.7.0/src/pytop/grid_floer.py +554 -0
- pytopology-1.7.0/src/pytop/hereditary_local_profiles.py +177 -0
- pytopology-1.7.0/src/pytop/higher_categories.py +1045 -0
- pytopology-1.7.0/src/pytop/homfly.py +359 -0
- pytopology-1.7.0/src/pytop/homology.py +320 -0
- pytopology-1.7.0/src/pytop/homology_coefficients.py +197 -0
- pytopology-1.7.0/src/pytop/homotopy.py +470 -0
- pytopology-1.7.0/src/pytop/hopf_invariant.py +311 -0
- pytopology-1.7.0/src/pytop/hyperspaces.py +751 -0
- pytopology-1.7.0/src/pytop/infinite_compactness.py +74 -0
- pytopology-1.7.0/src/pytop/infinite_connectedness.py +74 -0
- pytopology-1.7.0/src/pytop/infinite_constructions.py +115 -0
- pytopology-1.7.0/src/pytop/infinite_countability.py +134 -0
- pytopology-1.7.0/src/pytop/infinite_examples.py +336 -0
- pytopology-1.7.0/src/pytop/infinite_image_preimage.py +134 -0
- pytopology-1.7.0/src/pytop/infinite_maps.py +349 -0
- pytopology-1.7.0/src/pytop/infinite_quotients.py +42 -0
- pytopology-1.7.0/src/pytop/infinite_separation.py +127 -0
- pytopology-1.7.0/src/pytop/infinite_spaces.py +192 -0
- pytopology-1.7.0/src/pytop/intersection_forms.py +486 -0
- pytopology-1.7.0/src/pytop/invariants.py +311 -0
- pytopology-1.7.0/src/pytop/inverse_systems.py +425 -0
- pytopology-1.7.0/src/pytop/khovanov.py +330 -0
- pytopology-1.7.0/src/pytop/khovanov_odd.py +381 -0
- pytopology-1.7.0/src/pytop/kirby_calculus.py +477 -0
- pytopology-1.7.0/src/pytop/knot_invariants.py +609 -0
- pytopology-1.7.0/src/pytop/knots.py +415 -0
- pytopology-1.7.0/src/pytop/local_compactness.py +391 -0
- pytopology-1.7.0/src/pytop/locale_theory.py +1224 -0
- pytopology-1.7.0/src/pytop/logic.py +107 -0
- pytopology-1.7.0/src/pytop/manifolds.py +396 -0
- pytopology-1.7.0/src/pytop/map_continuity.py +232 -0
- pytopology-1.7.0/src/pytop/mapper.py +398 -0
- pytopology-1.7.0/src/pytop/maps.py +112 -0
- pytopology-1.7.0/src/pytop/massey_products.py +407 -0
- pytopology-1.7.0/src/pytop/mayer_vietoris.py +743 -0
- pytopology-1.7.0/src/pytop/metric_completeness.py +280 -0
- pytopology-1.7.0/src/pytop/metric_contracts.py +102 -0
- pytopology-1.7.0/src/pytop/metric_map_taxonomy.py +276 -0
- pytopology-1.7.0/src/pytop/metric_spaces.py +446 -0
- pytopology-1.7.0/src/pytop/metrization_api.py +188 -0
- pytopology-1.7.0/src/pytop/metrization_profiles.py +456 -0
- pytopology-1.7.0/src/pytop/milnor_fibers.py +429 -0
- pytopology-1.7.0/src/pytop/morse_complex.py +419 -0
- pytopology-1.7.0/src/pytop/motivic_homotopy.py +985 -0
- pytopology-1.7.0/src/pytop/multivariable_alexander.py +427 -0
- pytopology-1.7.0/src/pytop/named_spaces.py +2740 -0
- pytopology-1.7.0/src/pytop/neighborhood_systems.py +444 -0
- pytopology-1.7.0/src/pytop/nerve_complex.py +362 -0
- pytopology-1.7.0/src/pytop/nets.py +698 -0
- pytopology-1.7.0/src/pytop/noncommutative_topology.py +1080 -0
- pytopology-1.7.0/src/pytop/normal_spaces.py +501 -0
- pytopology-1.7.0/src/pytop/operads.py +1160 -0
- pytopology-1.7.0/src/pytop/order_lattice.py +175 -0
- pytopology-1.7.0/src/pytop/order_spaces.py +193 -0
- pytopology-1.7.0/src/pytop/ordinal_numbers.py +498 -0
- pytopology-1.7.0/src/pytop/paracompactness.py +633 -0
- pytopology-1.7.0/src/pytop/paths.py +196 -0
- pytopology-1.7.0/src/pytop/persistence_distances.py +463 -0
- pytopology-1.7.0/src/pytop/persistent_homology.py +1245 -0
- pytopology-1.7.0/src/pytop/persistent_homology_fp.py +177 -0
- pytopology-1.7.0/src/pytop/persistent_homology_optimized.py +485 -0
- pytopology-1.7.0/src/pytop/persistent_ktheory.py +273 -0
- pytopology-1.7.0/src/pytop/predicate_contracts.py +62 -0
- pytopology-1.7.0/src/pytop/predicate_functions.py +264 -0
- pytopology-1.7.0/src/pytop/predicate_relations.py +343 -0
- pytopology-1.7.0/src/pytop/predicate_sets.py +359 -0
- pytopology-1.7.0/src/pytop/predicates.py +300 -0
- pytopology-1.7.0/src/pytop/preservation.py +254 -0
- pytopology-1.7.0/src/pytop/preservation_legacy.py +179 -0
- pytopology-1.7.0/src/pytop/preservation_tables.py +309 -0
- pytopology-1.7.0/src/pytop/products.py +85 -0
- pytopology-1.7.0/src/pytop/property_utils.py +52 -0
- pytopology-1.7.0/src/pytop/proximity_spaces.py +128 -0
- pytopology-1.7.0/src/pytop/quantitative_topology.py +343 -0
- pytopology-1.7.0/src/pytop/quotients.py +111 -0
- pytopology-1.7.0/src/pytop/random_functions.py +423 -0
- pytopology-1.7.0/src/pytop/random_generators.py +479 -0
- pytopology-1.7.0/src/pytop/random_relations.py +235 -0
- pytopology-1.7.0/src/pytop/refinements.py +361 -0
- pytopology-1.7.0/src/pytop/relations.py +393 -0
- pytopology-1.7.0/src/pytop/research_bridge_profiles.py +108 -0
- pytopology-1.7.0/src/pytop/research_path_profiles.py +141 -0
- pytopology-1.7.0/src/pytop/result.py +293 -0
- pytopology-1.7.0/src/pytop/result_rendering.py +140 -0
- pytopology-1.7.0/src/pytop/retracts.py +530 -0
- pytopology-1.7.0/src/pytop/rohlin_theorem.py +415 -0
- pytopology-1.7.0/src/pytop/satellite_knots.py +536 -0
- pytopology-1.7.0/src/pytop/seifert.py +783 -0
- pytopology-1.7.0/src/pytop/separation.py +91 -0
- pytopology-1.7.0/src/pytop/separation_advanced.py +239 -0
- pytopology-1.7.0/src/pytop/separation_basic.py +503 -0
- pytopology-1.7.0/src/pytop/sequences.py +356 -0
- pytopology-1.7.0/src/pytop/sets.py +210 -0
- pytopology-1.7.0/src/pytop/shape_theory.py +1109 -0
- pytopology-1.7.0/src/pytop/sheaf_cohomology.py +454 -0
- pytopology-1.7.0/src/pytop/simplices.py +136 -0
- pytopology-1.7.0/src/pytop/simplicial_complexes.py +194 -0
- pytopology-1.7.0/src/pytop/simplicial_filtration.py +231 -0
- pytopology-1.7.0/src/pytop/simplicial_maps.py +344 -0
- pytopology-1.7.0/src/pytop/solenoid_profiles.py +919 -0
- pytopology-1.7.0/src/pytop/space_catalog.py +1556 -0
- pytopology-1.7.0/src/pytop/spaces.py +75 -0
- pytopology-1.7.0/src/pytop/sparse_linalg.py +282 -0
- pytopology-1.7.0/src/pytop/special_example_profiles.py +121 -0
- pytopology-1.7.0/src/pytop/spectral_sequences.py +1330 -0
- pytopology-1.7.0/src/pytop/spectral_spaces.py +902 -0
- pytopology-1.7.0/src/pytop/stone_cech.py +494 -0
- pytopology-1.7.0/src/pytop/streaming_persistence.py +193 -0
- pytopology-1.7.0/src/pytop/subbases.py +261 -0
- pytopology-1.7.0/src/pytop/subset_operators.py +373 -0
- pytopology-1.7.0/src/pytop/subspaces.py +58 -0
- pytopology-1.7.0/src/pytop/sullivan_models.py +503 -0
- pytopology-1.7.0/src/pytop/surface_classification.py +132 -0
- pytopology-1.7.0/src/pytop/surface_gluing.py +157 -0
- pytopology-1.7.0/src/pytop/surface_word_classification.py +152 -0
- pytopology-1.7.0/src/pytop/surfaces.py +129 -0
- pytopology-1.7.0/src/pytop/surgery_theory.py +264 -0
- pytopology-1.7.0/src/pytop/symbolic_convergence.py +474 -0
- pytopology-1.7.0/src/pytop/symplectic_topology.py +947 -0
- pytopology-1.7.0/src/pytop/tda_pipeline.py +463 -0
- pytopology-1.7.0/src/pytop/theorem_engine.py +387 -0
- pytopology-1.7.0/src/pytop/theorem_profile_alignment.py +386 -0
- pytopology-1.7.0/src/pytop/three_manifolds.py +284 -0
- pytopology-1.7.0/src/pytop/tightness_network_profiles.py +153 -0
- pytopology-1.7.0/src/pytop/topological_field_theory.py +710 -0
- pytopology-1.7.0/src/pytop/topological_groups.py +485 -0
- pytopology-1.7.0/src/pytop/topological_vector_spaces.py +808 -0
- pytopology-1.7.0/src/pytop/topology_builders.py +185 -0
- pytopology-1.7.0/src/pytop/topos_theory.py +1137 -0
- pytopology-1.7.0/src/pytop/unified_property.py +275 -0
- pytopology-1.7.0/src/pytop/uniform_convergence.py +854 -0
- pytopology-1.7.0/src/pytop/uniform_spaces.py +424 -0
- pytopology-1.7.0/src/pytop/van_kampen.py +908 -0
- pytopology-1.7.0/src/pytop/virtual_knots.py +447 -0
- pytopology-1.7.0/src/pytop/winding_number.py +90 -0
- pytopology-1.7.0/src/pytop/witness_complex.py +250 -0
- pytopology-1.7.0/src/pytop/zero_dimensionality.py +1004 -0
- pytopology-1.7.0/src/pytopology.egg-info/PKG-INFO +1048 -0
- pytopology-1.7.0/src/pytopology.egg-info/SOURCES.txt +326 -0
- pytopology-1.7.0/src/pytopology.egg-info/dependency_links.txt +1 -0
- pytopology-1.7.0/src/pytopology.egg-info/requires.txt +19 -0
- pytopology-1.7.0/src/pytopology.egg-info/top_level.txt +1 -0
pytopology-1.7.0/LICENSE
ADDED
|
@@ -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.
|