itp-interface 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (485) hide show
  1. itp_interface/__init__.py +0 -0
  2. itp_interface/agent/__init__.py +0 -0
  3. itp_interface/agent/simple_proof_agent.py +100 -0
  4. itp_interface/coq_ser_api/__init__.py +165 -0
  5. itp_interface/coq_ser_api/contexts.py +283 -0
  6. itp_interface/coq_ser_api/coq_agent.py +459 -0
  7. itp_interface/coq_ser_api/coq_backend.py +135 -0
  8. itp_interface/coq_ser_api/coq_util.py +839 -0
  9. itp_interface/coq_ser_api/example.py +67 -0
  10. itp_interface/coq_ser_api/lsp_backend.py +375 -0
  11. itp_interface/coq_ser_api/py.typed +0 -0
  12. itp_interface/coq_ser_api/serapi_backend.py +841 -0
  13. itp_interface/coq_ser_api/util.py +145 -0
  14. itp_interface/coq_ser_api_old/__init__.py +2583 -0
  15. itp_interface/coq_ser_api_old/contexts.py +172 -0
  16. itp_interface/coq_ser_api_old/util.py +146 -0
  17. itp_interface/lean_server/__init__.py +0 -0
  18. itp_interface/lean_server/commands.py +484 -0
  19. itp_interface/lean_server/lean3_search_tool.py +358 -0
  20. itp_interface/lean_server/lean4_repl_interface.py +151 -0
  21. itp_interface/lean_server/lean4_utils.py +255 -0
  22. itp_interface/lean_server/lean_cmd_server.py +111 -0
  23. itp_interface/lean_server/lean_context.py +60 -0
  24. itp_interface/lean_server/lean_sync_server.py +174 -0
  25. itp_interface/lean_server/lean_utils.py +199 -0
  26. itp_interface/lean_server/py.typed +1 -0
  27. itp_interface/main/__init__.py +0 -0
  28. itp_interface/main/config/afp_data_gen.yaml +14 -0
  29. itp_interface/main/config/benchmark/CompCert.yaml +366 -0
  30. itp_interface/main/config/benchmark/GeoCoq.yaml +930 -0
  31. itp_interface/main/config/benchmark/UniMath.yaml +2690 -0
  32. itp_interface/main/config/benchmark/afp_isabelle.yaml +29200 -0
  33. itp_interface/main/config/benchmark/agent_proverbot_hard.yaml +247 -0
  34. itp_interface/main/config/benchmark/category-theory.yaml +470 -0
  35. itp_interface/main/config/benchmark/compcert_118_subset.yaml +148 -0
  36. itp_interface/main/config/benchmark/compcert_benchmark.yaml +36 -0
  37. itp_interface/main/config/benchmark/compcert_benchmark_hard.yaml +498 -0
  38. itp_interface/main/config/benchmark/compcert_benchmark_hard_1.yaml +55 -0
  39. itp_interface/main/config/benchmark/compcert_benchmark_hard_2.yaml +24 -0
  40. itp_interface/main/config/benchmark/compcert_benchmark_hard_3.yaml +95 -0
  41. itp_interface/main/config/benchmark/compcert_benchmark_hard_7_per_cent.yaml +78 -0
  42. itp_interface/main/config/benchmark/compcert_benchmark_test.yaml +38 -0
  43. itp_interface/main/config/benchmark/compcert_benchmark_train.yaml +340 -0
  44. itp_interface/main/config/benchmark/leandojo_novel_premises_test.yaml +2908 -0
  45. itp_interface/main/config/benchmark/leandojo_novel_premises_train.yaml +98645 -0
  46. itp_interface/main/config/benchmark/leandojo_novel_premises_val.yaml +2912 -0
  47. itp_interface/main/config/benchmark/leandojo_random.yaml +2889 -0
  48. itp_interface/main/config/benchmark/leandojo_random_test.yaml +2421 -0
  49. itp_interface/main/config/benchmark/leandojo_random_train.yaml +62729 -0
  50. itp_interface/main/config/benchmark/leandojo_random_val.yaml +2504 -0
  51. itp_interface/main/config/benchmark/math-comp.yaml +200 -0
  52. itp_interface/main/config/benchmark/miniF2F_test.yaml +12 -0
  53. itp_interface/main/config/benchmark/miniF2F_test_aime.yaml +27 -0
  54. itp_interface/main/config/benchmark/miniF2F_test_algebra.yaml +30 -0
  55. itp_interface/main/config/benchmark/miniF2F_test_amc12.yaml +57 -0
  56. itp_interface/main/config/benchmark/miniF2F_test_few_shot_hard.yaml +231 -0
  57. itp_interface/main/config/benchmark/miniF2F_test_imo.yaml +32 -0
  58. itp_interface/main/config/benchmark/miniF2F_test_induction.yaml +20 -0
  59. itp_interface/main/config/benchmark/miniF2F_test_mathd_algebra.yaml +82 -0
  60. itp_interface/main/config/benchmark/miniF2F_test_mathd_algebra_hard.yaml +72 -0
  61. itp_interface/main/config/benchmark/miniF2F_test_mathd_numbertheory.yaml +72 -0
  62. itp_interface/main/config/benchmark/miniF2F_test_numbertheory.yaml +20 -0
  63. itp_interface/main/config/benchmark/minicompcert_benchmark_1.yaml +14 -0
  64. itp_interface/main/config/benchmark/proverbot_hard.yaml +104 -0
  65. itp_interface/main/config/benchmark/re_prover.yaml +66 -0
  66. itp_interface/main/config/benchmark/re_prover_hard.yaml +41 -0
  67. itp_interface/main/config/benchmark/re_prover_very_hard.yaml +22 -0
  68. itp_interface/main/config/benchmark/reprover_with_retrieval.yaml +73 -0
  69. itp_interface/main/config/benchmark/reprover_with_retrieval_hard.yaml +30 -0
  70. itp_interface/main/config/benchmark/reprover_with_retrieval_neg.yaml +195 -0
  71. itp_interface/main/config/benchmark/simple_benchmark_1.yaml +24 -0
  72. itp_interface/main/config/benchmark/simple_benchmark_8.yaml +50 -0
  73. itp_interface/main/config/benchmark/simple_benchmark_9.yaml +65 -0
  74. itp_interface/main/config/benchmark/simple_benchmark_isabelle.yaml +18 -0
  75. itp_interface/main/config/benchmark/simple_benchmark_lean.yaml +12 -0
  76. itp_interface/main/config/benchmark/simple_benchmark_lean_training_data.yaml +12 -0
  77. itp_interface/main/config/benchmark/simple_rl_benchmark_lean.yaml +14 -0
  78. itp_interface/main/config/benchmark/stack_machine.yaml +13 -0
  79. itp_interface/main/config/benchmark/stack_machine_hard.yaml +15 -0
  80. itp_interface/main/config/category_theory_data_gen.yaml +14 -0
  81. itp_interface/main/config/category_theory_data_gen_random.yaml +16 -0
  82. itp_interface/main/config/compcert_data_gen_test.yaml +10 -0
  83. itp_interface/main/config/compcert_data_gen_train.yaml +7 -0
  84. itp_interface/main/config/env_settings/bm25_retrieval.yaml +2 -0
  85. itp_interface/main/config/env_settings/bm25_retrieval_no_dfns.yaml +2 -0
  86. itp_interface/main/config/env_settings/bm25_retrieval_only_local_no_dfns.yaml +2 -0
  87. itp_interface/main/config/env_settings/bm25_retrieval_with_print.yaml +2 -0
  88. itp_interface/main/config/env_settings/bm25_retrieval_with_print_only_local.yaml +2 -0
  89. itp_interface/main/config/env_settings/bm25_retrieval_with_print_only_local_no_dfns.yaml +2 -0
  90. itp_interface/main/config/env_settings/no_retrieval.yaml +2 -0
  91. itp_interface/main/config/experiments.yaml +12 -0
  92. itp_interface/main/config/geo_coq_data_gen.yaml +14 -0
  93. itp_interface/main/config/geo_coq_data_gen_random.yaml +16 -0
  94. itp_interface/main/config/leandojo_random_data_gen.yaml +16 -0
  95. itp_interface/main/config/math_comp_data_gen.yaml +14 -0
  96. itp_interface/main/config/math_comp_data_gen_random.yaml +16 -0
  97. itp_interface/main/config/mathlib_data_gen.yaml +14 -0
  98. itp_interface/main/config/repo/coq_repos.yaml +191 -0
  99. itp_interface/main/config/run_settings/default_coq_data_generation_transforms.yaml +24 -0
  100. itp_interface/main/config/run_settings/default_isabelle_data_generation_transforms.yaml +24 -0
  101. itp_interface/main/config/run_settings/default_lean4_data_generation_transforms.yaml +24 -0
  102. itp_interface/main/config/run_settings/default_lean_data_generation_transforms.yaml +24 -0
  103. itp_interface/main/config/simple_coq_data_gen.yaml +12 -0
  104. itp_interface/main/config/simple_coq_data_gen_random.yaml +17 -0
  105. itp_interface/main/config/simple_lean_data_gen.yaml +12 -0
  106. itp_interface/main/config/simple_rl_lean_data_gen.yaml +12 -0
  107. itp_interface/main/config/uni_math_data_gen.yaml +14 -0
  108. itp_interface/main/config.py +192 -0
  109. itp_interface/main/extract_benchmark_dataset.py +106 -0
  110. itp_interface/main/filter_dataset.py +107 -0
  111. itp_interface/main/install.py +92 -0
  112. itp_interface/main/merge_dataset.py +96 -0
  113. itp_interface/main/run_tool.py +444 -0
  114. itp_interface/pisa/.git +1 -0
  115. itp_interface/pisa/.gitignore +125 -0
  116. itp_interface/pisa/.idea/.gitignore +8 -0
  117. itp_interface/pisa/.idea/ClojureProjectResolveSettings.xml +6 -0
  118. itp_interface/pisa/.idea/codeStyles/Project.xml +7 -0
  119. itp_interface/pisa/.idea/codeStyles/codeStyleConfig.xml +5 -0
  120. itp_interface/pisa/.idea/inspectionProfiles/Project_Default.xml +16 -0
  121. itp_interface/pisa/.idea/libraries/sbt__com_google_android_annotations_4_1_1_4_jar.xml +13 -0
  122. itp_interface/pisa/.idea/libraries/sbt__com_google_api_grpc_proto_google_common_protos_1_17_0_jar.xml +13 -0
  123. itp_interface/pisa/.idea/libraries/sbt__com_google_code_findbugs_jsr305_3_0_2_jar.xml +13 -0
  124. itp_interface/pisa/.idea/libraries/sbt__com_google_code_gson_gson_2_8_6_jar.xml +13 -0
  125. itp_interface/pisa/.idea/libraries/sbt__com_google_errorprone_error_prone_annotations_2_3_4_jar.xml +13 -0
  126. itp_interface/pisa/.idea/libraries/sbt__com_google_guava_failureaccess_1_0_1_jar.xml +13 -0
  127. itp_interface/pisa/.idea/libraries/sbt__com_google_guava_guava_30_0_jre_jar.xml +13 -0
  128. itp_interface/pisa/.idea/libraries/sbt__com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava_jar.xml +9 -0
  129. itp_interface/pisa/.idea/libraries/sbt__com_google_j2objc_j2objc_annotations_1_3_jar.xml +13 -0
  130. itp_interface/pisa/.idea/libraries/sbt__com_google_protobuf_protobuf_java_3_12_0_jar.xml +13 -0
  131. itp_interface/pisa/.idea/libraries/sbt__com_google_protobuf_protobuf_java_util_3_12_0_jar.xml +13 -0
  132. itp_interface/pisa/.idea/libraries/sbt__com_lihaoyi_fastparse_2_13_2_3_0_jar.xml +13 -0
  133. itp_interface/pisa/.idea/libraries/sbt__com_lihaoyi_geny_2_13_0_6_0_jar.xml +13 -0
  134. itp_interface/pisa/.idea/libraries/sbt__com_lihaoyi_sourcecode_2_13_0_2_1_jar.xml +13 -0
  135. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_lenses_2_13_0_10_9_jar.xml +13 -0
  136. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_scalapb_runtime_2_13_0_10_9_jar.xml +13 -0
  137. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_scalapb_runtime_grpc_2_13_0_10_9_jar.xml +13 -0
  138. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_zio_grpc_zio_grpc_core_2_13_0_4_2_jar.xml +13 -0
  139. itp_interface/pisa/.idea/libraries/sbt__com_thoughtworks_paranamer_paranamer_2_8_jar.xml +13 -0
  140. itp_interface/pisa/.idea/libraries/sbt__commons_io_commons_io_2_8_0_jar.xml +13 -0
  141. itp_interface/pisa/.idea/libraries/sbt__de_unruh_java_patterns_0_1_0_jar.xml +13 -0
  142. itp_interface/pisa/.idea/libraries/sbt__de_unruh_scala_isabelle_2_13_master_SNAPSHOT_jar.xml +13 -0
  143. itp_interface/pisa/.idea/libraries/sbt__dev_zio_izumi_reflect_2_13_1_0_0_M9_jar.xml +13 -0
  144. itp_interface/pisa/.idea/libraries/sbt__dev_zio_izumi_reflect_thirdparty_boopickle_shaded_2_13_1_0_0_M9_jar.xml +13 -0
  145. itp_interface/pisa/.idea/libraries/sbt__dev_zio_zio_2_13_1_0_3_jar.xml +13 -0
  146. itp_interface/pisa/.idea/libraries/sbt__dev_zio_zio_stacktracer_2_13_1_0_3_jar.xml +13 -0
  147. itp_interface/pisa/.idea/libraries/sbt__dev_zio_zio_streams_2_13_1_0_3_jar.xml +13 -0
  148. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_api_1_34_0_jar.xml +13 -0
  149. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_context_1_34_0_jar.xml +13 -0
  150. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_core_1_34_0_jar.xml +13 -0
  151. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_netty_1_34_0_jar.xml +13 -0
  152. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_protobuf_1_34_0_jar.xml +13 -0
  153. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_protobuf_lite_1_34_0_jar.xml +13 -0
  154. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_services_1_34_0_jar.xml +13 -0
  155. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_stub_1_34_0_jar.xml +13 -0
  156. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_buffer_4_1_51_Final_jar.xml +13 -0
  157. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_4_1_51_Final_jar.xml +13 -0
  158. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_http2_4_1_51_Final_jar.xml +13 -0
  159. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_http_4_1_51_Final_jar.xml +13 -0
  160. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_socks_4_1_51_Final_jar.xml +13 -0
  161. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_common_4_1_51_Final_jar.xml +13 -0
  162. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_handler_4_1_51_Final_jar.xml +13 -0
  163. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_handler_proxy_4_1_51_Final_jar.xml +13 -0
  164. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_resolver_4_1_51_Final_jar.xml +13 -0
  165. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_transport_4_1_51_Final_jar.xml +13 -0
  166. itp_interface/pisa/.idea/libraries/sbt__io_perfmark_perfmark_api_0_19_0_jar.xml +13 -0
  167. itp_interface/pisa/.idea/libraries/sbt__net_java_dev_jna_jna_5_3_1_jar.xml +13 -0
  168. itp_interface/pisa/.idea/libraries/sbt__net_liftweb_lift_json_2_13_3_4_3_jar.xml +13 -0
  169. itp_interface/pisa/.idea/libraries/sbt__org_apache_commons_commons_lang3_3_11_jar.xml +13 -0
  170. itp_interface/pisa/.idea/libraries/sbt__org_apache_commons_commons_text_1_9_jar.xml +13 -0
  171. itp_interface/pisa/.idea/libraries/sbt__org_checkerframework_checker_qual_3_5_0_jar.xml +13 -0
  172. itp_interface/pisa/.idea/libraries/sbt__org_codehaus_mojo_animal_sniffer_annotations_1_18_jar.xml +13 -0
  173. itp_interface/pisa/.idea/libraries/sbt__org_jetbrains_annotations_20_1_0_jar.xml +13 -0
  174. itp_interface/pisa/.idea/libraries/sbt__org_jline_jline_3_16_0_jar.xml +13 -0
  175. itp_interface/pisa/.idea/libraries/sbt__org_log4s_log4s_2_13_1_9_0_jar.xml +13 -0
  176. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_modules_scala_collection_compat_2_13_2_1_6_jar.xml +13 -0
  177. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_modules_scala_xml_2_13_1_3_0_jar.xml +13 -0
  178. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scala_compiler_2_13_4_jar.xml +13 -0
  179. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scala_library_2_13_4_jar.xml +23 -0
  180. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scala_reflect_2_13_4_jar.xml +13 -0
  181. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scalap_2_13_4_jar.xml +13 -0
  182. itp_interface/pisa/.idea/libraries/sbt__org_scalaz_scalaz_core_2_13_7_3_2_jar.xml +13 -0
  183. itp_interface/pisa/.idea/libraries/sbt__org_slf4j_slf4j_api_1_7_30_jar.xml +13 -0
  184. itp_interface/pisa/.idea/libraries/sbt__org_slf4j_slf4j_simple_1_7_30_jar.xml +13 -0
  185. itp_interface/pisa/.idea/misc.xml +7 -0
  186. itp_interface/pisa/.idea/modules/PISA-build.iml +127 -0
  187. itp_interface/pisa/.idea/modules/PISA.iml +94 -0
  188. itp_interface/pisa/.idea/modules.xml +9 -0
  189. itp_interface/pisa/.idea/other.xml +6 -0
  190. itp_interface/pisa/.idea/sbt.xml +20 -0
  191. itp_interface/pisa/.idea/scala_compiler.xml +6 -0
  192. itp_interface/pisa/.idea/uiDesigner.xml +124 -0
  193. itp_interface/pisa/.idea/vcs.xml +6 -0
  194. itp_interface/pisa/.scalafmt.conf +2 -0
  195. itp_interface/pisa/LICENSE +29 -0
  196. itp_interface/pisa/README.md +262 -0
  197. itp_interface/pisa/build.sbt +49 -0
  198. itp_interface/pisa/build.sh +26 -0
  199. itp_interface/pisa/command_generation/close_gaps.py +44 -0
  200. itp_interface/pisa/command_generation/conjecture_normal_order.py +62 -0
  201. itp_interface/pisa/command_generation/conjecturer_command_generator.py +36 -0
  202. itp_interface/pisa/command_generation/create_dirs.py +11 -0
  203. itp_interface/pisa/command_generation/find_std.py +67 -0
  204. itp_interface/pisa/command_generation/generate_build_commands_afp.py +15 -0
  205. itp_interface/pisa/command_generation/generate_build_commands_std.py +15 -0
  206. itp_interface/pisa/command_generation/generate_commands_afp.py +103 -0
  207. itp_interface/pisa/command_generation/generate_commands_mini.py +73 -0
  208. itp_interface/pisa/command_generation/generate_commands_std.py +69 -0
  209. itp_interface/pisa/command_generation/generate_hammer_extraction_text.py +5 -0
  210. itp_interface/pisa/command_generation/hammer_command_generator.py +40 -0
  211. itp_interface/pisa/command_generation/hp_search_command_generator.py +63 -0
  212. itp_interface/pisa/command_generation/oracle_command_generator.py +56 -0
  213. itp_interface/pisa/command_generation/search_command_generator.py +69 -0
  214. itp_interface/pisa/command_generation/summarise_problem_names.py +45 -0
  215. itp_interface/pisa/command_generation/tpu_hp_search.py +75 -0
  216. itp_interface/pisa/docker/Dockerfile +34 -0
  217. itp_interface/pisa/docker/docker_tutorial.md +64 -0
  218. itp_interface/pisa/eval_setup/copy_isabelle.py +42 -0
  219. itp_interface/pisa/eval_setup/copy_pisa_jars.py +18 -0
  220. itp_interface/pisa/mesh_transformer_utils/tokenization.py +86 -0
  221. itp_interface/pisa/project/build.properties +1 -0
  222. itp_interface/pisa/project/plugins.sbt +5 -0
  223. itp_interface/pisa/requirements.txt +4 -0
  224. itp_interface/pisa/scripts/extract_last_k_steps.py +28 -0
  225. itp_interface/pisa/scripts/extract_proof_corpus.py +26 -0
  226. itp_interface/pisa/scripts/gather_hammer_results.py +27 -0
  227. itp_interface/pisa/scripts/length_in_char_stats.py +20 -0
  228. itp_interface/pisa/scripts/mix.py +127 -0
  229. itp_interface/pisa/scripts/results_stat.py +52 -0
  230. itp_interface/pisa/scripts/test_array_job.sh +34 -0
  231. itp_interface/pisa/setup.sh +25 -0
  232. itp_interface/pisa/src/main/protobuf/server.proto +60 -0
  233. itp_interface/pisa/src/main/python/.idea/.gitignore +8 -0
  234. itp_interface/pisa/src/main/python/.idea/inspectionProfiles/Project_Default.xml +18 -0
  235. itp_interface/pisa/src/main/python/.idea/inspectionProfiles/profiles_settings.xml +6 -0
  236. itp_interface/pisa/src/main/python/.idea/misc.xml +4 -0
  237. itp_interface/pisa/src/main/python/.idea/modules.xml +8 -0
  238. itp_interface/pisa/src/main/python/.idea/python.iml +12 -0
  239. itp_interface/pisa/src/main/python/.idea/vcs.xml +6 -0
  240. itp_interface/pisa/src/main/python/conjecturing_parsing/conjecturer_postprocessing.py +59 -0
  241. itp_interface/pisa/src/main/python/data_extraction/extract_data.py +184 -0
  242. itp_interface/pisa/src/main/python/data_extraction/find_premises.py +221 -0
  243. itp_interface/pisa/src/main/python/data_extraction/process_data.py +129 -0
  244. itp_interface/pisa/src/main/python/legacy/PisaFlexibleClient.py +167 -0
  245. itp_interface/pisa/src/main/python/legacy/autof_test.py +74 -0
  246. itp_interface/pisa/src/main/python/legacy/cmd_client.py +23 -0
  247. itp_interface/pisa/src/main/python/legacy/convert_scala_dump_to_test_name_jsons.py +14 -0
  248. itp_interface/pisa/src/main/python/legacy/create_data_txt.py +72 -0
  249. itp_interface/pisa/src/main/python/legacy/create_finetune_tfrecords.py +311 -0
  250. itp_interface/pisa/src/main/python/legacy/demo.py +49 -0
  251. itp_interface/pisa/src/main/python/legacy/evaluate.py +108 -0
  252. itp_interface/pisa/src/main/python/legacy/extract_first_step.py +25 -0
  253. itp_interface/pisa/src/main/python/legacy/get_global_facts.py +35 -0
  254. itp_interface/pisa/src/main/python/legacy/mix_data.py +19 -0
  255. itp_interface/pisa/src/main/python/legacy/one_stage_extraction.py +111 -0
  256. itp_interface/pisa/src/main/python/legacy/prepare_episodic_transitions.py +137 -0
  257. itp_interface/pisa/src/main/python/legacy/prepare_translation_pairs.py +277 -0
  258. itp_interface/pisa/src/main/python/pisa_client.py +322 -0
  259. itp_interface/pisa/src/main/python/server_pb2.py +394 -0
  260. itp_interface/pisa/src/main/python/server_pb2_grpc.py +230 -0
  261. itp_interface/pisa/src/main/python/test_client.py +17 -0
  262. itp_interface/pisa/src/main/python/test_client2.py +79 -0
  263. itp_interface/pisa/src/main/python/utils/filters.py +59 -0
  264. itp_interface/pisa/src/main/python/utils/pisa_server_control.py +29 -0
  265. itp_interface/pisa/src/main/scala/pisa/agent/CheckSyntax.scala +257 -0
  266. itp_interface/pisa/src/main/scala/pisa/agent/DepThms.scala +29 -0
  267. itp_interface/pisa/src/main/scala/pisa/agent/PisaStat.scala +46 -0
  268. itp_interface/pisa/src/main/scala/pisa/agent/RefactorTest.scala +40 -0
  269. itp_interface/pisa/src/main/scala/pisa/agent/RepHammer.scala +95 -0
  270. itp_interface/pisa/src/main/scala/pisa/server/HammFacts.scala +63 -0
  271. itp_interface/pisa/src/main/scala/pisa/server/PisaOS.scala +881 -0
  272. itp_interface/pisa/src/main/scala/pisa/server/PisaOneStage.scala +540 -0
  273. itp_interface/pisa/src/main/scala/pisa/server/PisaOneStageServers.scala +1048 -0
  274. itp_interface/pisa/src/main/scala/pisa/utils/TheoryManager.scala +95 -0
  275. itp_interface/pisa/src/test/python/analyse_debug.py +33 -0
  276. itp_interface/pisa/src/test/python/extract_test_seq2seq.py +53 -0
  277. itp_interface/pisa/src/test/python/extract_test_theorem_ground_truth_indices.py +31 -0
  278. itp_interface/pisa/src/test/python/proof_originality.py +24 -0
  279. itp_interface/pisa/src/test/python/test_command_generator.py +25 -0
  280. itp_interface/pisa/src/test/python/test_model_sequence_accuracy.py +70 -0
  281. itp_interface/pisa/src/test/scala/pisa/Easy.scala +26 -0
  282. itp_interface/pisa/src/test/scala/pisa/TestCurl.scala +82 -0
  283. itp_interface/pisa/src/test/scala/pisa/TestIsa.scala +27 -0
  284. itp_interface/pisa/test.sh +19 -0
  285. itp_interface/pisa/universal_test_theorems.tar.gz +0 -0
  286. itp_interface/repo/build.py +78 -0
  287. itp_interface/repo/clone.py +79 -0
  288. itp_interface/repo/dataset_discovery.py +99 -0
  289. itp_interface/retrieval/__init__.py +0 -0
  290. itp_interface/retrieval/abstraction.py +35 -0
  291. itp_interface/retrieval/coq_bm25_reranker.py +153 -0
  292. itp_interface/retrieval/isabelle_bm25_reranker.py +86 -0
  293. itp_interface/retrieval/lean3_bm25_reranker.py +86 -0
  294. itp_interface/rl/__init__.py +0 -0
  295. itp_interface/rl/abstraction.py +168 -0
  296. itp_interface/rl/proof_action.py +172 -0
  297. itp_interface/rl/proof_state.py +149 -0
  298. itp_interface/rl/proof_tree.py +109 -0
  299. itp_interface/rl/simpl_proof_env_pool.py +16 -0
  300. itp_interface/rl/simple_proof_env.py +713 -0
  301. itp_interface/rl/simple_proof_env_pool.py +591 -0
  302. itp_interface/scripts/setup.sh +228 -0
  303. itp_interface/tools/__init__.py +0 -0
  304. itp_interface/tools/basic_utils.py +172 -0
  305. itp_interface/tools/bin_packing.py +61 -0
  306. itp_interface/tools/cache.py +93 -0
  307. itp_interface/tools/coq_build_spec.py +31 -0
  308. itp_interface/tools/coq_build_tool.py +319 -0
  309. itp_interface/tools/coq_context_helper.py +354 -0
  310. itp_interface/tools/coq_executor.py +508 -0
  311. itp_interface/tools/coq_local_data_generation_transform.py +158 -0
  312. itp_interface/tools/coq_parse_utils.py +154 -0
  313. itp_interface/tools/coq_raw_proofs.py +193 -0
  314. itp_interface/tools/coq_theorem_proof_pair_generation_transform.py +146 -0
  315. itp_interface/tools/coq_training_data_generator.py +76 -0
  316. itp_interface/tools/dynamic_coq_proof_exec.py +220 -0
  317. itp_interface/tools/dynamic_isabelle_proof_exec.py +229 -0
  318. itp_interface/tools/dynamic_lean4_proof_exec.py +236 -0
  319. itp_interface/tools/dynamic_lean_proof_exec.py +228 -0
  320. itp_interface/tools/isabelle_context_helper.py +66 -0
  321. itp_interface/tools/isabelle_executor.py +862 -0
  322. itp_interface/tools/isabelle_local_data_generation_transform.py +149 -0
  323. itp_interface/tools/isabelle_parse_utils.py +131 -0
  324. itp_interface/tools/isabelle_server.py +106 -0
  325. itp_interface/tools/lean4_context_helper.py +72 -0
  326. itp_interface/tools/lean4_local_data_generation_transform.py +122 -0
  327. itp_interface/tools/lean4_sync_executor.py +1193 -0
  328. itp_interface/tools/lean_cmd_executor.py +804 -0
  329. itp_interface/tools/lean_context_helper.py +327 -0
  330. itp_interface/tools/lean_dojo_data_generation_transform.py +206 -0
  331. itp_interface/tools/lean_executor.py +687 -0
  332. itp_interface/tools/lean_local_data_generation_transform.py +136 -0
  333. itp_interface/tools/lean_parse_utils.py +32 -0
  334. itp_interface/tools/log_utils.py +20 -0
  335. itp_interface/tools/proof_exec_callback.py +76 -0
  336. itp_interface/tools/ray_utils.py +265 -0
  337. itp_interface/tools/repl/.git +1 -0
  338. itp_interface/tools/repl/.github/workflows/ci.yml +24 -0
  339. itp_interface/tools/repl/.gitignore +7 -0
  340. itp_interface/tools/repl/.vscode/copyright.code-snippets +13 -0
  341. itp_interface/tools/repl/.vscode/extensions.json +13 -0
  342. itp_interface/tools/repl/.vscode/module-docstring.code-snippets +35 -0
  343. itp_interface/tools/repl/.vscode/settings.json +11 -0
  344. itp_interface/tools/repl/README.md +174 -0
  345. itp_interface/tools/repl/REPL/Frontend.lean +47 -0
  346. itp_interface/tools/repl/REPL/JSON.lean +186 -0
  347. itp_interface/tools/repl/REPL/Lean/ContextInfo.lean +9 -0
  348. itp_interface/tools/repl/REPL/Lean/Environment.lean +31 -0
  349. itp_interface/tools/repl/REPL/Lean/InfoTree/ToJson.lean +114 -0
  350. itp_interface/tools/repl/REPL/Lean/InfoTree.lean +272 -0
  351. itp_interface/tools/repl/REPL/Main.lean +323 -0
  352. itp_interface/tools/repl/REPL/Snapshots.lean +306 -0
  353. itp_interface/tools/repl/REPL/Util/Path.lean +36 -0
  354. itp_interface/tools/repl/REPL/Util/Pickle.lean +44 -0
  355. itp_interface/tools/repl/REPL.lean +4 -0
  356. itp_interface/tools/repl/lake-manifest.json +5 -0
  357. itp_interface/tools/repl/lakefile.lean +15 -0
  358. itp_interface/tools/repl/lean-toolchain +1 -0
  359. itp_interface/tools/repl/test/Mathlib/.gitignore +5 -0
  360. itp_interface/tools/repl/test/Mathlib/H20231110.sh +2 -0
  361. itp_interface/tools/repl/test/Mathlib/ReplMathlibTests.lean +1 -0
  362. itp_interface/tools/repl/test/Mathlib/lake-manifest.json +68 -0
  363. itp_interface/tools/repl/test/Mathlib/lakefile.lean +11 -0
  364. itp_interface/tools/repl/test/Mathlib/lean-toolchain +1 -0
  365. itp_interface/tools/repl/test/Mathlib/test/20240209.expected.out +20 -0
  366. itp_interface/tools/repl/test/Mathlib/test/20240209.in +3 -0
  367. itp_interface/tools/repl/test/Mathlib/test/20240209.lean +4 -0
  368. itp_interface/tools/repl/test/Mathlib/test/H20231020.expected.out +8 -0
  369. itp_interface/tools/repl/test/Mathlib/test/H20231020.in +8 -0
  370. itp_interface/tools/repl/test/Mathlib/test/H20231020.lean +22 -0
  371. itp_interface/tools/repl/test/Mathlib/test/H20231110.expected.out +4 -0
  372. itp_interface/tools/repl/test/Mathlib/test/H20231110.in +4 -0
  373. itp_interface/tools/repl/test/Mathlib/test/H20231115.expected.out +19 -0
  374. itp_interface/tools/repl/test/Mathlib/test/H20231115.in +5 -0
  375. itp_interface/tools/repl/test/Mathlib/test/H20231115_2.expected.out +18 -0
  376. itp_interface/tools/repl/test/Mathlib/test/H20231115_2.in +4 -0
  377. itp_interface/tools/repl/test/Mathlib/test/H20231115_3.expected.out +10 -0
  378. itp_interface/tools/repl/test/Mathlib/test/H20231115_3.in +4 -0
  379. itp_interface/tools/repl/test/Mathlib/test/H20231214.in +9 -0
  380. itp_interface/tools/repl/test/Mathlib/test/H20231214.lean +30 -0
  381. itp_interface/tools/repl/test/Mathlib/test/H20231215.expected.out +4 -0
  382. itp_interface/tools/repl/test/Mathlib/test/H20231215.in +4 -0
  383. itp_interface/tools/repl/test/Mathlib/test/H20231215_2.expected.out +14 -0
  384. itp_interface/tools/repl/test/Mathlib/test/H20231215_2.in +3 -0
  385. itp_interface/tools/repl/test/Mathlib/test/exact.expected.out +37 -0
  386. itp_interface/tools/repl/test/Mathlib/test/exact.in +10 -0
  387. itp_interface/tools/repl/test/Mathlib/test/import_Mathlib.lean +1 -0
  388. itp_interface/tools/repl/test/Mathlib/test/induction.expected.out +29 -0
  389. itp_interface/tools/repl/test/Mathlib/test/induction.in +10 -0
  390. itp_interface/tools/repl/test/Mathlib/test/induction.lean +6 -0
  391. itp_interface/tools/repl/test/Mathlib/test/on_goal.expected.out +22 -0
  392. itp_interface/tools/repl/test/Mathlib/test/on_goal.in +5 -0
  393. itp_interface/tools/repl/test/Mathlib/test/pickle.expected.out +16 -0
  394. itp_interface/tools/repl/test/Mathlib/test/pickle.in +6 -0
  395. itp_interface/tools/repl/test/Mathlib/test/pickle_2.expected.out +4 -0
  396. itp_interface/tools/repl/test/Mathlib/test/pickle_2.in +4 -0
  397. itp_interface/tools/repl/test/Mathlib/test.sh +41 -0
  398. itp_interface/tools/repl/test/all_tactics.expected.out +13 -0
  399. itp_interface/tools/repl/test/all_tactics.in +1 -0
  400. itp_interface/tools/repl/test/by_cases.expected.out +25 -0
  401. itp_interface/tools/repl/test/by_cases.in +8 -0
  402. itp_interface/tools/repl/test/by_cases.lean +4 -0
  403. itp_interface/tools/repl/test/calc.expected.out +32 -0
  404. itp_interface/tools/repl/test/calc.in +1 -0
  405. itp_interface/tools/repl/test/def_eval.expected.out +9 -0
  406. itp_interface/tools/repl/test/def_eval.in +3 -0
  407. itp_interface/tools/repl/test/enableInitializersExecution.expected.out +2 -0
  408. itp_interface/tools/repl/test/enableInitializersExecution.in +1 -0
  409. itp_interface/tools/repl/test/file.expected.out +8 -0
  410. itp_interface/tools/repl/test/file.in +1 -0
  411. itp_interface/tools/repl/test/file.lean +5 -0
  412. itp_interface/tools/repl/test/have_by_sorry.expected.out +28 -0
  413. itp_interface/tools/repl/test/have_by_sorry.in +6 -0
  414. itp_interface/tools/repl/test/import_lean.in +1 -0
  415. itp_interface/tools/repl/test/incomplete.expected.out +18 -0
  416. itp_interface/tools/repl/test/incomplete.in +3 -0
  417. itp_interface/tools/repl/test/incomplete.lean +0 -0
  418. itp_interface/tools/repl/test/infotree.expected.out +20 -0
  419. itp_interface/tools/repl/test/infotree.in +2 -0
  420. itp_interface/tools/repl/test/invalid_tactic.expected.out +20 -0
  421. itp_interface/tools/repl/test/invalid_tactic.in +3 -0
  422. itp_interface/tools/repl/test/name_generator.expected.out +53 -0
  423. itp_interface/tools/repl/test/name_generator.in +18 -0
  424. itp_interface/tools/repl/test/no_goal_sorry.expected.out +11 -0
  425. itp_interface/tools/repl/test/no_goal_sorry.in +1 -0
  426. itp_interface/tools/repl/test/no_goal_sorry_2.expected.out +12 -0
  427. itp_interface/tools/repl/test/no_goal_sorry_2.in +1 -0
  428. itp_interface/tools/repl/test/options.expected.out +17 -0
  429. itp_interface/tools/repl/test/options.in +6 -0
  430. itp_interface/tools/repl/test/pickle_environment.expected.out +8 -0
  431. itp_interface/tools/repl/test/pickle_environment.in +7 -0
  432. itp_interface/tools/repl/test/pickle_environment_with_imports.expected.out +10 -0
  433. itp_interface/tools/repl/test/pickle_environment_with_imports.in +9 -0
  434. itp_interface/tools/repl/test/pickle_open.expected.out +8 -0
  435. itp_interface/tools/repl/test/pickle_open.in +7 -0
  436. itp_interface/tools/repl/test/pickle_open_2.expected.out +4 -0
  437. itp_interface/tools/repl/test/pickle_open_2.in +3 -0
  438. itp_interface/tools/repl/test/pickle_open_scoped.expected.out +18 -0
  439. itp_interface/tools/repl/test/pickle_open_scoped.in +8 -0
  440. itp_interface/tools/repl/test/pickle_open_scoped_2.expected.out +14 -0
  441. itp_interface/tools/repl/test/pickle_open_scoped_2.in +3 -0
  442. itp_interface/tools/repl/test/pickle_proof_state_1.expected.out +26 -0
  443. itp_interface/tools/repl/test/pickle_proof_state_1.in +15 -0
  444. itp_interface/tools/repl/test/pickle_proof_state_2.expected.out +4 -0
  445. itp_interface/tools/repl/test/pickle_proof_state_2.in +3 -0
  446. itp_interface/tools/repl/test/pickle_proof_state_env.expected.out +26 -0
  447. itp_interface/tools/repl/test/pickle_proof_state_env.in +15 -0
  448. itp_interface/tools/repl/test/pickle_scoped_notation.in +16 -0
  449. itp_interface/tools/repl/test/pickle_scoped_notation_2.in +3 -0
  450. itp_interface/tools/repl/test/proof_step.expected.out +18 -0
  451. itp_interface/tools/repl/test/proof_step.in +7 -0
  452. itp_interface/tools/repl/test/readme.expected.out +16 -0
  453. itp_interface/tools/repl/test/readme.in +5 -0
  454. itp_interface/tools/repl/test/sorry_hypotheses.expected.out +16 -0
  455. itp_interface/tools/repl/test/sorry_hypotheses.in +4 -0
  456. itp_interface/tools/repl/test/synthesize_placeholder.expected.out +7 -0
  457. itp_interface/tools/repl/test/synthesize_placeholder.in +1 -0
  458. itp_interface/tools/repl/test/tactic_mode_sorry.expected.out +14 -0
  459. itp_interface/tools/repl/test/tactic_mode_sorry.in +3 -0
  460. itp_interface/tools/repl/test/tactic_sorry.expected.out +12 -0
  461. itp_interface/tools/repl/test/tactic_sorry.in +1 -0
  462. itp_interface/tools/repl/test/term_sorry.expected.out +12 -0
  463. itp_interface/tools/repl/test/term_sorry.in +1 -0
  464. itp_interface/tools/repl/test/trace_simp.expected.out +41 -0
  465. itp_interface/tools/repl/test/trace_simp.in +15 -0
  466. itp_interface/tools/repl/test/unfinished_tactic_block.expected.out +11 -0
  467. itp_interface/tools/repl/test/unfinished_tactic_block.in +1 -0
  468. itp_interface/tools/repl/test/unknown_environment.expected.out +2 -0
  469. itp_interface/tools/repl/test/unknown_environment.in +1 -0
  470. itp_interface/tools/repl/test/unknown_proof_state.expected.out +14 -0
  471. itp_interface/tools/repl/test/unknown_proof_state.in +3 -0
  472. itp_interface/tools/repl/test/unknown_tactic.expected.out +14 -0
  473. itp_interface/tools/repl/test/unknown_tactic.in +3 -0
  474. itp_interface/tools/repl/test/variables.expected.out +26 -0
  475. itp_interface/tools/repl/test/variables.in +5 -0
  476. itp_interface/tools/repl/test.sh +43 -0
  477. itp_interface/tools/run_data_generation_transforms.py +350 -0
  478. itp_interface/tools/theorem_details.py +25 -0
  479. itp_interface/tools/training_data.py +358 -0
  480. itp_interface/tools/training_data_format.py +599 -0
  481. itp_interface-1.0.0.dist-info/METADATA +78 -0
  482. itp_interface-1.0.0.dist-info/RECORD +485 -0
  483. itp_interface-1.0.0.dist-info/WHEEL +4 -0
  484. itp_interface-1.0.0.dist-info/entry_points.txt +3 -0
  485. itp_interface-1.0.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,2690 @@
1
+ name: UniMath
2
+ num_files: 1339
3
+ language: COQ
4
+ few_shot_data_path_for_retrieval: null
5
+ few_shot_metadata_filename_for_retrieval: null
6
+ dfs_data_path_for_retrieval: null
7
+ dfs_metadata_filename_for_retrieval: local.meta.json
8
+ setup_cmds:
9
+ - opam env --switch=UniMath --set-switch
10
+ datasets:
11
+ - project: <root>/data/repos/UniMath
12
+ files:
13
+ - path: UniMath/All.v
14
+ theorems: '*'
15
+ - path: UniMath/Semantics/All.v
16
+ theorems: '*'
17
+ - path: UniMath/Semantics/LinearLogic/LinearToLinearNonLinear.v
18
+ theorems: '*'
19
+ - path: UniMath/Semantics/LinearLogic/LinearCategory.v
20
+ theorems: '*'
21
+ - path: UniMath/Semantics/LinearLogic/LiftingModel.v
22
+ theorems: '*'
23
+ - path: UniMath/Semantics/LinearLogic/LinearNonLinear.v
24
+ theorems: '*'
25
+ - path: UniMath/Semantics/LinearLogic/LinearCategoryEilenbergMooreAdjunction.v
26
+ theorems: '*'
27
+ - path: UniMath/Semantics/LinearLogic/LafontCategory.v
28
+ theorems: '*'
29
+ - path: UniMath/Semantics/LinearLogic/RelationalModel.v
30
+ theorems: '*'
31
+ - path: UniMath/Semantics/EnrichedEffectCalculus/CopowerModel.v
32
+ theorems: '*'
33
+ - path: UniMath/Semantics/EnrichedEffectCalculus/EECModel.v
34
+ theorems: '*'
35
+ - path: UniMath/Semantics/EnrichedEffectCalculus/ContinuationModel.v
36
+ theorems: '*'
37
+ - path: UniMath/Foundations/Propositions.v
38
+ theorems: '*'
39
+ - path: UniMath/Foundations/PartB.v
40
+ theorems: '*'
41
+ - path: UniMath/Foundations/PartA.v
42
+ theorems: '*'
43
+ - path: UniMath/Foundations/PartD.v
44
+ theorems: '*'
45
+ - path: UniMath/Foundations/Init.v
46
+ theorems: '*'
47
+ - path: UniMath/Foundations/All.v
48
+ theorems: '*'
49
+ - path: UniMath/Foundations/Sets.v
50
+ theorems: '*'
51
+ - path: UniMath/Foundations/NaturalNumbers.v
52
+ theorems: '*'
53
+ - path: UniMath/Foundations/UnivalenceAxiom2.v
54
+ theorems: '*'
55
+ - path: UniMath/Foundations/PartC.v
56
+ theorems: '*'
57
+ - path: UniMath/Foundations/Preamble.v
58
+ theorems: '*'
59
+ - path: UniMath/Foundations/UnivalenceAxiom.v
60
+ theorems: '*'
61
+ - path: UniMath/Foundations/Tests.v
62
+ theorems: '*'
63
+ - path: UniMath/Foundations/HLevels.v
64
+ theorems: '*'
65
+ - path: UniMath/RealNumbers/Prelim.v
66
+ theorems: '*'
67
+ - path: UniMath/RealNumbers/NonnegativeReals.v
68
+ theorems: '*'
69
+ - path: UniMath/RealNumbers/Reals.v
70
+ theorems: '*'
71
+ - path: UniMath/RealNumbers/DedekindCuts.v
72
+ theorems: '*'
73
+ - path: UniMath/RealNumbers/All.v
74
+ theorems: '*'
75
+ - path: UniMath/RealNumbers/DecidableDedekindCuts.v
76
+ theorems: '*'
77
+ - path: UniMath/RealNumbers/Sets.v
78
+ theorems: '*'
79
+ - path: UniMath/RealNumbers/NonnegativeRationals.v
80
+ theorems: '*'
81
+ - path: UniMath/RealNumbers/Fields.v
82
+ theorems: '*'
83
+ - path: UniMath/Tactics/Utilities.v
84
+ theorems: '*'
85
+ - path: UniMath/Tactics/All.v
86
+ theorems: '*'
87
+ - path: UniMath/Tactics/Groups_Tactics.v
88
+ theorems: '*'
89
+ - path: UniMath/Tactics/EnsureStructuredProofs.v
90
+ theorems: '*'
91
+ - path: UniMath/Tactics/Abmonoids_Tactics.v
92
+ theorems: '*'
93
+ - path: UniMath/Tactics/Monoids_Tactics.v
94
+ theorems: '*'
95
+ - path: UniMath/Tactics/Nat_Tactics.v
96
+ theorems: '*'
97
+ - path: UniMath/AlgebraicGeometry/All.v
98
+ theorems: '*'
99
+ - path: UniMath/AlgebraicGeometry/Spec.v
100
+ theorems: '*'
101
+ - path: UniMath/AlgebraicGeometry/Topology.v
102
+ theorems: '*'
103
+ - path: UniMath/AlgebraicGeometry/SheavesOfRings.v
104
+ theorems: '*'
105
+ - path: UniMath/Ktheory/GrothendieckGroup.v
106
+ theorems: '*'
107
+ - path: UniMath/Ktheory/All.v
108
+ theorems: '*'
109
+ - path: UniMath/CategoryTheory/PrecompEquivalence.v
110
+ theorems: '*'
111
+ - path: UniMath/CategoryTheory/Groupoids.v
112
+ theorems: '*'
113
+ - path: UniMath/CategoryTheory/PowerObject.v
114
+ theorems: '*'
115
+ - path: UniMath/CategoryTheory/PointedFunctors.v
116
+ theorems: '*'
117
+ - path: UniMath/CategoryTheory/SimplicialSets.v
118
+ theorems: '*'
119
+ - path: UniMath/CategoryTheory/UnitorsAndAssociatorsForEndofunctors.v
120
+ theorems: '*'
121
+ - path: UniMath/CategoryTheory/RightKanExtension.v
122
+ theorems: '*'
123
+ - path: UniMath/CategoryTheory/FunctorCategory.v
124
+ theorems: '*'
125
+ - path: UniMath/CategoryTheory/PreAdditive.v
126
+ theorems: '*'
127
+ - path: UniMath/CategoryTheory/Abelian.v
128
+ theorems: '*'
129
+ - path: UniMath/CategoryTheory/PrecategoryBinProduct.v
130
+ theorems: '*'
131
+ - path: UniMath/CategoryTheory/Presheaf.v
132
+ theorems: '*'
133
+ - path: UniMath/CategoryTheory/CategoricalRecursionSchemes.v
134
+ theorems: '*'
135
+ - path: UniMath/CategoryTheory/precomp_ess_surj.v
136
+ theorems: '*'
137
+ - path: UniMath/CategoryTheory/HomotopicalCategory.v
138
+ theorems: '*'
139
+ - path: UniMath/CategoryTheory/NNO.v
140
+ theorems: '*'
141
+ - path: UniMath/CategoryTheory/CategorySum.v
142
+ theorems: '*'
143
+ - path: UniMath/CategoryTheory/FunctorCoalgebras.v
144
+ theorems: '*'
145
+ - path: UniMath/CategoryTheory/PseudoElements.v
146
+ theorems: '*'
147
+ - path: UniMath/CategoryTheory/HorizontalComposition.v
148
+ theorems: '*'
149
+ - path: UniMath/CategoryTheory/UnderCategories.v
150
+ theorems: '*'
151
+ - path: UniMath/CategoryTheory/ElementsOp.v
152
+ theorems: '*'
153
+ - path: UniMath/CategoryTheory/AbelianPushoutPullback.v
154
+ theorems: '*'
155
+ - path: UniMath/CategoryTheory/yoneda.v
156
+ theorems: '*'
157
+ - path: UniMath/CategoryTheory/Retracts.v
158
+ theorems: '*'
159
+ - path: UniMath/CategoryTheory/CompletelyIterativeAlgebras.v
160
+ theorems: '*'
161
+ - path: UniMath/CategoryTheory/CategoryEquality.v
162
+ theorems: '*'
163
+ - path: UniMath/CategoryTheory/exponentials.v
164
+ theorems: '*'
165
+ - path: UniMath/CategoryTheory/BicatOfCatsElementary.v
166
+ theorems: '*'
167
+ - path: UniMath/CategoryTheory/FunctorAlgebras.v
168
+ theorems: '*'
169
+ - path: UniMath/CategoryTheory/All.v
170
+ theorems: '*'
171
+ - path: UniMath/CategoryTheory/ProductCategory.v
172
+ theorems: '*'
173
+ - path: UniMath/CategoryTheory/FiveLemma.v
174
+ theorems: '*'
175
+ - path: UniMath/CategoryTheory/Subobjects.v
176
+ theorems: '*'
177
+ - path: UniMath/CategoryTheory/Connected.v
178
+ theorems: '*'
179
+ - path: UniMath/CategoryTheory/AbelianToAdditive.v
180
+ theorems: '*'
181
+ - path: UniMath/CategoryTheory/ShortExactSequences.v
182
+ theorems: '*'
183
+ - path: UniMath/CategoryTheory/LatticeObject.v
184
+ theorems: '*'
185
+ - path: UniMath/CategoryTheory/ExponentiationLeftAdjoint.v
186
+ theorems: '*'
187
+ - path: UniMath/CategoryTheory/SplitMonicsAndEpis.v
188
+ theorems: '*'
189
+ - path: UniMath/CategoryTheory/CategoriesWithBinOps.v
190
+ theorems: '*'
191
+ - path: UniMath/CategoryTheory/SetValuedFunctors.v
192
+ theorems: '*'
193
+ - path: UniMath/CategoryTheory/Additive.v
194
+ theorems: '*'
195
+ - path: UniMath/CategoryTheory/whiskering.v
196
+ theorems: '*'
197
+ - path: UniMath/CategoryTheory/WeakEquivalences.v
198
+ theorems: '*'
199
+ - path: UniMath/CategoryTheory/IsoCommaCategory.v
200
+ theorems: '*'
201
+ - path: UniMath/CategoryTheory/Quotobjects.v
202
+ theorems: '*'
203
+ - path: UniMath/CategoryTheory/Actions.v
204
+ theorems: '*'
205
+ - path: UniMath/CategoryTheory/catiso.v
206
+ theorems: '*'
207
+ - path: UniMath/CategoryTheory/AdditiveFunctors.v
208
+ theorems: '*'
209
+ - path: UniMath/CategoryTheory/opp_precat.v
210
+ theorems: '*'
211
+ - path: UniMath/CategoryTheory/PrecategoriesWithAbgrops.v
212
+ theorems: '*'
213
+ - path: UniMath/CategoryTheory/CommaCategories.v
214
+ theorems: '*'
215
+ - path: UniMath/CategoryTheory/Core.v
216
+ theorems: '*'
217
+ - path: UniMath/CategoryTheory/Epis.v
218
+ theorems: '*'
219
+ - path: UniMath/CategoryTheory/category_binops.v
220
+ theorems: '*'
221
+ - path: UniMath/CategoryTheory/RezkCompletion.v
222
+ theorems: '*'
223
+ - path: UniMath/CategoryTheory/Monics.v
224
+ theorems: '*'
225
+ - path: UniMath/CategoryTheory/PointedFunctorsComposition.v
226
+ theorems: '*'
227
+ - path: UniMath/CategoryTheory/Elements.v
228
+ theorems: '*'
229
+ - path: UniMath/CategoryTheory/ElementaryTopos.v
230
+ theorems: '*'
231
+ - path: UniMath/CategoryTheory/ArrowCategory.v
232
+ theorems: '*'
233
+ - path: UniMath/CategoryTheory/covyoneda.v
234
+ theorems: '*'
235
+ - path: UniMath/CategoryTheory/YonedaBinproducts.v
236
+ theorems: '*'
237
+ - path: UniMath/CategoryTheory/LocalizingClass.v
238
+ theorems: '*'
239
+ - path: UniMath/CategoryTheory/elems_slice_equiv.v
240
+ theorems: '*'
241
+ - path: UniMath/CategoryTheory/LeftKanExtension.v
242
+ theorems: '*'
243
+ - path: UniMath/CategoryTheory/EpiFacts.v
244
+ theorems: '*'
245
+ - path: UniMath/CategoryTheory/precomp_fully_faithful.v
246
+ theorems: '*'
247
+ - path: UniMath/CategoryTheory/Morphisms.v
248
+ theorems: '*'
249
+ - path: UniMath/CategoryTheory/GrothendieckTopos.v
250
+ theorems: '*'
251
+ - path: UniMath/CategoryTheory/coslicecat.v
252
+ theorems: '*'
253
+ - path: UniMath/CategoryTheory/rezk_completion.v
254
+ theorems: '*'
255
+ - path: UniMath/CategoryTheory/ZigZag.v
256
+ theorems: '*'
257
+ - path: UniMath/CategoryTheory/slicecat.v
258
+ theorems: '*'
259
+ - path: UniMath/CategoryTheory/DisplayedCats/Functors.v
260
+ theorems: '*'
261
+ - path: UniMath/CategoryTheory/DisplayedCats/FunctorCategory.v
262
+ theorems: '*'
263
+ - path: UniMath/CategoryTheory/DisplayedCats/EquivalenceOverId.v
264
+ theorems: '*'
265
+ - path: UniMath/CategoryTheory/DisplayedCats/ComprehensionC.v
266
+ theorems: '*'
267
+ - path: UniMath/CategoryTheory/DisplayedCats/StreetOpFibration.v
268
+ theorems: '*'
269
+ - path: UniMath/CategoryTheory/DisplayedCats/Fibrations.v
270
+ theorems: '*'
271
+ - path: UniMath/CategoryTheory/DisplayedCats/Univalence.v
272
+ theorems: '*'
273
+ - path: UniMath/CategoryTheory/DisplayedCats/Equivalences.v
274
+ theorems: '*'
275
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples.v
276
+ theorems: '*'
277
+ - path: UniMath/CategoryTheory/DisplayedCats/Isos.v
278
+ theorems: '*'
279
+ - path: UniMath/CategoryTheory/DisplayedCats/DisplayedCatEq.v
280
+ theorems: '*'
281
+ - path: UniMath/CategoryTheory/DisplayedCats/SIP.v
282
+ theorems: '*'
283
+ - path: UniMath/CategoryTheory/DisplayedCats/ReindexingForward.v
284
+ theorems: '*'
285
+ - path: UniMath/CategoryTheory/DisplayedCats/Total.v
286
+ theorems: '*'
287
+ - path: UniMath/CategoryTheory/DisplayedCats/StreetFibration.v
288
+ theorems: '*'
289
+ - path: UniMath/CategoryTheory/DisplayedCats/FullyFaithfulDispFunctor.v
290
+ theorems: '*'
291
+ - path: UniMath/CategoryTheory/DisplayedCats/Limits.v
292
+ theorems: '*'
293
+ - path: UniMath/CategoryTheory/DisplayedCats/Adjunctions.v
294
+ theorems: '*'
295
+ - path: UniMath/CategoryTheory/DisplayedCats/CatIsoDisplayed.v
296
+ theorems: '*'
297
+ - path: UniMath/CategoryTheory/DisplayedCats/NaturalTransformations.v
298
+ theorems: '*'
299
+ - path: UniMath/CategoryTheory/DisplayedCats/Core.v
300
+ theorems: '*'
301
+ - path: UniMath/CategoryTheory/DisplayedCats/Constructions.v
302
+ theorems: '*'
303
+ - path: UniMath/CategoryTheory/DisplayedCats/TotalAdjunction.v
304
+ theorems: '*'
305
+ - path: UniMath/CategoryTheory/DisplayedCats/Fiber.v
306
+ theorems: '*'
307
+ - path: UniMath/CategoryTheory/DisplayedCats/Projection.v
308
+ theorems: '*'
309
+ - path: UniMath/CategoryTheory/DisplayedCats/TotalCategoryFacts.v
310
+ theorems: '*'
311
+ - path: UniMath/CategoryTheory/DisplayedCats/DisplayedFunctorEq.v
312
+ theorems: '*'
313
+ - path: UniMath/CategoryTheory/DisplayedCats/Binproducts.v
314
+ theorems: '*'
315
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain.v
316
+ theorems: '*'
317
+ - path: UniMath/CategoryTheory/DisplayedCats/MoreFibrations/DisplayedDisplayedCats.v
318
+ theorems: '*'
319
+ - path: UniMath/CategoryTheory/DisplayedCats/MoreFibrations/Prefibrations.v
320
+ theorems: '*'
321
+ - path: UniMath/CategoryTheory/DisplayedCats/MoreFibrations/DispCatsEquivFunctors.v
322
+ theorems: '*'
323
+ - path: UniMath/CategoryTheory/DisplayedCats/MoreFibrations/FibrationsCharacterisation.v
324
+ theorems: '*'
325
+ - path: UniMath/CategoryTheory/DisplayedCats/MoreFibrations/CartesiannessOfComposites.v
326
+ theorems: '*'
327
+ - path: UniMath/CategoryTheory/DisplayedCats/Fiberwise/FiberwiseSubobjectClassifier.v
328
+ theorems: '*'
329
+ - path: UniMath/CategoryTheory/DisplayedCats/Fiberwise/DualBeckChevalley.v
330
+ theorems: '*'
331
+ - path: UniMath/CategoryTheory/DisplayedCats/Fiberwise/FiberwiseTerminal.v
332
+ theorems: '*'
333
+ - path: UniMath/CategoryTheory/DisplayedCats/Fiberwise/DependentProducts.v
334
+ theorems: '*'
335
+ - path: UniMath/CategoryTheory/DisplayedCats/Fiberwise/DependentSums.v
336
+ theorems: '*'
337
+ - path: UniMath/CategoryTheory/DisplayedCats/Fiberwise/FiberwiseProducts.v
338
+ theorems: '*'
339
+ - path: UniMath/CategoryTheory/DisplayedCats/Fiberwise/FiberwiseEqualizers.v
340
+ theorems: '*'
341
+ - path: UniMath/CategoryTheory/DisplayedCats/Structures/StructuresSmashProduct.v
342
+ theorems: '*'
343
+ - path: UniMath/CategoryTheory/DisplayedCats/Structures/CartesianStructure.v
344
+ theorems: '*'
345
+ - path: UniMath/CategoryTheory/DisplayedCats/Structures/StructureLimitsAndColimits.v
346
+ theorems: '*'
347
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/ColimitProperties.v
348
+ theorems: '*'
349
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/CodLimits.v
350
+ theorems: '*'
351
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/CodSubobjectClassifier.v
352
+ theorems: '*'
353
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/IteratedSlice.v
354
+ theorems: '*'
355
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/CodRightAdjoint.v
356
+ theorems: '*'
357
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/FiberCod.v
358
+ theorems: '*'
359
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/CodMorphisms.v
360
+ theorems: '*'
361
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/CodLeftAdjoint.v
362
+ theorems: '*'
363
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/CodColimits.v
364
+ theorems: '*'
365
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/CodRegular.v
366
+ theorems: '*'
367
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/CodDomain.v
368
+ theorems: '*'
369
+ - path: UniMath/CategoryTheory/DisplayedCats/Codomain/CodFunctor.v
370
+ theorems: '*'
371
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/PointedPosetStrict.v
372
+ theorems: '*'
373
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/PointedDCPOStructures.v
374
+ theorems: '*'
375
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/StrictTwoSidedDispCat.v
376
+ theorems: '*'
377
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/DispFunctorPair.v
378
+ theorems: '*'
379
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/SetStructures.v
380
+ theorems: '*'
381
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/Cartesian.v
382
+ theorems: '*'
383
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/PointedDCPOStrict.v
384
+ theorems: '*'
385
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/UnitalBinop.v
386
+ theorems: '*'
387
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/PointedSetStructures.v
388
+ theorems: '*'
389
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/PosetStructures.v
390
+ theorems: '*'
391
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/PointedPosetStructures.v
392
+ theorems: '*'
393
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/Arrow.v
394
+ theorems: '*'
395
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/CategoryOfPosets.v
396
+ theorems: '*'
397
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/AlgebraStructures.v
398
+ theorems: '*'
399
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/Opposite.v
400
+ theorems: '*'
401
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/Sigma.v
402
+ theorems: '*'
403
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/DCPOStructures.v
404
+ theorems: '*'
405
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/Three.v
406
+ theorems: '*'
407
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/Reindexing.v
408
+ theorems: '*'
409
+ - path: UniMath/CategoryTheory/DisplayedCats/Examples/MonadAlgebras.v
410
+ theorems: '*'
411
+ - path: UniMath/CategoryTheory/Inductives/Trees.v
412
+ theorems: '*'
413
+ - path: UniMath/CategoryTheory/Inductives/Lists.v
414
+ theorems: '*'
415
+ - path: UniMath/CategoryTheory/Inductives/LambdaCalculus.v
416
+ theorems: '*'
417
+ - path: UniMath/CategoryTheory/Inductives/PropositionalLogic.v
418
+ theorems: '*'
419
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/TransportLaws.v
420
+ theorems: '*'
421
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Discrete.v
422
+ theorems: '*'
423
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/TwoSidedFibration.v
424
+ theorems: '*'
425
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Strictness.v
426
+ theorems: '*'
427
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Univalence.v
428
+ theorems: '*'
429
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Isos.v
430
+ theorems: '*'
431
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/TwoSidedDispCat.v
432
+ theorems: '*'
433
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Total.v
434
+ theorems: '*'
435
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/DisplayedNatTrans.v
436
+ theorems: '*'
437
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Fiber.v
438
+ theorems: '*'
439
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/DisplayedFunctor.v
440
+ theorems: '*'
441
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/DispCatOnTwoSidedDispCat.v
442
+ theorems: '*'
443
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/FiberwiseProduct.v
444
+ theorems: '*'
445
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/Bimodules.v
446
+ theorems: '*'
447
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/Reindex.v
448
+ theorems: '*'
449
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/SquaresTwoCat.v
450
+ theorems: '*'
451
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/ProfunctorTwosidedDispCat.v
452
+ theorems: '*'
453
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/ProdOfTwosidedDispCat.v
454
+ theorems: '*'
455
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/Constant.v
456
+ theorems: '*'
457
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/IsoComma.v
458
+ theorems: '*'
459
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/Opposites.v
460
+ theorems: '*'
461
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/Arrow.v
462
+ theorems: '*'
463
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/Relations.v
464
+ theorems: '*'
465
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/Product.v
466
+ theorems: '*'
467
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/Profunctor.v
468
+ theorems: '*'
469
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/Comma.v
470
+ theorems: '*'
471
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/TwoSidedDispCatOnDispCat.v
472
+ theorems: '*'
473
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/Lenses.v
474
+ theorems: '*'
475
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/ParaTwoSidedDispCat.v
476
+ theorems: '*'
477
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/StructuredCospans.v
478
+ theorems: '*'
479
+ - path: UniMath/CategoryTheory/TwoSidedDisplayedCats/Examples/Spans.v
480
+ theorems: '*'
481
+ - path: UniMath/CategoryTheory/Monads/ComonadCoalgebras.v
482
+ theorems: '*'
483
+ - path: UniMath/CategoryTheory/Monads/KleisliCategory.v
484
+ theorems: '*'
485
+ - path: UniMath/CategoryTheory/Monads/Comonads.v
486
+ theorems: '*'
487
+ - path: UniMath/CategoryTheory/Monads/Monads.v
488
+ theorems: '*'
489
+ - path: UniMath/CategoryTheory/Monads/KTriples.v
490
+ theorems: '*'
491
+ - path: UniMath/CategoryTheory/Monads/RelMonads_Coreflection.v
492
+ theorems: '*'
493
+ - path: UniMath/CategoryTheory/Monads/Kleisli.v
494
+ theorems: '*'
495
+ - path: UniMath/CategoryTheory/Monads/RelativeModules.v
496
+ theorems: '*'
497
+ - path: UniMath/CategoryTheory/Monads/Derivative.v
498
+ theorems: '*'
499
+ - path: UniMath/CategoryTheory/Monads/KTriplesEquiv.v
500
+ theorems: '*'
501
+ - path: UniMath/CategoryTheory/Monads/LModules.v
502
+ theorems: '*'
503
+ - path: UniMath/CategoryTheory/Monads/MonadAlgebras.v
504
+ theorems: '*'
505
+ - path: UniMath/CategoryTheory/Monads/RelativeMonads.v
506
+ theorems: '*'
507
+ - path: UniMath/CategoryTheory/ExactCategories/ExactCategories.v
508
+ theorems: '*'
509
+ - path: UniMath/CategoryTheory/ExactCategories/Tests.v
510
+ theorems: '*'
511
+ - path: UniMath/CategoryTheory/Actegories/MorphismsOfActegories.v
512
+ theorems: '*'
513
+ - path: UniMath/CategoryTheory/Actegories/ProductsInActegories.v
514
+ theorems: '*'
515
+ - path: UniMath/CategoryTheory/Actegories/CoproductsInActegories.v
516
+ theorems: '*'
517
+ - path: UniMath/CategoryTheory/Actegories/ConstructionOfActegories.v
518
+ theorems: '*'
519
+ - path: UniMath/CategoryTheory/Actegories/ProductActegory.v
520
+ theorems: '*'
521
+ - path: UniMath/CategoryTheory/Actegories/ConstructionOfActegoryMorphisms.v
522
+ theorems: '*'
523
+ - path: UniMath/CategoryTheory/Actegories/Actegories.v
524
+ theorems: '*'
525
+ - path: UniMath/CategoryTheory/Actegories/ActionBasedStrongMonads.v
526
+ theorems: '*'
527
+ - path: UniMath/CategoryTheory/Actegories/Examples/ActionOfEndomorphismsInCATElementary.v
528
+ theorems: '*'
529
+ - path: UniMath/CategoryTheory/Actegories/Examples/SelfActionInCATElementary.v
530
+ theorems: '*'
531
+ - path: UniMath/CategoryTheory/Profunctors/Squares.v
532
+ theorems: '*'
533
+ - path: UniMath/CategoryTheory/Profunctors/Examples.v
534
+ theorems: '*'
535
+ - path: UniMath/CategoryTheory/Profunctors/Transformation.v
536
+ theorems: '*'
537
+ - path: UniMath/CategoryTheory/Profunctors/Core.v
538
+ theorems: '*'
539
+ - path: UniMath/CategoryTheory/SubobjectClassifier/PreservesSubobjectClassifier.v
540
+ theorems: '*'
541
+ - path: UniMath/CategoryTheory/SubobjectClassifier/SubobjectClassifier.v
542
+ theorems: '*'
543
+ - path: UniMath/CategoryTheory/SubobjectClassifier/SubobjectClassifierIso.v
544
+ theorems: '*'
545
+ - path: UniMath/CategoryTheory/Monoidal/Functors.v
546
+ theorems: '*'
547
+ - path: UniMath/CategoryTheory/Monoidal/WhiskeredBifunctors.v
548
+ theorems: '*'
549
+ - path: UniMath/CategoryTheory/Monoidal/FunctorCategories.v
550
+ theorems: '*'
551
+ - path: UniMath/CategoryTheory/Monoidal/StrongMonad.v
552
+ theorems: '*'
553
+ - path: UniMath/CategoryTheory/Monoidal/Adjunctions.v
554
+ theorems: '*'
555
+ - path: UniMath/CategoryTheory/Monoidal/CategoriesOfMonoids.v
556
+ theorems: '*'
557
+ - path: UniMath/CategoryTheory/Monoidal/Categories.v
558
+ theorems: '*'
559
+ - path: UniMath/CategoryTheory/Monoidal/RezkCompletion/LiftedUnitors.v
560
+ theorems: '*'
561
+ - path: UniMath/CategoryTheory/Monoidal/RezkCompletion/LiftedMonoidal.v
562
+ theorems: '*'
563
+ - path: UniMath/CategoryTheory/Monoidal/RezkCompletion/MonoidalRezkCompletion.v
564
+ theorems: '*'
565
+ - path: UniMath/CategoryTheory/Monoidal/RezkCompletion/LiftedAssociator.v
566
+ theorems: '*'
567
+ - path: UniMath/CategoryTheory/Monoidal/RezkCompletion/LiftedTensorUnit.v
568
+ theorems: '*'
569
+ - path: UniMath/CategoryTheory/Monoidal/RezkCompletion/LiftedTensor.v
570
+ theorems: '*'
571
+ - path: UniMath/CategoryTheory/Monoidal/Comonoids/Symmetric.v
572
+ theorems: '*'
573
+ - path: UniMath/CategoryTheory/Monoidal/Comonoids/Tensor.v
574
+ theorems: '*'
575
+ - path: UniMath/CategoryTheory/Monoidal/Comonoids/MonoidalCartesianBuilder.v
576
+ theorems: '*'
577
+ - path: UniMath/CategoryTheory/Monoidal/Comonoids/TransportComonoidAlongRetraction.v
578
+ theorems: '*'
579
+ - path: UniMath/CategoryTheory/Monoidal/Comonoids/CartesianAsComonoids.v
580
+ theorems: '*'
581
+ - path: UniMath/CategoryTheory/Monoidal/Comonoids/CommComonoidsCartesian.v
582
+ theorems: '*'
583
+ - path: UniMath/CategoryTheory/Monoidal/Comonoids/Category.v
584
+ theorems: '*'
585
+ - path: UniMath/CategoryTheory/Monoidal/Comonoids/Monoidal.v
586
+ theorems: '*'
587
+ - path: UniMath/CategoryTheory/Monoidal/Displayed/Symmetric.v
588
+ theorems: '*'
589
+ - path: UniMath/CategoryTheory/Monoidal/Displayed/TransportLemmas.v
590
+ theorems: '*'
591
+ - path: UniMath/CategoryTheory/Monoidal/Displayed/MonoidalSections.v
592
+ theorems: '*'
593
+ - path: UniMath/CategoryTheory/Monoidal/Displayed/TotalMonoidal.v
594
+ theorems: '*'
595
+ - path: UniMath/CategoryTheory/Monoidal/Displayed/SymmetricMonoidalBuilder.v
596
+ theorems: '*'
597
+ - path: UniMath/CategoryTheory/Monoidal/Displayed/WhiskeredDisplayedBifunctors.v
598
+ theorems: '*'
599
+ - path: UniMath/CategoryTheory/Monoidal/Displayed/MonoidalFunctorLifting.v
600
+ theorems: '*'
601
+ - path: UniMath/CategoryTheory/Monoidal/Displayed/Monoidal.v
602
+ theorems: '*'
603
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/AugmentedSimplexCategory.v
604
+ theorems: '*'
605
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/MonoidalCategoriesTensored.v
606
+ theorems: '*'
607
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/EquivalenceWhiskeredNonCurriedMonoidalCategories.v
608
+ theorems: '*'
609
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/MonoidalCategoriesCurried.v
610
+ theorems: '*'
611
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/TotalDisplayedMonoidalCurried.v
612
+ theorems: '*'
613
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/BraidedMonoidalCategories.v
614
+ theorems: '*'
615
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/MonoidalFunctorCategory.v
616
+ theorems: '*'
617
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/DisplayedMonoidalCurried.v
618
+ theorems: '*'
619
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/DisplayedMonoidalTensored.v
620
+ theorems: '*'
621
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/MonoidalCategoriesReordered.v
622
+ theorems: '*'
623
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/MonoidalFunctorsCurried.v
624
+ theorems: '*'
625
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/CategoriesOfMonoids.v
626
+ theorems: '*'
627
+ - path: UniMath/CategoryTheory/Monoidal/AlternativeDefinitions/MonoidalFunctorsTensored.v
628
+ theorems: '*'
629
+ - path: UniMath/CategoryTheory/Monoidal/Examples/EndofunctorsMonoidalElementary.v
630
+ theorems: '*'
631
+ - path: UniMath/CategoryTheory/Monoidal/Examples/SmashProductMonoidal.v
632
+ theorems: '*'
633
+ - path: UniMath/CategoryTheory/Monoidal/Examples/SetWithSubset.v
634
+ theorems: '*'
635
+ - path: UniMath/CategoryTheory/Monoidal/Examples/PosetsMonoidal.v
636
+ theorems: '*'
637
+ - path: UniMath/CategoryTheory/Monoidal/Examples/StructuresMonoidal.v
638
+ theorems: '*'
639
+ - path: UniMath/CategoryTheory/Monoidal/Examples/DisplayedCartesianMonoidal.v
640
+ theorems: '*'
641
+ - path: UniMath/CategoryTheory/Monoidal/Examples/SymmetricMonoidalDialgebras.v
642
+ theorems: '*'
643
+ - path: UniMath/CategoryTheory/Monoidal/Examples/LiftPoset.v
644
+ theorems: '*'
645
+ - path: UniMath/CategoryTheory/Monoidal/Examples/MonadsAsMonoidsElementary.v
646
+ theorems: '*'
647
+ - path: UniMath/CategoryTheory/Monoidal/Examples/ConstantFunctor.v
648
+ theorems: '*'
649
+ - path: UniMath/CategoryTheory/Monoidal/Examples/MonoidalPointedObjects.v
650
+ theorems: '*'
651
+ - path: UniMath/CategoryTheory/Monoidal/Examples/PointedSetCartesianMonoidal.v
652
+ theorems: '*'
653
+ - path: UniMath/CategoryTheory/Monoidal/Examples/SetCartesianMonoidal.v
654
+ theorems: '*'
655
+ - path: UniMath/CategoryTheory/Monoidal/Examples/MonoidalDialgebras.v
656
+ theorems: '*'
657
+ - path: UniMath/CategoryTheory/Monoidal/Examples/SymmetricMonoidalCoEilenbergMoore.v
658
+ theorems: '*'
659
+ - path: UniMath/CategoryTheory/Monoidal/Examples/BinopCartesianMonoidal.v
660
+ theorems: '*'
661
+ - path: UniMath/CategoryTheory/Monoidal/Examples/Relations.v
662
+ theorems: '*'
663
+ - path: UniMath/CategoryTheory/Monoidal/Examples/DiagonalFunctor.v
664
+ theorems: '*'
665
+ - path: UniMath/CategoryTheory/Monoidal/Examples/CartesianMonoidal.v
666
+ theorems: '*'
667
+ - path: UniMath/CategoryTheory/Monoidal/Examples/Sigma.v
668
+ theorems: '*'
669
+ - path: UniMath/CategoryTheory/Monoidal/Examples/Fullsub.v
670
+ theorems: '*'
671
+ - path: UniMath/CategoryTheory/Monoidal/Structure/Symmetric.v
672
+ theorems: '*'
673
+ - path: UniMath/CategoryTheory/Monoidal/Structure/Closed.v
674
+ theorems: '*'
675
+ - path: UniMath/CategoryTheory/Monoidal/Structure/Cartesian.v
676
+ theorems: '*'
677
+ - path: UniMath/CategoryTheory/Monoidal/Structure/SymmetricDiagonal.v
678
+ theorems: '*'
679
+ - path: UniMath/CategoryTheory/GrothendieckConstruction/IsOpfibration.v
680
+ theorems: '*'
681
+ - path: UniMath/CategoryTheory/GrothendieckConstruction/TotalCategory.v
682
+ theorems: '*'
683
+ - path: UniMath/CategoryTheory/GrothendieckConstruction/IsosInTotal.v
684
+ theorems: '*'
685
+ - path: UniMath/CategoryTheory/GrothendieckConstruction/IsPullback.v
686
+ theorems: '*'
687
+ - path: UniMath/CategoryTheory/GrothendieckConstruction/Projection.v
688
+ theorems: '*'
689
+ - path: UniMath/CategoryTheory/Categories/Module.v
690
+ theorems: '*'
691
+ - path: UniMath/CategoryTheory/Categories/Commring.v
692
+ theorems: '*'
693
+ - path: UniMath/CategoryTheory/Categories/Abgr.v
694
+ theorems: '*'
695
+ - path: UniMath/CategoryTheory/Categories/Rig.v
696
+ theorems: '*'
697
+ - path: UniMath/CategoryTheory/Categories/KleisliCategory.v
698
+ theorems: '*'
699
+ - path: UniMath/CategoryTheory/Categories/Woset.v
700
+ theorems: '*'
701
+ - path: UniMath/CategoryTheory/Categories/StandardCategories.v
702
+ theorems: '*'
703
+ - path: UniMath/CategoryTheory/Categories/CategoryOfSetCategories.v
704
+ theorems: '*'
705
+ - path: UniMath/CategoryTheory/Categories/Dialgebras.v
706
+ theorems: '*'
707
+ - path: UniMath/CategoryTheory/Categories/Abmonoid.v
708
+ theorems: '*'
709
+ - path: UniMath/CategoryTheory/Categories/CatIsoInserter.v
710
+ theorems: '*'
711
+ - path: UniMath/CategoryTheory/Categories/Graph.v
712
+ theorems: '*'
713
+ - path: UniMath/CategoryTheory/Categories/SetWith2BinOp.v
714
+ theorems: '*'
715
+ - path: UniMath/CategoryTheory/Categories/Monoid.v
716
+ theorems: '*'
717
+ - path: UniMath/CategoryTheory/Categories/Fld.v
718
+ theorems: '*'
719
+ - path: UniMath/CategoryTheory/Categories/CGraph.v
720
+ theorems: '*'
721
+ - path: UniMath/CategoryTheory/Categories/Ring.v
722
+ theorems: '*'
723
+ - path: UniMath/CategoryTheory/Categories/EilenbergMoore.v
724
+ theorems: '*'
725
+ - path: UniMath/CategoryTheory/Categories/Rel.v
726
+ theorems: '*'
727
+ - path: UniMath/CategoryTheory/Categories/Intdom.v
728
+ theorems: '*'
729
+ - path: UniMath/CategoryTheory/Categories/CartesianCubicalSets.v
730
+ theorems: '*'
731
+ - path: UniMath/CategoryTheory/Categories/Gr.v
732
+ theorems: '*'
733
+ - path: UniMath/CategoryTheory/Categories/FinSet.v
734
+ theorems: '*'
735
+ - path: UniMath/CategoryTheory/Categories/PreorderCategories.v
736
+ theorems: '*'
737
+ - path: UniMath/CategoryTheory/Categories/CoEilenbergMoore.v
738
+ theorems: '*'
739
+ - path: UniMath/CategoryTheory/Categories/Commrig.v
740
+ theorems: '*'
741
+ - path: UniMath/CategoryTheory/Categories/Type/Colimits.v
742
+ theorems: '*'
743
+ - path: UniMath/CategoryTheory/Categories/Type/MonoEpiIso.v
744
+ theorems: '*'
745
+ - path: UniMath/CategoryTheory/Categories/Type/Univalence.v
746
+ theorems: '*'
747
+ - path: UniMath/CategoryTheory/Categories/Type/Structures.v
748
+ theorems: '*'
749
+ - path: UniMath/CategoryTheory/Categories/Type/Limits.v
750
+ theorems: '*'
751
+ - path: UniMath/CategoryTheory/Categories/Type/Core.v
752
+ theorems: '*'
753
+ - path: UniMath/CategoryTheory/Categories/HSET/Colimits.v
754
+ theorems: '*'
755
+ - path: UniMath/CategoryTheory/Categories/HSET/Slice.v
756
+ theorems: '*'
757
+ - path: UniMath/CategoryTheory/Categories/HSET/MonoEpiIso.v
758
+ theorems: '*'
759
+ - path: UniMath/CategoryTheory/Categories/HSET/All.v
760
+ theorems: '*'
761
+ - path: UniMath/CategoryTheory/Categories/HSET/Univalence.v
762
+ theorems: '*'
763
+ - path: UniMath/CategoryTheory/Categories/HSET/Structures.v
764
+ theorems: '*'
765
+ - path: UniMath/CategoryTheory/Categories/HSET/FilteredColimits.v
766
+ theorems: '*'
767
+ - path: UniMath/CategoryTheory/Categories/HSET/SliceFamEquiv.v
768
+ theorems: '*'
769
+ - path: UniMath/CategoryTheory/Categories/HSET/SetCoends.v
770
+ theorems: '*'
771
+ - path: UniMath/CategoryTheory/Categories/HSET/Limits.v
772
+ theorems: '*'
773
+ - path: UniMath/CategoryTheory/Categories/HSET/Core.v
774
+ theorems: '*'
775
+ - path: UniMath/CategoryTheory/Categories/Universal_Algebra/EqAlgebras.v
776
+ theorems: '*'
777
+ - path: UniMath/CategoryTheory/Categories/Universal_Algebra/Algebras.v
778
+ theorems: '*'
779
+ - path: UniMath/CategoryTheory/Limits/Coproducts.v
780
+ theorems: '*'
781
+ - path: UniMath/CategoryTheory/Limits/BinDirectSums.v
782
+ theorems: '*'
783
+ - path: UniMath/CategoryTheory/Limits/PullbacksSliceProductsEquiv.v
784
+ theorems: '*'
785
+ - path: UniMath/CategoryTheory/Limits/Opp.v
786
+ theorems: '*'
787
+ - path: UniMath/CategoryTheory/Limits/Cokernels.v
788
+ theorems: '*'
789
+ - path: UniMath/CategoryTheory/Limits/Preservation.v
790
+ theorems: '*'
791
+ - path: UniMath/CategoryTheory/Limits/Coequalizers.v
792
+ theorems: '*'
793
+ - path: UniMath/CategoryTheory/Limits/StandardDiagrams.v
794
+ theorems: '*'
795
+ - path: UniMath/CategoryTheory/Limits/FinOrdProducts.v
796
+ theorems: '*'
797
+ - path: UniMath/CategoryTheory/Limits/LimitIso.v
798
+ theorems: '*'
799
+ - path: UniMath/CategoryTheory/Limits/FinOrdCoproducts.v
800
+ theorems: '*'
801
+ - path: UniMath/CategoryTheory/Limits/Products.v
802
+ theorems: '*'
803
+ - path: UniMath/CategoryTheory/Limits/StrictInitial.v
804
+ theorems: '*'
805
+ - path: UniMath/CategoryTheory/Limits/PullbackConstructions.v
806
+ theorems: '*'
807
+ - path: UniMath/CategoryTheory/Limits/Zero.v
808
+ theorems: '*'
809
+ - path: UniMath/CategoryTheory/Limits/DisjointBinCoproducts.v
810
+ theorems: '*'
811
+ - path: UniMath/CategoryTheory/Limits/Terminal.v
812
+ theorems: '*'
813
+ - path: UniMath/CategoryTheory/Limits/BinCoproducts.v
814
+ theorems: '*'
815
+ - path: UniMath/CategoryTheory/Limits/Filtered.v
816
+ theorems: '*'
817
+ - path: UniMath/CategoryTheory/Limits/Initial.v
818
+ theorems: '*'
819
+ - path: UniMath/CategoryTheory/Limits/Ends.v
820
+ theorems: '*'
821
+ - path: UniMath/CategoryTheory/Limits/Cones.v
822
+ theorems: '*'
823
+ - path: UniMath/CategoryTheory/Limits/PreservationProperties.v
824
+ theorems: '*'
825
+ - path: UniMath/CategoryTheory/Limits/Coends.v
826
+ theorems: '*'
827
+ - path: UniMath/CategoryTheory/Limits/EquivalencePreservation.v
828
+ theorems: '*'
829
+ - path: UniMath/CategoryTheory/Limits/Equalizers.v
830
+ theorems: '*'
831
+ - path: UniMath/CategoryTheory/Limits/Pushouts.v
832
+ theorems: '*'
833
+ - path: UniMath/CategoryTheory/Limits/BinProducts.v
834
+ theorems: '*'
835
+ - path: UniMath/CategoryTheory/Limits/Pullbacks.v
836
+ theorems: '*'
837
+ - path: UniMath/CategoryTheory/Limits/Kernels.v
838
+ theorems: '*'
839
+ - path: UniMath/CategoryTheory/Limits/Graphs/Coproducts.v
840
+ theorems: '*'
841
+ - path: UniMath/CategoryTheory/Limits/Graphs/Colimits.v
842
+ theorems: '*'
843
+ - path: UniMath/CategoryTheory/Limits/Graphs/EqDiag.v
844
+ theorems: '*'
845
+ - path: UniMath/CategoryTheory/Limits/Graphs/Cokernels.v
846
+ theorems: '*'
847
+ - path: UniMath/CategoryTheory/Limits/Graphs/Coequalizers.v
848
+ theorems: '*'
849
+ - path: UniMath/CategoryTheory/Limits/Graphs/Zero.v
850
+ theorems: '*'
851
+ - path: UniMath/CategoryTheory/Limits/Graphs/Terminal.v
852
+ theorems: '*'
853
+ - path: UniMath/CategoryTheory/Limits/Graphs/BinCoproducts.v
854
+ theorems: '*'
855
+ - path: UniMath/CategoryTheory/Limits/Graphs/Initial.v
856
+ theorems: '*'
857
+ - path: UniMath/CategoryTheory/Limits/Graphs/Limits.v
858
+ theorems: '*'
859
+ - path: UniMath/CategoryTheory/Limits/Graphs/Equalizers.v
860
+ theorems: '*'
861
+ - path: UniMath/CategoryTheory/Limits/Graphs/Pushouts.v
862
+ theorems: '*'
863
+ - path: UniMath/CategoryTheory/Limits/Graphs/BinProducts.v
864
+ theorems: '*'
865
+ - path: UniMath/CategoryTheory/Limits/Graphs/Pullbacks.v
866
+ theorems: '*'
867
+ - path: UniMath/CategoryTheory/Limits/Graphs/Kernels.v
868
+ theorems: '*'
869
+ - path: UniMath/CategoryTheory/Limits/Cats/Limits.v
870
+ theorems: '*'
871
+ - path: UniMath/CategoryTheory/Limits/Examples/CategoryOfSetcategoriesLimits.v
872
+ theorems: '*'
873
+ - path: UniMath/CategoryTheory/Limits/Examples/AlgebraStructuresColimits.v
874
+ theorems: '*'
875
+ - path: UniMath/CategoryTheory/Limits/Examples/UnitCategoryLimits.v
876
+ theorems: '*'
877
+ - path: UniMath/CategoryTheory/Limits/Examples/EilenbergMooreLimits.v
878
+ theorems: '*'
879
+ - path: UniMath/CategoryTheory/Limits/Examples/CategoryProductLimits.v
880
+ theorems: '*'
881
+ - path: UniMath/CategoryTheory/Limits/Examples/IsoCommaLimits.v
882
+ theorems: '*'
883
+ - path: UniMath/CategoryTheory/DaggerCategories/Functors.v
884
+ theorems: '*'
885
+ - path: UniMath/CategoryTheory/DaggerCategories/FunctorCategory.v
886
+ theorems: '*'
887
+ - path: UniMath/CategoryTheory/DaggerCategories/Unitary.v
888
+ theorems: '*'
889
+ - path: UniMath/CategoryTheory/DaggerCategories/CatIso.v
890
+ theorems: '*'
891
+ - path: UniMath/CategoryTheory/DaggerCategories/Univalence.v
892
+ theorems: '*'
893
+ - path: UniMath/CategoryTheory/DaggerCategories/Transformations.v
894
+ theorems: '*'
895
+ - path: UniMath/CategoryTheory/DaggerCategories/Categories.v
896
+ theorems: '*'
897
+ - path: UniMath/CategoryTheory/DaggerCategories/Examples/Groupoids.v
898
+ theorems: '*'
899
+ - path: UniMath/CategoryTheory/DaggerCategories/Examples/Relations.v
900
+ theorems: '*'
901
+ - path: UniMath/CategoryTheory/DaggerCategories/Examples/Fullsub.v
902
+ theorems: '*'
903
+ - path: UniMath/CategoryTheory/DaggerCategories/Functors/Factorization.v
904
+ theorems: '*'
905
+ - path: UniMath/CategoryTheory/DaggerCategories/Functors/Precomp.v
906
+ theorems: '*'
907
+ - path: UniMath/CategoryTheory/DaggerCategories/Functors/FullyFaithful.v
908
+ theorems: '*'
909
+ - path: UniMath/CategoryTheory/DaggerCategories/Functors/WeakEquivalences.v
910
+ theorems: '*'
911
+ - path: UniMath/CategoryTheory/SkewMonoidal/SkewMonoidalCategories.v
912
+ theorems: '*'
913
+ - path: UniMath/CategoryTheory/SkewMonoidal/CategoriesOfMonoids.v
914
+ theorems: '*'
915
+ - path: UniMath/CategoryTheory/Equivalences/CompositesAndInverses.v
916
+ theorems: '*'
917
+ - path: UniMath/CategoryTheory/Equivalences/FullyFaithful.v
918
+ theorems: '*'
919
+ - path: UniMath/CategoryTheory/Equivalences/Core.v
920
+ theorems: '*'
921
+ - path: UniMath/CategoryTheory/Adjunctions/Examples.v
922
+ theorems: '*'
923
+ - path: UniMath/CategoryTheory/Adjunctions/Restriction.v
924
+ theorems: '*'
925
+ - path: UniMath/CategoryTheory/Adjunctions/Core.v
926
+ theorems: '*'
927
+ - path: UniMath/CategoryTheory/Subcategory/Reflective.v
928
+ theorems: '*'
929
+ - path: UniMath/CategoryTheory/Subcategory/Full.v
930
+ theorems: '*'
931
+ - path: UniMath/CategoryTheory/Subcategory/FullEquivalences.v
932
+ theorems: '*'
933
+ - path: UniMath/CategoryTheory/Subcategory/Limits.v
934
+ theorems: '*'
935
+ - path: UniMath/CategoryTheory/Subcategory/Core.v
936
+ theorems: '*'
937
+ - path: UniMath/CategoryTheory/LocallyCartesianClosed/LocallyCartesianClosed.v
938
+ theorems: '*'
939
+ - path: UniMath/CategoryTheory/LocallyCartesianClosed/Preservation.v
940
+ theorems: '*'
941
+ - path: UniMath/CategoryTheory/OppositeCategory/OppositeOfFunctorCategory.v
942
+ theorems: '*'
943
+ - path: UniMath/CategoryTheory/OppositeCategory/OppositeAdjunction.v
944
+ theorems: '*'
945
+ - path: UniMath/CategoryTheory/OppositeCategory/LimitsAsColimits.v
946
+ theorems: '*'
947
+ - path: UniMath/CategoryTheory/OppositeCategory/Core.v
948
+ theorems: '*'
949
+ - path: UniMath/CategoryTheory/RegularAndExact/RegularEpiFacts.v
950
+ theorems: '*'
951
+ - path: UniMath/CategoryTheory/RegularAndExact/ExactCategory.v
952
+ theorems: '*'
953
+ - path: UniMath/CategoryTheory/RegularAndExact/RegularCategory.v
954
+ theorems: '*'
955
+ - path: UniMath/CategoryTheory/RegularAndExact/RegularEpi.v
956
+ theorems: '*'
957
+ - path: UniMath/CategoryTheory/EnrichedCats/EnrichmentMonad.v
958
+ theorems: '*'
959
+ - path: UniMath/CategoryTheory/EnrichedCats/FullyFaithful.v
960
+ theorems: '*'
961
+ - path: UniMath/CategoryTheory/EnrichedCats/Enrichment.v
962
+ theorems: '*'
963
+ - path: UniMath/CategoryTheory/EnrichedCats/YonedaLemma.v
964
+ theorems: '*'
965
+ - path: UniMath/CategoryTheory/EnrichedCats/EnrichmentTransformation.v
966
+ theorems: '*'
967
+ - path: UniMath/CategoryTheory/EnrichedCats/EnrichmentAdjunction.v
968
+ theorems: '*'
969
+ - path: UniMath/CategoryTheory/EnrichedCats/EnrichmentFunctor.v
970
+ theorems: '*'
971
+ - path: UniMath/CategoryTheory/EnrichedCats/RezkCompletion/PrecompEssentiallySurjective.v
972
+ theorems: '*'
973
+ - path: UniMath/CategoryTheory/EnrichedCats/RezkCompletion/EnrichedRezkCompletion.v
974
+ theorems: '*'
975
+ - path: UniMath/CategoryTheory/EnrichedCats/RezkCompletion/PrecompFullyFaithful.v
976
+ theorems: '*'
977
+ - path: UniMath/CategoryTheory/EnrichedCats/RezkCompletion/RezkUniversalProperty.v
978
+ theorems: '*'
979
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/EnrichedInitial.v
980
+ theorems: '*'
981
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/EnrichedConicalColimits.v
982
+ theorems: '*'
983
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/EnrichedCoproducts.v
984
+ theorems: '*'
985
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/EnrichedColimits.v
986
+ theorems: '*'
987
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/CopowerFunctor.v
988
+ theorems: '*'
989
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/EnrichedBinaryCoproducts.v
990
+ theorems: '*'
991
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/EnrichedCoequalizers.v
992
+ theorems: '*'
993
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/EnrichedCopowers.v
994
+ theorems: '*'
995
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/Examples/OppositeEnrichedColimits.v
996
+ theorems: '*'
997
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/Examples/SelfEnrichedColimits.v
998
+ theorems: '*'
999
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/Examples/StructureEnrichedColimits.v
1000
+ theorems: '*'
1001
+ - path: UniMath/CategoryTheory/EnrichedCats/Colimits/Examples/PosetEnrichedColimits.v
1002
+ theorems: '*'
1003
+ - path: UniMath/CategoryTheory/EnrichedCats/Profunctors/StandardProfunctors.v
1004
+ theorems: '*'
1005
+ - path: UniMath/CategoryTheory/EnrichedCats/Profunctors/ProfunctorSquares.v
1006
+ theorems: '*'
1007
+ - path: UniMath/CategoryTheory/EnrichedCats/Profunctors/Profunctor.v
1008
+ theorems: '*'
1009
+ - path: UniMath/CategoryTheory/EnrichedCats/Profunctors/ProfunctorTransformations.v
1010
+ theorems: '*'
1011
+ - path: UniMath/CategoryTheory/EnrichedCats/Limits/EnrichedPowers.v
1012
+ theorems: '*'
1013
+ - path: UniMath/CategoryTheory/EnrichedCats/Limits/EnrichedProducts.v
1014
+ theorems: '*'
1015
+ - path: UniMath/CategoryTheory/EnrichedCats/Limits/EnrichedConicalLimits.v
1016
+ theorems: '*'
1017
+ - path: UniMath/CategoryTheory/EnrichedCats/Limits/EnrichedLimits.v
1018
+ theorems: '*'
1019
+ - path: UniMath/CategoryTheory/EnrichedCats/Limits/EnrichedTerminal.v
1020
+ theorems: '*'
1021
+ - path: UniMath/CategoryTheory/EnrichedCats/Limits/EnrichedBinaryProducts.v
1022
+ theorems: '*'
1023
+ - path: UniMath/CategoryTheory/EnrichedCats/Limits/EnrichedEqualizers.v
1024
+ theorems: '*'
1025
+ - path: UniMath/CategoryTheory/EnrichedCats/Limits/Examples/SelfEnrichedLimits.v
1026
+ theorems: '*'
1027
+ - path: UniMath/CategoryTheory/EnrichedCats/Limits/Examples/OppositeEnrichedLimits.v
1028
+ theorems: '*'
1029
+ - path: UniMath/CategoryTheory/EnrichedCats/Limits/Examples/PosetEnrichedLimits.v
1030
+ theorems: '*'
1031
+ - path: UniMath/CategoryTheory/EnrichedCats/Limits/Examples/StructureEnrichedLimits.v
1032
+ theorems: '*'
1033
+ - path: UniMath/CategoryTheory/EnrichedCats/Enriched/Enriched.v
1034
+ theorems: '*'
1035
+ - path: UniMath/CategoryTheory/EnrichedCats/Enriched/EnrichmentEquiv.v
1036
+ theorems: '*'
1037
+ - path: UniMath/CategoryTheory/EnrichedCats/Enriched/UnderlyingCategory.v
1038
+ theorems: '*'
1039
+ - path: UniMath/CategoryTheory/EnrichedCats/Enriched/ChangeOfBase.v
1040
+ theorems: '*'
1041
+ - path: UniMath/CategoryTheory/EnrichedCats/Enriched/Opposite.v
1042
+ theorems: '*'
1043
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/FunctorCategory.v
1044
+ theorems: '*'
1045
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/KleisliEnriched.v
1046
+ theorems: '*'
1047
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/SetEnriched.v
1048
+ theorems: '*'
1049
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/EmptyEnriched.v
1050
+ theorems: '*'
1051
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/Tensor.v
1052
+ theorems: '*'
1053
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/SmashStructureEnriched.v
1054
+ theorems: '*'
1055
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/DialgebraEnriched.v
1056
+ theorems: '*'
1057
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/HomFunctor.v
1058
+ theorems: '*'
1059
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/FullSubEnriched.v
1060
+ theorems: '*'
1061
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/UnivalentKleisliMapping.v
1062
+ theorems: '*'
1063
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/ImageEnriched.v
1064
+ theorems: '*'
1065
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/StructureEnriched.v
1066
+ theorems: '*'
1067
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/Presheaves.v
1068
+ theorems: '*'
1069
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/Yoneda.v
1070
+ theorems: '*'
1071
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/ProductEnriched.v
1072
+ theorems: '*'
1073
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/Precomposition.v
1074
+ theorems: '*'
1075
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/UnivalentKleisliEnriched.v
1076
+ theorems: '*'
1077
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/OppositeEnriched.v
1078
+ theorems: '*'
1079
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/EilenbergMooreEnriched.v
1080
+ theorems: '*'
1081
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/SliceEnriched.v
1082
+ theorems: '*'
1083
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/ChangeOfBase.v
1084
+ theorems: '*'
1085
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/PosetEnriched.v
1086
+ theorems: '*'
1087
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/SelfEnriched.v
1088
+ theorems: '*'
1089
+ - path: UniMath/CategoryTheory/EnrichedCats/Examples/UnitEnriched.v
1090
+ theorems: '*'
1091
+ - path: UniMath/CategoryTheory/EnrichedCats/Bifunctors/CurriedTransformations.v
1092
+ theorems: '*'
1093
+ - path: UniMath/CategoryTheory/EnrichedCats/Bifunctors/WhiskeredBifunctors.v
1094
+ theorems: '*'
1095
+ - path: UniMath/CategoryTheory/EnrichedCats/Bifunctors/WhiskeredTransformations.v
1096
+ theorems: '*'
1097
+ - path: UniMath/CategoryTheory/EnrichedCats/Bifunctors/CurriedBifunctors.v
1098
+ theorems: '*'
1099
+ - path: UniMath/CategoryTheory/RepresentableFunctors/Test.v
1100
+ theorems: '*'
1101
+ - path: UniMath/CategoryTheory/RepresentableFunctors/DirectSum.v
1102
+ theorems: '*'
1103
+ - path: UniMath/CategoryTheory/RepresentableFunctors/RawMatrix.v
1104
+ theorems: '*'
1105
+ - path: UniMath/CategoryTheory/RepresentableFunctors/Bifunctor.v
1106
+ theorems: '*'
1107
+ - path: UniMath/CategoryTheory/RepresentableFunctors/Precategories.v
1108
+ theorems: '*'
1109
+ - path: UniMath/CategoryTheory/RepresentableFunctors/Representation.v
1110
+ theorems: '*'
1111
+ - path: UniMath/CategoryTheory/Core/Functors.v
1112
+ theorems: '*'
1113
+ - path: UniMath/CategoryTheory/Core/TwoCategories.v
1114
+ theorems: '*'
1115
+ - path: UniMath/CategoryTheory/Core/EssentiallyAlgebraic.v
1116
+ theorems: '*'
1117
+ - path: UniMath/CategoryTheory/Core/TransportMorphisms.v
1118
+ theorems: '*'
1119
+ - path: UniMath/CategoryTheory/Core/Univalence.v
1120
+ theorems: '*'
1121
+ - path: UniMath/CategoryTheory/Core/Isos.v
1122
+ theorems: '*'
1123
+ - path: UniMath/CategoryTheory/Core/Setcategories.v
1124
+ theorems: '*'
1125
+ - path: UniMath/CategoryTheory/Core/Prelude.v
1126
+ theorems: '*'
1127
+ - path: UniMath/CategoryTheory/Core/NaturalTransformations.v
1128
+ theorems: '*'
1129
+ - path: UniMath/CategoryTheory/Core/Categories.v
1130
+ theorems: '*'
1131
+ - path: UniMath/CategoryTheory/Chains/OmegaContFunctors.v
1132
+ theorems: '*'
1133
+ - path: UniMath/CategoryTheory/Chains/Cochains.v
1134
+ theorems: '*'
1135
+ - path: UniMath/CategoryTheory/Chains/Adamek.v
1136
+ theorems: '*'
1137
+ - path: UniMath/CategoryTheory/Chains/CoAdamek.v
1138
+ theorems: '*'
1139
+ - path: UniMath/CategoryTheory/Chains/All.v
1140
+ theorems: '*'
1141
+ - path: UniMath/CategoryTheory/Chains/Chains.v
1142
+ theorems: '*'
1143
+ - path: UniMath/CategoryTheory/Chains/OmegaCocontFunctors.v
1144
+ theorems: '*'
1145
+ - path: UniMath/CategoryTheory/IndexedCategories/IndexedTransformation.v
1146
+ theorems: '*'
1147
+ - path: UniMath/CategoryTheory/IndexedCategories/IndexedCategory.v
1148
+ theorems: '*'
1149
+ - path: UniMath/CategoryTheory/IndexedCategories/IndexedFunctor.v
1150
+ theorems: '*'
1151
+ - path: UniMath/CategoryTheory/IndexedCategories/FibrationToIndexedCategory.v
1152
+ theorems: '*'
1153
+ - path: UniMath/CategoryTheory/IndexedCategories/IndexedTransformationToTransformation.v
1154
+ theorems: '*'
1155
+ - path: UniMath/CategoryTheory/IndexedCategories/OpIndexedCategory.v
1156
+ theorems: '*'
1157
+ - path: UniMath/CategoryTheory/IndexedCategories/NatTransToIndexed.v
1158
+ theorems: '*'
1159
+ - path: UniMath/CategoryTheory/IndexedCategories/CartesianToIndexedFunctor.v
1160
+ theorems: '*'
1161
+ - path: UniMath/CategoryTheory/IndexedCategories/IndexedFunctorToCartesian.v
1162
+ theorems: '*'
1163
+ - path: UniMath/CategoryTheory/IndexedCategories/IndexedCategoryToFibration.v
1164
+ theorems: '*'
1165
+ - path: UniMath/CategoryTheory/IndexedCategories/CoreIndexedCategory.v
1166
+ theorems: '*'
1167
+ - path: UniMath/Combinatorics/Equivalence_Relations.v
1168
+ theorems: '*'
1169
+ - path: UniMath/Combinatorics/Lists.v
1170
+ theorems: '*'
1171
+ - path: UniMath/Combinatorics/Tuples.v
1172
+ theorems: '*'
1173
+ - path: UniMath/Combinatorics/GraphPaths.v
1174
+ theorems: '*'
1175
+ - path: UniMath/Combinatorics/VectorsTests.v
1176
+ theorems: '*'
1177
+ - path: UniMath/Combinatorics/DecSet.v
1178
+ theorems: '*'
1179
+ - path: UniMath/Combinatorics/FiniteSets.v
1180
+ theorems: '*'
1181
+ - path: UniMath/Combinatorics/All.v
1182
+ theorems: '*'
1183
+ - path: UniMath/Combinatorics/MoreLists.v
1184
+ theorems: '*'
1185
+ - path: UniMath/Combinatorics/Graph.v
1186
+ theorems: '*'
1187
+ - path: UniMath/Combinatorics/Maybe.v
1188
+ theorems: '*'
1189
+ - path: UniMath/Combinatorics/KFiniteSubtypes.v
1190
+ theorems: '*'
1191
+ - path: UniMath/Combinatorics/CGraph.v
1192
+ theorems: '*'
1193
+ - path: UniMath/Combinatorics/Vectors.v
1194
+ theorems: '*'
1195
+ - path: UniMath/Combinatorics/StandardFiniteSets.v
1196
+ theorems: '*'
1197
+ - path: UniMath/Combinatorics/KFiniteTypes.v
1198
+ theorems: '*'
1199
+ - path: UniMath/Combinatorics/BoundedSearch.v
1200
+ theorems: '*'
1201
+ - path: UniMath/Combinatorics/OrderedSets.v
1202
+ theorems: '*'
1203
+ - path: UniMath/Combinatorics/Tests.v
1204
+ theorems: '*'
1205
+ - path: UniMath/Combinatorics/MetricTree.v
1206
+ theorems: '*'
1207
+ - path: UniMath/Combinatorics/FiniteSequences.v
1208
+ theorems: '*'
1209
+ - path: UniMath/Combinatorics/WellOrderedSets.v
1210
+ theorems: '*'
1211
+ - path: UniMath/Combinatorics/WellFoundedRelations.v
1212
+ theorems: '*'
1213
+ - path: UniMath/Combinatorics/ZFstructures.v
1214
+ theorems: '*'
1215
+ - path: UniMath/SubstitutionSystems/SubstitutionSystems_Summary.v
1216
+ theorems: '*'
1217
+ - path: UniMath/SubstitutionSystems/LamFromBindingSig.v
1218
+ theorems: '*'
1219
+ - path: UniMath/SubstitutionSystems/SignaturesEquivRelativeStrength.v
1220
+ theorems: '*'
1221
+ - path: UniMath/SubstitutionSystems/EquivalenceSignaturesWithActegoryMorphisms.v
1222
+ theorems: '*'
1223
+ - path: UniMath/SubstitutionSystems/MonadsFromSubstitutionSystems.v
1224
+ theorems: '*'
1225
+ - path: UniMath/SubstitutionSystems/STLC_actegorical.v
1226
+ theorems: '*'
1227
+ - path: UniMath/SubstitutionSystems/MonadicSubstitution_alt.v
1228
+ theorems: '*'
1229
+ - path: UniMath/SubstitutionSystems/UntypedForests.v
1230
+ theorems: '*'
1231
+ - path: UniMath/SubstitutionSystems/SortIndexing.v
1232
+ theorems: '*'
1233
+ - path: UniMath/SubstitutionSystems/MonadsMultiSorted_alt.v
1234
+ theorems: '*'
1235
+ - path: UniMath/SubstitutionSystems/CCS.v
1236
+ theorems: '*'
1237
+ - path: UniMath/SubstitutionSystems/MLTT79.v
1238
+ theorems: '*'
1239
+ - path: UniMath/SubstitutionSystems/BindingSigToMonad.v
1240
+ theorems: '*'
1241
+ - path: UniMath/SubstitutionSystems/ActionBasedStrengthOnHomsInBicat.v
1242
+ theorems: '*'
1243
+ - path: UniMath/SubstitutionSystems/SigmaMonoids.v
1244
+ theorems: '*'
1245
+ - path: UniMath/SubstitutionSystems/Notation.v
1246
+ theorems: '*'
1247
+ - path: UniMath/SubstitutionSystems/ModulesFromSignatures.v
1248
+ theorems: '*'
1249
+ - path: UniMath/SubstitutionSystems/Forests.v
1250
+ theorems: '*'
1251
+ - path: UniMath/SubstitutionSystems/LamHSET.v
1252
+ theorems: '*'
1253
+ - path: UniMath/SubstitutionSystems/STLC.v
1254
+ theorems: '*'
1255
+ - path: UniMath/SubstitutionSystems/SubstitutionSystems.v
1256
+ theorems: '*'
1257
+ - path: UniMath/SubstitutionSystems/All.v
1258
+ theorems: '*'
1259
+ - path: UniMath/SubstitutionSystems/GenMendlerIteration.v
1260
+ theorems: '*'
1261
+ - path: UniMath/SubstitutionSystems/LiftingInitial_alt.v
1262
+ theorems: '*'
1263
+ - path: UniMath/SubstitutionSystems/LamSignature.v
1264
+ theorems: '*'
1265
+ - path: UniMath/SubstitutionSystems/MultiSortedMonadConstruction_coind_actegorical.v
1266
+ theorems: '*'
1267
+ - path: UniMath/SubstitutionSystems/MultiSortedEmbeddingIndCoindHSET.v
1268
+ theorems: '*'
1269
+ - path: UniMath/SubstitutionSystems/SignatureExamples.v
1270
+ theorems: '*'
1271
+ - path: UniMath/SubstitutionSystems/BinSumOfSignatures.v
1272
+ theorems: '*'
1273
+ - path: UniMath/SubstitutionSystems/Lam.v
1274
+ theorems: '*'
1275
+ - path: UniMath/SubstitutionSystems/SumOfSignatures.v
1276
+ theorems: '*'
1277
+ - path: UniMath/SubstitutionSystems/MonadsMultiSorted.v
1278
+ theorems: '*'
1279
+ - path: UniMath/SubstitutionSystems/LiftingInitial.v
1280
+ theorems: '*'
1281
+ - path: UniMath/SubstitutionSystems/ConstructionOfGHSS.v
1282
+ theorems: '*'
1283
+ - path: UniMath/SubstitutionSystems/BinProductOfSignatures.v
1284
+ theorems: '*'
1285
+ - path: UniMath/SubstitutionSystems/GeneralizedSubstitutionSystems.v
1286
+ theorems: '*'
1287
+ - path: UniMath/SubstitutionSystems/STLC_alt.v
1288
+ theorems: '*'
1289
+ - path: UniMath/SubstitutionSystems/ActionScenarioForGenMendlerIteration_alt.v
1290
+ theorems: '*'
1291
+ - path: UniMath/SubstitutionSystems/MultiSortedMonadConstruction_alt.v
1292
+ theorems: '*'
1293
+ - path: UniMath/SubstitutionSystems/MultiSorted_alt.v
1294
+ theorems: '*'
1295
+ - path: UniMath/SubstitutionSystems/MultiSorted.v
1296
+ theorems: '*'
1297
+ - path: UniMath/SubstitutionSystems/ApplicationsGenMendlerIteration_alt.v
1298
+ theorems: '*'
1299
+ - path: UniMath/SubstitutionSystems/MultiSortedMonadConstruction_actegorical.v
1300
+ theorems: '*'
1301
+ - path: UniMath/SubstitutionSystems/MultiSortedBindingSig.v
1302
+ theorems: '*'
1303
+ - path: UniMath/SubstitutionSystems/GenMendlerIteration_alt.v
1304
+ theorems: '*'
1305
+ - path: UniMath/SubstitutionSystems/PCF_alt.v
1306
+ theorems: '*'
1307
+ - path: UniMath/SubstitutionSystems/MultiSorted_actegorical.v
1308
+ theorems: '*'
1309
+ - path: UniMath/SubstitutionSystems/MultiSortedMonadConstruction.v
1310
+ theorems: '*'
1311
+ - path: UniMath/SubstitutionSystems/BindingSigToMonad_actegorical.v
1312
+ theorems: '*'
1313
+ - path: UniMath/SubstitutionSystems/FromBindingSigsToMonads_Summary.v
1314
+ theorems: '*'
1315
+ - path: UniMath/SubstitutionSystems/STLC_actegorical_abstractcat.v
1316
+ theorems: '*'
1317
+ - path: UniMath/SubstitutionSystems/Signatures.v
1318
+ theorems: '*'
1319
+ - path: UniMath/SubstitutionSystems/SignatureCategory.v
1320
+ theorems: '*'
1321
+ - path: UniMath/SubstitutionSystems/CCS_alt.v
1322
+ theorems: '*'
1323
+ - path: UniMath/SubstitutionSystems/EquivalenceLaxLineatorsHomogeneousCase.v
1324
+ theorems: '*'
1325
+ - path: UniMath/SubstitutionSystems/ContinuitySignature/CommutingOfOmegaLimitsAndCoproducts.v
1326
+ theorems: '*'
1327
+ - path: UniMath/SubstitutionSystems/ContinuitySignature/GeneralLemmas.v
1328
+ theorems: '*'
1329
+ - path: UniMath/SubstitutionSystems/ContinuitySignature/MultiSortedSignatureFunctorEquivalence.v
1330
+ theorems: '*'
1331
+ - path: UniMath/SubstitutionSystems/ContinuitySignature/InstantiateHSET.v
1332
+ theorems: '*'
1333
+ - path: UniMath/SubstitutionSystems/ContinuitySignature/ContinuityOfMultiSortedSigToFunctor.v
1334
+ theorems: '*'
1335
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/SubstitutionSystems_Summary.v
1336
+ theorems: '*'
1337
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/LamFromBindingSig.v
1338
+ theorems: '*'
1339
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/MonadsFromSubstitutionSystems.v
1340
+ theorems: '*'
1341
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/MonadicSubstitution_alt.v
1342
+ theorems: '*'
1343
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/CCS.v
1344
+ theorems: '*'
1345
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/MLTT79.v
1346
+ theorems: '*'
1347
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/BindingSigToMonad.v
1348
+ theorems: '*'
1349
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/ModulesFromSignatures.v
1350
+ theorems: '*'
1351
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/LamHSET.v
1352
+ theorems: '*'
1353
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/STLC.v
1354
+ theorems: '*'
1355
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/SubstitutionSystems.v
1356
+ theorems: '*'
1357
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/LiftingInitial_alt.v
1358
+ theorems: '*'
1359
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/Lam.v
1360
+ theorems: '*'
1361
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/LiftingInitial.v
1362
+ theorems: '*'
1363
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/STLC_alt.v
1364
+ theorems: '*'
1365
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/MultiSortedMonadConstruction_alt.v
1366
+ theorems: '*'
1367
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/PCF_alt.v
1368
+ theorems: '*'
1369
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/MultiSortedMonadConstruction.v
1370
+ theorems: '*'
1371
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/FromBindingSigsToMonads_Summary.v
1372
+ theorems: '*'
1373
+ - path: UniMath/SubstitutionSystems/SimplifiedHSS/CCS_alt.v
1374
+ theorems: '*'
1375
+ - path: UniMath/Bicategories/All.v
1376
+ theorems: '*'
1377
+ - path: UniMath/Bicategories/BicategoryOfBicat.v
1378
+ theorems: '*'
1379
+ - path: UniMath/Bicategories/BicatOfBicategory.v
1380
+ theorems: '*'
1381
+ - path: UniMath/Bicategories/WkCatEnrichment/Notations.v
1382
+ theorems: '*'
1383
+ - path: UniMath/Bicategories/WkCatEnrichment/prebicategory.v
1384
+ theorems: '*'
1385
+ - path: UniMath/Bicategories/WkCatEnrichment/Cat.v
1386
+ theorems: '*'
1387
+ - path: UniMath/Bicategories/WkCatEnrichment/whiskering.v
1388
+ theorems: '*'
1389
+ - path: UniMath/Bicategories/WkCatEnrichment/hcomp_bicat.v
1390
+ theorems: '*'
1391
+ - path: UniMath/Bicategories/WkCatEnrichment/internal_equivalence.v
1392
+ theorems: '*'
1393
+ - path: UniMath/Bicategories/WkCatEnrichment/bicategory.v
1394
+ theorems: '*'
1395
+ - path: UniMath/Bicategories/Colimits/Coproducts.v
1396
+ theorems: '*'
1397
+ - path: UniMath/Bicategories/Colimits/CoproductEquivalences.v
1398
+ theorems: '*'
1399
+ - path: UniMath/Bicategories/Colimits/KleisliObjects.v
1400
+ theorems: '*'
1401
+ - path: UniMath/Bicategories/Colimits/Initial.v
1402
+ theorems: '*'
1403
+ - path: UniMath/Bicategories/Colimits/Extensive.v
1404
+ theorems: '*'
1405
+ - path: UniMath/Bicategories/Colimits/Examples/BicatOfUnivCatsColimits.v
1406
+ theorems: '*'
1407
+ - path: UniMath/Bicategories/Colimits/Examples/BicatOfCatsColimits.v
1408
+ theorems: '*'
1409
+ - path: UniMath/Bicategories/Colimits/Examples/DisplayMapSliceColimits.v
1410
+ theorems: '*'
1411
+ - path: UniMath/Bicategories/Colimits/Examples/OneTypesColimits.v
1412
+ theorems: '*'
1413
+ - path: UniMath/Bicategories/Colimits/Examples/OpCellBicatColimits.v
1414
+ theorems: '*'
1415
+ - path: UniMath/Bicategories/Colimits/Examples/SliceBicategoryColimits.v
1416
+ theorems: '*'
1417
+ - path: UniMath/Bicategories/Colimits/Examples/BicatOfEnrichedCatsColimits.v
1418
+ theorems: '*'
1419
+ - path: UniMath/Bicategories/Monads/MonadToAdjunction.v
1420
+ theorems: '*'
1421
+ - path: UniMath/Bicategories/Monads/MixedDistributiveLaws.v
1422
+ theorems: '*'
1423
+ - path: UniMath/Bicategories/Monads/LocalEquivalenceMonad.v
1424
+ theorems: '*'
1425
+ - path: UniMath/Bicategories/Monads/DistributiveLaws.v
1426
+ theorems: '*'
1427
+ - path: UniMath/Bicategories/Monads/ConstructionOfAlgebras.v
1428
+ theorems: '*'
1429
+ - path: UniMath/Bicategories/Monads/Examples/MonadsInOp2Bicat.v
1430
+ theorems: '*'
1431
+ - path: UniMath/Bicategories/Monads/Examples/MonadsInBicatOfEnrichedCats.v
1432
+ theorems: '*'
1433
+ - path: UniMath/Bicategories/Monads/Examples/MonadsInBicatOfCats.v
1434
+ theorems: '*'
1435
+ - path: UniMath/Bicategories/Monads/Examples/MonadsInTotalBicat.v
1436
+ theorems: '*'
1437
+ - path: UniMath/Bicategories/Monads/Examples/MonadsInMonads.v
1438
+ theorems: '*'
1439
+ - path: UniMath/Bicategories/Monads/Examples/ToMonadInCat.v
1440
+ theorems: '*'
1441
+ - path: UniMath/Bicategories/Monads/Examples/AdjunctionToMonad.v
1442
+ theorems: '*'
1443
+ - path: UniMath/Bicategories/Monads/Examples/PsfunctorOnMonad.v
1444
+ theorems: '*'
1445
+ - path: UniMath/Bicategories/Monads/Examples/Composition.v
1446
+ theorems: '*'
1447
+ - path: UniMath/Bicategories/Monads/Examples/MonadsInBicatOfUnivCats.v
1448
+ theorems: '*'
1449
+ - path: UniMath/Bicategories/Monads/Examples/MonadsInOp1Bicat.v
1450
+ theorems: '*'
1451
+ - path: UniMath/Bicategories/Monads/Examples/MonadsInStructuredCategories.v
1452
+ theorems: '*'
1453
+ - path: UniMath/Bicategories/Transformations/PseudoTransformation.v
1454
+ theorems: '*'
1455
+ - path: UniMath/Bicategories/Transformations/Examples/ApTransformation.v
1456
+ theorems: '*'
1457
+ - path: UniMath/Bicategories/Transformations/Examples/Associativity.v
1458
+ theorems: '*'
1459
+ - path: UniMath/Bicategories/Transformations/Examples/AlgebraMap.v
1460
+ theorems: '*'
1461
+ - path: UniMath/Bicategories/Transformations/Examples/Whiskering.v
1462
+ theorems: '*'
1463
+ - path: UniMath/Bicategories/Transformations/Examples/PseudoTransformationIntoCat.v
1464
+ theorems: '*'
1465
+ - path: UniMath/Bicategories/Transformations/Examples/Unitality.v
1466
+ theorems: '*'
1467
+ - path: UniMath/Bicategories/Objects/CocartesianObject.v
1468
+ theorems: '*'
1469
+ - path: UniMath/Bicategories/Objects/CartesianObject.v
1470
+ theorems: '*'
1471
+ - path: UniMath/Bicategories/Objects/Examples/BicatOfUnivCatsObjects.v
1472
+ theorems: '*'
1473
+ - path: UniMath/Bicategories/Limits/EilenbergMooreComonad.v
1474
+ theorems: '*'
1475
+ - path: UniMath/Bicategories/Limits/Inserters.v
1476
+ theorems: '*'
1477
+ - path: UniMath/Bicategories/Limits/PullbackFunctions.v
1478
+ theorems: '*'
1479
+ - path: UniMath/Bicategories/Limits/PullbackEquivalences.v
1480
+ theorems: '*'
1481
+ - path: UniMath/Bicategories/Limits/Products.v
1482
+ theorems: '*'
1483
+ - path: UniMath/Bicategories/Limits/IsoInserters.v
1484
+ theorems: '*'
1485
+ - path: UniMath/Bicategories/Limits/Final.v
1486
+ theorems: '*'
1487
+ - path: UniMath/Bicategories/Limits/Equifiers.v
1488
+ theorems: '*'
1489
+ - path: UniMath/Bicategories/Limits/ProductEquivalences.v
1490
+ theorems: '*'
1491
+ - path: UniMath/Bicategories/Limits/EquifierEquivalences.v
1492
+ theorems: '*'
1493
+ - path: UniMath/Bicategories/Limits/Pullbacks.v
1494
+ theorems: '*'
1495
+ - path: UniMath/Bicategories/Limits/EilenbergMooreObjects.v
1496
+ theorems: '*'
1497
+ - path: UniMath/Bicategories/Limits/InserterEquivalences.v
1498
+ theorems: '*'
1499
+ - path: UniMath/Bicategories/Limits/CommaObjects.v
1500
+ theorems: '*'
1501
+ - path: UniMath/Bicategories/Limits/Examples/TotalBicategoryLimits.v
1502
+ theorems: '*'
1503
+ - path: UniMath/Bicategories/Limits/Examples/SliceBicategoryLimits.v
1504
+ theorems: '*'
1505
+ - path: UniMath/Bicategories/Limits/Examples/DispConstructionsLimits.v
1506
+ theorems: '*'
1507
+ - path: UniMath/Bicategories/Limits/Examples/BicatOfUnivCatsLimits.v
1508
+ theorems: '*'
1509
+ - path: UniMath/Bicategories/Limits/Examples/OpMorBicatLimits.v
1510
+ theorems: '*'
1511
+ - path: UniMath/Bicategories/Limits/Examples/UnivGroupoidsLimits.v
1512
+ theorems: '*'
1513
+ - path: UniMath/Bicategories/Limits/Examples/SubbicatLimits.v
1514
+ theorems: '*'
1515
+ - path: UniMath/Bicategories/Limits/Examples/LimitsStructuredCategories.v
1516
+ theorems: '*'
1517
+ - path: UniMath/Bicategories/Limits/Examples/OpCellBicatLimits.v
1518
+ theorems: '*'
1519
+ - path: UniMath/Bicategories/Limits/Examples/OneTypesLimits.v
1520
+ theorems: '*'
1521
+ - path: UniMath/Bicategories/Limits/Examples/BicatOfCatsLimits.v
1522
+ theorems: '*'
1523
+ - path: UniMath/Bicategories/Limits/Examples/DisplayMapSliceLimits.v
1524
+ theorems: '*'
1525
+ - path: UniMath/Bicategories/Limits/Examples/BicatOfEnrichedCatsLimits.v
1526
+ theorems: '*'
1527
+ - path: UniMath/Bicategories/PseudoFunctors/Properties.v
1528
+ theorems: '*'
1529
+ - path: UniMath/Bicategories/PseudoFunctors/Biequivalence.v
1530
+ theorems: '*'
1531
+ - path: UniMath/Bicategories/PseudoFunctors/StrictPseudoFunctor.v
1532
+ theorems: '*'
1533
+ - path: UniMath/Bicategories/PseudoFunctors/Representable.v
1534
+ theorems: '*'
1535
+ - path: UniMath/Bicategories/PseudoFunctors/PseudoFunctor.v
1536
+ theorems: '*'
1537
+ - path: UniMath/Bicategories/PseudoFunctors/Yoneda.v
1538
+ theorems: '*'
1539
+ - path: UniMath/Bicategories/PseudoFunctors/PseudoFunctorLimits.v
1540
+ theorems: '*'
1541
+ - path: UniMath/Bicategories/PseudoFunctors/LocalEquivalenceProperties.v
1542
+ theorems: '*'
1543
+ - path: UniMath/Bicategories/PseudoFunctors/UniversalArrow.v
1544
+ theorems: '*'
1545
+ - path: UniMath/Bicategories/PseudoFunctors/Biadjunction.v
1546
+ theorems: '*'
1547
+ - path: UniMath/Bicategories/PseudoFunctors/Display/Identitor.v
1548
+ theorems: '*'
1549
+ - path: UniMath/Bicategories/PseudoFunctors/Display/Base.v
1550
+ theorems: '*'
1551
+ - path: UniMath/Bicategories/PseudoFunctors/Display/Compositor.v
1552
+ theorems: '*'
1553
+ - path: UniMath/Bicategories/PseudoFunctors/Display/StrictIdentitor.v
1554
+ theorems: '*'
1555
+ - path: UniMath/Bicategories/PseudoFunctors/Display/StrictCompositor.v
1556
+ theorems: '*'
1557
+ - path: UniMath/Bicategories/PseudoFunctors/Display/Map1Cells.v
1558
+ theorems: '*'
1559
+ - path: UniMath/Bicategories/PseudoFunctors/Display/Map2Cells.v
1560
+ theorems: '*'
1561
+ - path: UniMath/Bicategories/PseudoFunctors/Display/StrictPseudoFunctorBicat.v
1562
+ theorems: '*'
1563
+ - path: UniMath/Bicategories/PseudoFunctors/Display/PseudoFunctorBicat.v
1564
+ theorems: '*'
1565
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/OpFunctor.v
1566
+ theorems: '*'
1567
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/BicatOfCatToUnivCat.v
1568
+ theorems: '*'
1569
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/CurryingInBicatOfCats.v
1570
+ theorems: '*'
1571
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/MonadInclusion.v
1572
+ theorems: '*'
1573
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/OpFunctorEnriched.v
1574
+ theorems: '*'
1575
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/Identity.v
1576
+ theorems: '*'
1577
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/StrictToPseudo.v
1578
+ theorems: '*'
1579
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/Strictify.v
1580
+ theorems: '*'
1581
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/CorestrictImage.v
1582
+ theorems: '*'
1583
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/PullbackFunctor.v
1584
+ theorems: '*'
1585
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/PathGroupoid.v
1586
+ theorems: '*'
1587
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/LiftingActegories.v
1588
+ theorems: '*'
1589
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/Constant.v
1590
+ theorems: '*'
1591
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/PseudoFunctorsIntoCat.v
1592
+ theorems: '*'
1593
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/ApFunctor.v
1594
+ theorems: '*'
1595
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/CompositionPseudoFunctor.v
1596
+ theorems: '*'
1597
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/ChangeOfBaseEnriched.v
1598
+ theorems: '*'
1599
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/ConstProduct.v
1600
+ theorems: '*'
1601
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/CatDiag.v
1602
+ theorems: '*'
1603
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/PseudofunctorFromMonoidal.v
1604
+ theorems: '*'
1605
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/Composition.v
1606
+ theorems: '*'
1607
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/Op2OfPseudoFunctor.v
1608
+ theorems: '*'
1609
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/Projection.v
1610
+ theorems: '*'
1611
+ - path: UniMath/Bicategories/PseudoFunctors/Examples/Reindexing.v
1612
+ theorems: '*'
1613
+ - path: UniMath/Bicategories/PseudoFunctors/Preservation/PullbackPreservation.v
1614
+ theorems: '*'
1615
+ - path: UniMath/Bicategories/PseudoFunctors/Preservation/BiadjunctionPreserveCoproducts.v
1616
+ theorems: '*'
1617
+ - path: UniMath/Bicategories/PseudoFunctors/Preservation/Preservation.v
1618
+ theorems: '*'
1619
+ - path: UniMath/Bicategories/PseudoFunctors/Preservation/BiadjunctionPreserveProducts.v
1620
+ theorems: '*'
1621
+ - path: UniMath/Bicategories/PseudoFunctors/Preservation/BiadjunctionPreserveEquifiers.v
1622
+ theorems: '*'
1623
+ - path: UniMath/Bicategories/PseudoFunctors/Preservation/ClosedUnderEquivalence.v
1624
+ theorems: '*'
1625
+ - path: UniMath/Bicategories/PseudoFunctors/Preservation/BiadjunctionPreserveInserters.v
1626
+ theorems: '*'
1627
+ - path: UniMath/Bicategories/PseudoFunctors/Preservation/BiadjunctionPreservation.v
1628
+ theorems: '*'
1629
+ - path: UniMath/Bicategories/DaggerCategories/BicatOfDaggerCats.v
1630
+ theorems: '*'
1631
+ - path: UniMath/Bicategories/ComprehensionCat/DFLCompCat.v
1632
+ theorems: '*'
1633
+ - path: UniMath/Bicategories/ComprehensionCat/BicatOfCompCat.v
1634
+ theorems: '*'
1635
+ - path: UniMath/Bicategories/ComprehensionCat/DFLCompCatNotations.v
1636
+ theorems: '*'
1637
+ - path: UniMath/Bicategories/ComprehensionCat/ComprehensionEso.v
1638
+ theorems: '*'
1639
+ - path: UniMath/Bicategories/ComprehensionCat/CompCatNotations.v
1640
+ theorems: '*'
1641
+ - path: UniMath/Bicategories/ComprehensionCat/LocalProperty/Examples.v
1642
+ theorems: '*'
1643
+ - path: UniMath/Bicategories/ComprehensionCat/LocalProperty/DFLCompCatWithProp.v
1644
+ theorems: '*'
1645
+ - path: UniMath/Bicategories/ComprehensionCat/LocalProperty/LocalProperties.v
1646
+ theorems: '*'
1647
+ - path: UniMath/Bicategories/ComprehensionCat/LocalProperty/CatWithProp.v
1648
+ theorems: '*'
1649
+ - path: UniMath/Bicategories/ComprehensionCat/TypeFormers/UnitTypes.v
1650
+ theorems: '*'
1651
+ - path: UniMath/Bicategories/ComprehensionCat/TypeFormers/PiTypes.v
1652
+ theorems: '*'
1653
+ - path: UniMath/Bicategories/ComprehensionCat/TypeFormers/SigmaTypes.v
1654
+ theorems: '*'
1655
+ - path: UniMath/Bicategories/ComprehensionCat/TypeFormers/SubobjectTypes.v
1656
+ theorems: '*'
1657
+ - path: UniMath/Bicategories/ComprehensionCat/TypeFormers/ProductTypes.v
1658
+ theorems: '*'
1659
+ - path: UniMath/Bicategories/ComprehensionCat/TypeFormers/EqualizerTypes.v
1660
+ theorems: '*'
1661
+ - path: UniMath/Bicategories/ComprehensionCat/TypeFormers/Democracy.v
1662
+ theorems: '*'
1663
+ - path: UniMath/Bicategories/ComprehensionCat/Biequivalence/FinLimToDFLCompCat.v
1664
+ theorems: '*'
1665
+ - path: UniMath/Bicategories/ComprehensionCat/Biequivalence/DFLCompCatToFinLim.v
1666
+ theorems: '*'
1667
+ - path: UniMath/Bicategories/ComprehensionCat/Biequivalence/SubobjectClassifier.v
1668
+ theorems: '*'
1669
+ - path: UniMath/Bicategories/ComprehensionCat/Biequivalence/Unit.v
1670
+ theorems: '*'
1671
+ - path: UniMath/Bicategories/ComprehensionCat/Biequivalence/Counit.v
1672
+ theorems: '*'
1673
+ - path: UniMath/Bicategories/ComprehensionCat/Biequivalence/LocalProperty.v
1674
+ theorems: '*'
1675
+ - path: UniMath/Bicategories/ComprehensionCat/Biequivalence/PiTypesBiequiv.v
1676
+ theorems: '*'
1677
+ - path: UniMath/Bicategories/ComprehensionCat/Biequivalence/Biequiv.v
1678
+ theorems: '*'
1679
+ - path: UniMath/Bicategories/ComprehensionCat/Biequivalence/InternalLanguageTopos.v
1680
+ theorems: '*'
1681
+ - path: UniMath/Bicategories/ComprehensionCat/BicatOfCompCat/FullCompCat.v
1682
+ theorems: '*'
1683
+ - path: UniMath/Bicategories/ComprehensionCat/BicatOfCompCat/DispCatTerminal.v
1684
+ theorems: '*'
1685
+ - path: UniMath/Bicategories/ComprehensionCat/BicatOfCompCat/FibTerminal.v
1686
+ theorems: '*'
1687
+ - path: UniMath/Bicategories/ComprehensionCat/BicatOfCompCat/CompCat.v
1688
+ theorems: '*'
1689
+ - path: UniMath/Bicategories/Modifications/Modification.v
1690
+ theorems: '*'
1691
+ - path: UniMath/Bicategories/Modifications/Examples/Associativity.v
1692
+ theorems: '*'
1693
+ - path: UniMath/Bicategories/Modifications/Examples/ModificationIntoCat.v
1694
+ theorems: '*'
1695
+ - path: UniMath/Bicategories/Modifications/Examples/ApModification.v
1696
+ theorems: '*'
1697
+ - path: UniMath/Bicategories/Modifications/Examples/Unitality.v
1698
+ theorems: '*'
1699
+ - path: UniMath/Bicategories/OtherStructure/Exponentials.v
1700
+ theorems: '*'
1701
+ - path: UniMath/Bicategories/OtherStructure/DualityInvolutionProperties.v
1702
+ theorems: '*'
1703
+ - path: UniMath/Bicategories/OtherStructure/ClassifyingDiscreteOpfib.v
1704
+ theorems: '*'
1705
+ - path: UniMath/Bicategories/OtherStructure/Cores.v
1706
+ theorems: '*'
1707
+ - path: UniMath/Bicategories/OtherStructure/DualityInvolution.v
1708
+ theorems: '*'
1709
+ - path: UniMath/Bicategories/OtherStructure/Examples/StructureBicatOfUnivCats.v
1710
+ theorems: '*'
1711
+ - path: UniMath/Bicategories/OtherStructure/Examples/StructureOneTypes.v
1712
+ theorems: '*'
1713
+ - path: UniMath/Bicategories/OtherStructure/Examples/StructureBicatOfEnrichedCats.v
1714
+ theorems: '*'
1715
+ - path: UniMath/Bicategories/DoubleCategories/DerivedLaws.v
1716
+ theorems: '*'
1717
+ - path: UniMath/Bicategories/DoubleCategories/Basics/DoubleCategoryBasics.v
1718
+ theorems: '*'
1719
+ - path: UniMath/Bicategories/DoubleCategories/Basics/StrictDoubleCatBasics.v
1720
+ theorems: '*'
1721
+ - path: UniMath/Bicategories/DoubleCategories/AlternativeDefinitions/DoubleCatsUnfolded.v
1722
+ theorems: '*'
1723
+ - path: UniMath/Bicategories/DoubleCategories/AlternativeDefinitions/DoubleCatsEquivalentDefinitions.v
1724
+ theorems: '*'
1725
+ - path: UniMath/Bicategories/DoubleCategories/Underlying/VerticalTwoCategory.v
1726
+ theorems: '*'
1727
+ - path: UniMath/Bicategories/DoubleCategories/Underlying/HorizontalBicategory.v
1728
+ theorems: '*'
1729
+ - path: UniMath/Bicategories/DoubleCategories/Underlying/VerticalTwoCategoryStrict.v
1730
+ theorems: '*'
1731
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/CellsAndSquares.v
1732
+ theorems: '*'
1733
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/DerivedLaws.v
1734
+ theorems: '*'
1735
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/Conjoints.v
1736
+ theorems: '*'
1737
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/GlobalUnivalence.v
1738
+ theorems: '*'
1739
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/GregariousEquivalence.v
1740
+ theorems: '*'
1741
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/CompanionPairUnique.v
1742
+ theorems: '*'
1743
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/VerityDoubleBicat.v
1744
+ theorems: '*'
1745
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/UnderlyingCats.v
1746
+ theorems: '*'
1747
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/Core.v
1748
+ theorems: '*'
1749
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/CompanionPairAdjEquiv.v
1750
+ theorems: '*'
1751
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/LocalUnivalence.v
1752
+ theorems: '*'
1753
+ - path: UniMath/Bicategories/DoubleCategories/DoubleBicat/CompanionPairs.v
1754
+ theorems: '*'
1755
+ - path: UniMath/Bicategories/DoubleCategories/DerivedLaws/TransportLaws.v
1756
+ theorems: '*'
1757
+ - path: UniMath/Bicategories/DoubleCategories/DerivedLaws/Variations.v
1758
+ theorems: '*'
1759
+ - path: UniMath/Bicategories/DoubleCategories/DerivedLaws/Unitors.v
1760
+ theorems: '*'
1761
+ - path: UniMath/Bicategories/DoubleCategories/Examples/ParaDoubleCat.v
1762
+ theorems: '*'
1763
+ - path: UniMath/Bicategories/DoubleCategories/Examples/SpansDoubleCat.v
1764
+ theorems: '*'
1765
+ - path: UniMath/Bicategories/DoubleCategories/Examples/Coreflections.v
1766
+ theorems: '*'
1767
+ - path: UniMath/Bicategories/DoubleCategories/Examples/TransposeStrict.v
1768
+ theorems: '*'
1769
+ - path: UniMath/Bicategories/DoubleCategories/Examples/StructuredCospansDoubleFunctor.v
1770
+ theorems: '*'
1771
+ - path: UniMath/Bicategories/DoubleCategories/Examples/FullSubDoubleCat.v
1772
+ theorems: '*'
1773
+ - path: UniMath/Bicategories/DoubleCategories/Examples/LensesDoubleCat.v
1774
+ theorems: '*'
1775
+ - path: UniMath/Bicategories/DoubleCategories/Examples/RelationsDoubleCat.v
1776
+ theorems: '*'
1777
+ - path: UniMath/Bicategories/DoubleCategories/Examples/DoubleCatOnDispCat.v
1778
+ theorems: '*'
1779
+ - path: UniMath/Bicategories/DoubleCategories/Examples/MateDoubleBicat.v
1780
+ theorems: '*'
1781
+ - path: UniMath/Bicategories/DoubleCategories/Examples/SquareDoubleCatTwo.v
1782
+ theorems: '*'
1783
+ - path: UniMath/Bicategories/DoubleCategories/Examples/BiSetcatToDoubleCat.v
1784
+ theorems: '*'
1785
+ - path: UniMath/Bicategories/DoubleCategories/Examples/SquareDoubleBicat.v
1786
+ theorems: '*'
1787
+ - path: UniMath/Bicategories/DoubleCategories/Examples/TransposeDoubleBicat.v
1788
+ theorems: '*'
1789
+ - path: UniMath/Bicategories/DoubleCategories/Examples/HorizontalDual.v
1790
+ theorems: '*'
1791
+ - path: UniMath/Bicategories/DoubleCategories/Examples/UnitDoubleCat.v
1792
+ theorems: '*'
1793
+ - path: UniMath/Bicategories/DoubleCategories/Examples/StructuredCospansDoubleCat.v
1794
+ theorems: '*'
1795
+ - path: UniMath/Bicategories/DoubleCategories/Examples/OpDoubleCat.v
1796
+ theorems: '*'
1797
+ - path: UniMath/Bicategories/DoubleCategories/Examples/ProfunctorDoubleBicat.v
1798
+ theorems: '*'
1799
+ - path: UniMath/Bicategories/DoubleCategories/Examples/DoubleCatToDoubleBicat.v
1800
+ theorems: '*'
1801
+ - path: UniMath/Bicategories/DoubleCategories/Examples/KleisliDoubleCat.v
1802
+ theorems: '*'
1803
+ - path: UniMath/Bicategories/DoubleCategories/Examples/ProfunctorDoubleCat.v
1804
+ theorems: '*'
1805
+ - path: UniMath/Bicategories/DoubleCategories/Examples/ProductDoubleCat.v
1806
+ theorems: '*'
1807
+ - path: UniMath/Bicategories/DoubleCategories/Examples/SquareDoubleCat.v
1808
+ theorems: '*'
1809
+ - path: UniMath/Bicategories/DoubleCategories/Core/DoubleCats.v
1810
+ theorems: '*'
1811
+ - path: UniMath/Bicategories/DoubleCategories/Core/CompanionsAndConjoints.v
1812
+ theorems: '*'
1813
+ - path: UniMath/Bicategories/DoubleCategories/Core/UnivalentDoubleCats.v
1814
+ theorems: '*'
1815
+ - path: UniMath/Bicategories/DoubleCategories/Core/DoubleTransformation.v
1816
+ theorems: '*'
1817
+ - path: UniMath/Bicategories/DoubleCategories/Core/CatOfStrictDoubleCats.v
1818
+ theorems: '*'
1819
+ - path: UniMath/Bicategories/DoubleCategories/Core/InvertiblesAndEquivalences.v
1820
+ theorems: '*'
1821
+ - path: UniMath/Bicategories/DoubleCategories/Core/StrictDoubleCats.v
1822
+ theorems: '*'
1823
+ - path: UniMath/Bicategories/DoubleCategories/Core/PseudoDoubleSetCats.v
1824
+ theorems: '*'
1825
+ - path: UniMath/Bicategories/DoubleCategories/Core/DoubleFunctor.v
1826
+ theorems: '*'
1827
+ - path: UniMath/Bicategories/DoubleCategories/Core/BicatOfDoubleCats.v
1828
+ theorems: '*'
1829
+ - path: UniMath/Bicategories/DoubleCategories/Core/CatOfPseudoDoubleCats.v
1830
+ theorems: '*'
1831
+ - path: UniMath/Bicategories/DoubleCategories/Core/SymmetricUnivalent.v
1832
+ theorems: '*'
1833
+ - path: UniMath/Bicategories/DoubleCategories/Core/DoubleFunctor/LeftUnitor.v
1834
+ theorems: '*'
1835
+ - path: UniMath/Bicategories/DoubleCategories/Core/DoubleFunctor/Basics.v
1836
+ theorems: '*'
1837
+ - path: UniMath/Bicategories/DoubleCategories/Core/DoubleFunctor/RightUnitor.v
1838
+ theorems: '*'
1839
+ - path: UniMath/Bicategories/DoubleCategories/Core/DoubleFunctor/Associator.v
1840
+ theorems: '*'
1841
+ - path: UniMath/Bicategories/RezkCompletions/BicatToLocalUnivalentBicat.v
1842
+ theorems: '*'
1843
+ - path: UniMath/Bicategories/RezkCompletions/RezkCompletionOfBicategory.v
1844
+ theorems: '*'
1845
+ - path: UniMath/Bicategories/RezkCompletions/StructuredCats/TerminalObject.v
1846
+ theorems: '*'
1847
+ - path: UniMath/Bicategories/RezkCompletions/StructuredCats/BinProducts.v
1848
+ theorems: '*'
1849
+ - path: UniMath/Bicategories/DisplayedBicats/FiberBicategory.v
1850
+ theorems: '*'
1851
+ - path: UniMath/Bicategories/DisplayedBicats/DispModification.v
1852
+ theorems: '*'
1853
+ - path: UniMath/Bicategories/DisplayedBicats/DispBiadjunction.v
1854
+ theorems: '*'
1855
+ - path: UniMath/Bicategories/DisplayedBicats/UnivalenceTechniques.v
1856
+ theorems: '*'
1857
+ - path: UniMath/Bicategories/DisplayedBicats/DispBuilders.v
1858
+ theorems: '*'
1859
+ - path: UniMath/Bicategories/DisplayedBicats/DisplayedUniversalArrow.v
1860
+ theorems: '*'
1861
+ - path: UniMath/Bicategories/DisplayedBicats/Cartesians.v
1862
+ theorems: '*'
1863
+ - path: UniMath/Bicategories/DisplayedBicats/CleavingOfBicatIsAProp.v
1864
+ theorems: '*'
1865
+ - path: UniMath/Bicategories/DisplayedBicats/FiberCategory.v
1866
+ theorems: '*'
1867
+ - path: UniMath/Bicategories/DisplayedBicats/DispBiequivalence.v
1868
+ theorems: '*'
1869
+ - path: UniMath/Bicategories/DisplayedBicats/ProductDispBiequiv.v
1870
+ theorems: '*'
1871
+ - path: UniMath/Bicategories/DisplayedBicats/DispTransformation.v
1872
+ theorems: '*'
1873
+ - path: UniMath/Bicategories/DisplayedBicats/DispBicatSection.v
1874
+ theorems: '*'
1875
+ - path: UniMath/Bicategories/DisplayedBicats/DispAdjunctions.v
1876
+ theorems: '*'
1877
+ - path: UniMath/Bicategories/DisplayedBicats/DispUnivalence.v
1878
+ theorems: '*'
1879
+ - path: UniMath/Bicategories/DisplayedBicats/DispToFiberEquivalence.v
1880
+ theorems: '*'
1881
+ - path: UniMath/Bicategories/DisplayedBicats/CleavingOfBicat.v
1882
+ theorems: '*'
1883
+ - path: UniMath/Bicategories/DisplayedBicats/EquivalenceBetweenCartesians.v
1884
+ theorems: '*'
1885
+ - path: UniMath/Bicategories/DisplayedBicats/DisplayedUniversalArrowOnCat.v
1886
+ theorems: '*'
1887
+ - path: UniMath/Bicategories/DisplayedBicats/DispInvertibles.v
1888
+ theorems: '*'
1889
+ - path: UniMath/Bicategories/DisplayedBicats/DispTransportLaws.v
1890
+ theorems: '*'
1891
+ - path: UniMath/Bicategories/DisplayedBicats/DispBicat.v
1892
+ theorems: '*'
1893
+ - path: UniMath/Bicategories/DisplayedBicats/CartesianPseudoFunctor.v
1894
+ theorems: '*'
1895
+ - path: UniMath/Bicategories/DisplayedBicats/DispPseudofunctor.v
1896
+ theorems: '*'
1897
+ - path: UniMath/Bicategories/DisplayedBicats/FiberBicategory/DisplayMapFiber.v
1898
+ theorems: '*'
1899
+ - path: UniMath/Bicategories/DisplayedBicats/FiberBicategory/FunctorFromCleaving.v
1900
+ theorems: '*'
1901
+ - path: UniMath/Bicategories/DisplayedBicats/FiberBicategory/CodomainFiber.v
1902
+ theorems: '*'
1903
+ - path: UniMath/Bicategories/DisplayedBicats/FiberBicategory/SliceFiber.v
1904
+ theorems: '*'
1905
+ - path: UniMath/Bicategories/DisplayedBicats/FiberBicategory/TrivialFiber.v
1906
+ theorems: '*'
1907
+ - path: UniMath/Bicategories/DisplayedBicats/FiberBicategory/FiberBicategory2.v
1908
+ theorems: '*'
1909
+ - path: UniMath/Bicategories/DisplayedBicats/FiberBicategory/FiberBicategory1.v
1910
+ theorems: '*'
1911
+ - path: UniMath/Bicategories/DisplayedBicats/ExamplesOfCleavings/CodomainCleaving.v
1912
+ theorems: '*'
1913
+ - path: UniMath/Bicategories/DisplayedBicats/ExamplesOfCleavings/FibrationCleaving.v
1914
+ theorems: '*'
1915
+ - path: UniMath/Bicategories/DisplayedBicats/ExamplesOfCleavings/OpFibrationCleaving.v
1916
+ theorems: '*'
1917
+ - path: UniMath/Bicategories/DisplayedBicats/ExamplesOfCleavings/FunctorsIntoCatCleaving.v
1918
+ theorems: '*'
1919
+ - path: UniMath/Bicategories/DisplayedBicats/ExamplesOfCleavings/SliceCleaving.v
1920
+ theorems: '*'
1921
+ - path: UniMath/Bicategories/DisplayedBicats/ExamplesOfCleavings/TrivialCleaving.v
1922
+ theorems: '*'
1923
+ - path: UniMath/Bicategories/DisplayedBicats/ExamplesOfCleavings/DisplayMapBicatCleaving.v
1924
+ theorems: '*'
1925
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/LaxSlice.v
1926
+ theorems: '*'
1927
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/DisplayedCatToBicat.v
1928
+ theorems: '*'
1929
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/ContravariantFunctor.v
1930
+ theorems: '*'
1931
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/Prod.v
1932
+ theorems: '*'
1933
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/KleisliTriple.v
1934
+ theorems: '*'
1935
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/DispBicatOnCatToUniv.v
1936
+ theorems: '*'
1937
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/DispDepProd.v
1938
+ theorems: '*'
1939
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/Slice.v
1940
+ theorems: '*'
1941
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/Cofunctormap.v
1942
+ theorems: '*'
1943
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/LiftDispBicat.v
1944
+ theorems: '*'
1945
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/PointedOneTypes.v
1946
+ theorems: '*'
1947
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/Displayed2Inserter.v
1948
+ theorems: '*'
1949
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/Monads.v
1950
+ theorems: '*'
1951
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/DisplayMapBicatToDispBicat.v
1952
+ theorems: '*'
1953
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/DispBicatOfTwoSidedDispCat.v
1954
+ theorems: '*'
1955
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/Add2Cell.v
1956
+ theorems: '*'
1957
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/PointedGroupoid.v
1958
+ theorems: '*'
1959
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/FullSub.v
1960
+ theorems: '*'
1961
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/DisplayedInserter.v
1962
+ theorems: '*'
1963
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/CategoriesWithStructure.v
1964
+ theorems: '*'
1965
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/Trivial.v
1966
+ theorems: '*'
1967
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/DisplayMapBicatSlice.v
1968
+ theorems: '*'
1969
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/EnrichedCats.v
1970
+ theorems: '*'
1971
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/BicatOfInvertibles.v
1972
+ theorems: '*'
1973
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/Sub1Cell.v
1974
+ theorems: '*'
1975
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/Algebras.v
1976
+ theorems: '*'
1977
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/EndoMap.v
1978
+ theorems: '*'
1979
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/DispBicatOfDispCats.v
1980
+ theorems: '*'
1981
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/MonadsLax.v
1982
+ theorems: '*'
1983
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/MonadKtripleBiequiv.v
1984
+ theorems: '*'
1985
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/FunctorsIntoCat.v
1986
+ theorems: '*'
1987
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/Sigma.v
1988
+ theorems: '*'
1989
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/CwF.v
1990
+ theorems: '*'
1991
+ - path: UniMath/Bicategories/DisplayedBicats/Examples/Codomain.v
1992
+ theorems: '*'
1993
+ - path: UniMath/Bicategories/MonoidalCategories/ActionOfEndomorphismsInBicat.v
1994
+ theorems: '*'
1995
+ - path: UniMath/Bicategories/MonoidalCategories/EquivalenceActegoriesAndActions.v
1996
+ theorems: '*'
1997
+ - path: UniMath/Bicategories/MonoidalCategories/PointedFunctorsMonoidal.v
1998
+ theorems: '*'
1999
+ - path: UniMath/Bicategories/MonoidalCategories/IdempotencePointedFunctorsWhiskeredMonoidal.v
2000
+ theorems: '*'
2001
+ - path: UniMath/Bicategories/MonoidalCategories/ActionBasedStrength.v
2002
+ theorems: '*'
2003
+ - path: UniMath/Bicategories/MonoidalCategories/ActionBasedStrongFunctorCategory.v
2004
+ theorems: '*'
2005
+ - path: UniMath/Bicategories/MonoidalCategories/BicatOfActegoriesFinalObject.v
2006
+ theorems: '*'
2007
+ - path: UniMath/Bicategories/MonoidalCategories/WhiskeredMonoidalFromBicategory.v
2008
+ theorems: '*'
2009
+ - path: UniMath/Bicategories/MonoidalCategories/BicatOfWhiskeredMonCats.v
2010
+ theorems: '*'
2011
+ - path: UniMath/Bicategories/MonoidalCategories/ActionBasedStrongFunctorsWhiskeredMonoidal.v
2012
+ theorems: '*'
2013
+ - path: UniMath/Bicategories/MonoidalCategories/BicatOfActegories.v
2014
+ theorems: '*'
2015
+ - path: UniMath/Bicategories/MonoidalCategories/MonadsAsMonoidsWhiskered.v
2016
+ theorems: '*'
2017
+ - path: UniMath/Bicategories/MonoidalCategories/BicatOfActionsInBicat.v
2018
+ theorems: '*'
2019
+ - path: UniMath/Bicategories/MonoidalCategories/ConstructionOfActions.v
2020
+ theorems: '*'
2021
+ - path: UniMath/Bicategories/MonoidalCategories/EndofunctorsMonoidal.v
2022
+ theorems: '*'
2023
+ - path: UniMath/Bicategories/MonoidalCategories/MonoidalFromBicategory.v
2024
+ theorems: '*'
2025
+ - path: UniMath/Bicategories/MonoidalCategories/MonoidalDialgebrasInserters.v
2026
+ theorems: '*'
2027
+ - path: UniMath/Bicategories/MonoidalCategories/Actions.v
2028
+ theorems: '*'
2029
+ - path: UniMath/Bicategories/MonoidalCategories/BicatOfWhiskeredMonCatsLax.v
2030
+ theorems: '*'
2031
+ - path: UniMath/Bicategories/MonoidalCategories/ActionsFormBicategory.v
2032
+ theorems: '*'
2033
+ - path: UniMath/Bicategories/MonoidalCategories/ActionBasedStrongFunctorsMonoidal.v
2034
+ theorems: '*'
2035
+ - path: UniMath/Bicategories/MonoidalCategories/PointedFunctorsWhiskeredMonoidal.v
2036
+ theorems: '*'
2037
+ - path: UniMath/Bicategories/MonoidalCategories/ActionOfEndomorphismsInBicatWhiskered.v
2038
+ theorems: '*'
2039
+ - path: UniMath/Bicategories/MonoidalCategories/BicatOfWhiskeredMonCatsFinalObject.v
2040
+ theorems: '*'
2041
+ - path: UniMath/Bicategories/MonoidalCategories/EndofunctorsWhiskeredMonoidal.v
2042
+ theorems: '*'
2043
+ - path: UniMath/Bicategories/MonoidalCategories/UnivalenceMonCat/EquivalenceMonCatCurried.v
2044
+ theorems: '*'
2045
+ - path: UniMath/Bicategories/MonoidalCategories/UnivalenceMonCat/TensorLayer.v
2046
+ theorems: '*'
2047
+ - path: UniMath/Bicategories/MonoidalCategories/UnivalenceMonCat/TensorUnitLayer.v
2048
+ theorems: '*'
2049
+ - path: UniMath/Bicategories/MonoidalCategories/UnivalenceMonCat/AssociatorUnitorsLayer.v
2050
+ theorems: '*'
2051
+ - path: UniMath/Bicategories/MonoidalCategories/UnivalenceMonCat/UnitLayer.v
2052
+ theorems: '*'
2053
+ - path: UniMath/Bicategories/MonoidalCategories/UnivalenceMonCat/CurriedMonoidalCategories.v
2054
+ theorems: '*'
2055
+ - path: UniMath/Bicategories/MonoidalCategories/UnivalenceMonCat/FinalLayer.v
2056
+ theorems: '*'
2057
+ - path: UniMath/Bicategories/MonoidalCategories/UnivalenceMonCat/EquivalenceWhiskeredCurried.v
2058
+ theorems: '*'
2059
+ - path: UniMath/Bicategories/MonoidalCategories/UnivalenceMonCat/EquivalenceMonCatNonCurried.v
2060
+ theorems: '*'
2061
+ - path: UniMath/Bicategories/Grothendieck/Biequivalence.v
2062
+ theorems: '*'
2063
+ - path: UniMath/Bicategories/Grothendieck/Unit.v
2064
+ theorems: '*'
2065
+ - path: UniMath/Bicategories/Grothendieck/Counit.v
2066
+ theorems: '*'
2067
+ - path: UniMath/Bicategories/Grothendieck/FiberwiseEquiv.v
2068
+ theorems: '*'
2069
+ - path: UniMath/Bicategories/Grothendieck/FibrationToPseudoFunctor.v
2070
+ theorems: '*'
2071
+ - path: UniMath/Bicategories/Grothendieck/PseudoFunctorToFibration.v
2072
+ theorems: '*'
2073
+ - path: UniMath/Bicategories/Core/TransportLaws.v
2074
+ theorems: '*'
2075
+ - path: UniMath/Bicategories/Core/AdjointUnique.v
2076
+ theorems: '*'
2077
+ - path: UniMath/Bicategories/Core/EquivToAdjequiv.v
2078
+ theorems: '*'
2079
+ - path: UniMath/Bicategories/Core/Discreteness.v
2080
+ theorems: '*'
2081
+ - path: UniMath/Bicategories/Core/Strictness.v
2082
+ theorems: '*'
2083
+ - path: UniMath/Bicategories/Core/Univalence.v
2084
+ theorems: '*'
2085
+ - path: UniMath/Bicategories/Core/Bicat.v
2086
+ theorems: '*'
2087
+ - path: UniMath/Bicategories/Core/UnivalenceOp.v
2088
+ theorems: '*'
2089
+ - path: UniMath/Bicategories/Core/YonedaLemma.v
2090
+ theorems: '*'
2091
+ - path: UniMath/Bicategories/Core/Unitors.v
2092
+ theorems: '*'
2093
+ - path: UniMath/Bicategories/Core/Invertible_2cells.v
2094
+ theorems: '*'
2095
+ - path: UniMath/Bicategories/Core/BicategoryLaws.v
2096
+ theorems: '*'
2097
+ - path: UniMath/Bicategories/Core/Examples/Groupoids.v
2098
+ theorems: '*'
2099
+ - path: UniMath/Bicategories/Core/Examples/BicategoryFromMonoidal.v
2100
+ theorems: '*'
2101
+ - path: UniMath/Bicategories/Core/Examples/Image.v
2102
+ theorems: '*'
2103
+ - path: UniMath/Bicategories/Core/Examples/StructuredCategories.v
2104
+ theorems: '*'
2105
+ - path: UniMath/Bicategories/Core/Examples/BicatOfUnivCats.v
2106
+ theorems: '*'
2107
+ - path: UniMath/Bicategories/Core/Examples/OneTypes.v
2108
+ theorems: '*'
2109
+ - path: UniMath/Bicategories/Core/Examples/OpMorBicat.v
2110
+ theorems: '*'
2111
+ - path: UniMath/Bicategories/Core/Examples/FibSlice.v
2112
+ theorems: '*'
2113
+ - path: UniMath/Bicategories/Core/Examples/OpCellBicat.v
2114
+ theorems: '*'
2115
+ - path: UniMath/Bicategories/Core/Examples/BicategoryFromWhiskeredMonoidal.v
2116
+ theorems: '*'
2117
+ - path: UniMath/Bicategories/Core/Examples/PointedOneTypesBicat.v
2118
+ theorems: '*'
2119
+ - path: UniMath/Bicategories/Core/Examples/Initial.v
2120
+ theorems: '*'
2121
+ - path: UniMath/Bicategories/Core/Examples/Final.v
2122
+ theorems: '*'
2123
+ - path: UniMath/Bicategories/Core/Examples/OpFibSlice.v
2124
+ theorems: '*'
2125
+ - path: UniMath/Bicategories/Core/Examples/StrictCats.v
2126
+ theorems: '*'
2127
+ - path: UniMath/Bicategories/Core/Examples/TwoType.v
2128
+ theorems: '*'
2129
+ - path: UniMath/Bicategories/Core/Examples/BicatOfCats.v
2130
+ theorems: '*'
2131
+ - path: UniMath/Bicategories/Core/Examples/DiscreteBicat.v
2132
+ theorems: '*'
2133
+ - path: UniMath/Bicategories/Morphisms/Monadic.v
2134
+ theorems: '*'
2135
+ - path: UniMath/Bicategories/Morphisms/Properties.v
2136
+ theorems: '*'
2137
+ - path: UniMath/Bicategories/Morphisms/DiscreteMorphisms.v
2138
+ theorems: '*'
2139
+ - path: UniMath/Bicategories/Morphisms/Eso.v
2140
+ theorems: '*'
2141
+ - path: UniMath/Bicategories/Morphisms/ExtensionsAndLiftings.v
2142
+ theorems: '*'
2143
+ - path: UniMath/Bicategories/Morphisms/FullyFaithful.v
2144
+ theorems: '*'
2145
+ - path: UniMath/Bicategories/Morphisms/Adjunctions.v
2146
+ theorems: '*'
2147
+ - path: UniMath/Bicategories/Morphisms/InternalStreetOpFibration.v
2148
+ theorems: '*'
2149
+ - path: UniMath/Bicategories/Morphisms/InternalStreetFibration.v
2150
+ theorems: '*'
2151
+ - path: UniMath/Bicategories/Morphisms/Examples/MorphismsInOp1Bicat.v
2152
+ theorems: '*'
2153
+ - path: UniMath/Bicategories/Morphisms/Examples/FibrationsInStrictCats.v
2154
+ theorems: '*'
2155
+ - path: UniMath/Bicategories/Morphisms/Examples/MorphismsInSliceBicat.v
2156
+ theorems: '*'
2157
+ - path: UniMath/Bicategories/Morphisms/Examples/MorphismsInOneTypes.v
2158
+ theorems: '*'
2159
+ - path: UniMath/Bicategories/Morphisms/Examples/MorphismsInOp2Bicat.v
2160
+ theorems: '*'
2161
+ - path: UniMath/Bicategories/Morphisms/Examples/FibrationsInBicatOfUnivCats.v
2162
+ theorems: '*'
2163
+ - path: UniMath/Bicategories/Morphisms/Examples/EsosInBicatOfUnivCats.v
2164
+ theorems: '*'
2165
+ - path: UniMath/Bicategories/Morphisms/Examples/MorphismsInBicatOfUnivCats.v
2166
+ theorems: '*'
2167
+ - path: UniMath/Bicategories/Morphisms/Examples/MorphismsInBicatOfEnrichedCats.v
2168
+ theorems: '*'
2169
+ - path: UniMath/Bicategories/Morphisms/Examples/MorphismsInStructuredCat.v
2170
+ theorems: '*'
2171
+ - path: UniMath/Bicategories/Morphisms/Properties/FromInitial.v
2172
+ theorems: '*'
2173
+ - path: UniMath/Bicategories/Morphisms/Properties/ClosedUnderPullback.v
2174
+ theorems: '*'
2175
+ - path: UniMath/Bicategories/Morphisms/Properties/AdjunctionsRepresentable.v
2176
+ theorems: '*'
2177
+ - path: UniMath/Bicategories/Morphisms/Properties/Projections.v
2178
+ theorems: '*'
2179
+ - path: UniMath/Bicategories/Morphisms/Properties/ContainsAdjEquiv.v
2180
+ theorems: '*'
2181
+ - path: UniMath/Bicategories/Morphisms/Properties/Composition.v
2182
+ theorems: '*'
2183
+ - path: UniMath/Bicategories/Morphisms/Properties/EsoProperties.v
2184
+ theorems: '*'
2185
+ - path: UniMath/Bicategories/Morphisms/Properties/ClosedUnderInvertibles.v
2186
+ theorems: '*'
2187
+ - path: UniMath/Bicategories/Logic/DisplayMapBicat.v
2188
+ theorems: '*'
2189
+ - path: UniMath/Bicategories/Logic/ComprehensionBicat.v
2190
+ theorems: '*'
2191
+ - path: UniMath/Bicategories/Logic/Examples/TrivialComprehensionBicat.v
2192
+ theorems: '*'
2193
+ - path: UniMath/Bicategories/Logic/Examples/FunctorsIntoCatComprehensionBicat.v
2194
+ theorems: '*'
2195
+ - path: UniMath/Bicategories/Logic/Examples/FibrationsComprehensionBicat.v
2196
+ theorems: '*'
2197
+ - path: UniMath/Bicategories/Logic/Examples/DisplayMapComprehensionBicat.v
2198
+ theorems: '*'
2199
+ - path: UniMath/Bicategories/Logic/Examples/OpfibrationsComprehensionBicat.v
2200
+ theorems: '*'
2201
+ - path: UniMath/Bicategories/Logic/Examples/PullbackComprehensionBicat.v
2202
+ theorems: '*'
2203
+ - path: UniMath/Bicategories/OrthogonalFactorization/EnrichedEsoFactorization.v
2204
+ theorems: '*'
2205
+ - path: UniMath/Bicategories/OrthogonalFactorization/EsoFactorizationSystem.v
2206
+ theorems: '*'
2207
+ - path: UniMath/Bicategories/OrthogonalFactorization/Orthogonality.v
2208
+ theorems: '*'
2209
+ - path: UniMath/Bicategories/OrthogonalFactorization/FactorizationSystem.v
2210
+ theorems: '*'
2211
+ - path: UniMath/AlgebraicTheories/RepresentationTheorem.v
2212
+ theorems: '*'
2213
+ - path: UniMath/AlgebraicTheories/AlgebraicTheories.v
2214
+ theorems: '*'
2215
+ - path: UniMath/AlgebraicTheories/PresheafMorphisms.v
2216
+ theorems: '*'
2217
+ - path: UniMath/AlgebraicTheories/AlgebraicTheoryCategoryCore.v
2218
+ theorems: '*'
2219
+ - path: UniMath/AlgebraicTheories/All.v
2220
+ theorems: '*'
2221
+ - path: UniMath/AlgebraicTheories/FiniteSetSkeleton.v
2222
+ theorems: '*'
2223
+ - path: UniMath/AlgebraicTheories/Presheaves.v
2224
+ theorems: '*'
2225
+ - path: UniMath/AlgebraicTheories/PresheafCategory.v
2226
+ theorems: '*'
2227
+ - path: UniMath/AlgebraicTheories/AlgebraCategory.v
2228
+ theorems: '*'
2229
+ - path: UniMath/AlgebraicTheories/IndexedSetCategory.v
2230
+ theorems: '*'
2231
+ - path: UniMath/AlgebraicTheories/LambdaCalculus.v
2232
+ theorems: '*'
2233
+ - path: UniMath/AlgebraicTheories/Algebras.v
2234
+ theorems: '*'
2235
+ - path: UniMath/AlgebraicTheories/AlgebraicTheoryCategory.v
2236
+ theorems: '*'
2237
+ - path: UniMath/AlgebraicTheories/AlgebraicTheoryMorphisms.v
2238
+ theorems: '*'
2239
+ - path: UniMath/AlgebraicTheories/LambdaTheories.v
2240
+ theorems: '*'
2241
+ - path: UniMath/AlgebraicTheories/AlgebraCategoryCore.v
2242
+ theorems: '*'
2243
+ - path: UniMath/AlgebraicTheories/LambdaTheoryCategoryCore.v
2244
+ theorems: '*'
2245
+ - path: UniMath/AlgebraicTheories/LambdaTheoryCategory.v
2246
+ theorems: '*'
2247
+ - path: UniMath/AlgebraicTheories/LambdaTheoryMorphisms.v
2248
+ theorems: '*'
2249
+ - path: UniMath/AlgebraicTheories/LambdaAlgebraMonoid.v
2250
+ theorems: '*'
2251
+ - path: UniMath/AlgebraicTheories/AlgebraMorphisms.v
2252
+ theorems: '*'
2253
+ - path: UniMath/AlgebraicTheories/PresheafCategoryCore.v
2254
+ theorems: '*'
2255
+ - path: UniMath/AlgebraicTheories/Examples/EndomorphismTheory.v
2256
+ theorems: '*'
2257
+ - path: UniMath/AlgebraicTheories/Examples/FreeObjectTheory.v
2258
+ theorems: '*'
2259
+ - path: UniMath/AlgebraicTheories/Examples/OnePointTheory.v
2260
+ theorems: '*'
2261
+ - path: UniMath/AlgebraicTheories/Examples/ProjectionsTheory.v
2262
+ theorems: '*'
2263
+ - path: UniMath/AlgebraicTheories/Examples/FreeMonoidTheory.v
2264
+ theorems: '*'
2265
+ - path: UniMath/AlgebraicTheories/Examples/LambdaCalculus.v
2266
+ theorems: '*'
2267
+ - path: UniMath/AlgebraicTheories/Examples/FreeTheory.v
2268
+ theorems: '*'
2269
+ - path: UniMath/AlgebraicTheories/Examples/Plus1Presheaf.v
2270
+ theorems: '*'
2271
+ - path: UniMath/AlgebraicTheories/FundamentalTheorem/SurjectivePrecomposition.v
2272
+ theorems: '*'
2273
+ - path: UniMath/AlgebraicTheories/FundamentalTheorem/AlgebraToTheory.v
2274
+ theorems: '*'
2275
+ - path: UniMath/AlgebraicTheories/FundamentalTheorem/CommonUtilities/KaroubiEnvelope.v
2276
+ theorems: '*'
2277
+ - path: UniMath/AlgebraicTheories/FundamentalTheorem/CommonUtilities/MonoidActions.v
2278
+ theorems: '*'
2279
+ - path: UniMath/AlgebraicTheories/FundamentalTheorem/SpecificUtilities/LambdaTerms.v
2280
+ theorems: '*'
2281
+ - path: UniMath/Paradoxes/All.v
2282
+ theorems: '*'
2283
+ - path: UniMath/Paradoxes/GirardsParadox.v
2284
+ theorems: '*'
2285
+ - path: UniMath/ModelCategories/NWFSisWFS.v
2286
+ theorems: '*'
2287
+ - path: UniMath/ModelCategories/Retract.v
2288
+ theorems: '*'
2289
+ - path: UniMath/ModelCategories/All.v
2290
+ theorems: '*'
2291
+ - path: UniMath/ModelCategories/Helpers.v
2292
+ theorems: '*'
2293
+ - path: UniMath/ModelCategories/Examples.v
2294
+ theorems: '*'
2295
+ - path: UniMath/ModelCategories/MorphismClass.v
2296
+ theorems: '*'
2297
+ - path: UniMath/ModelCategories/NWFS.v
2298
+ theorems: '*'
2299
+ - path: UniMath/ModelCategories/WeakEquivalences.v
2300
+ theorems: '*'
2301
+ - path: UniMath/ModelCategories/Lifting.v
2302
+ theorems: '*'
2303
+ - path: UniMath/ModelCategories/WFS.v
2304
+ theorems: '*'
2305
+ - path: UniMath/ModelCategories/ModelCategory.v
2306
+ theorems: '*'
2307
+ - path: UniMath/ModelCategories/Generated/LiftingWithClass.v
2308
+ theorems: '*'
2309
+ - path: UniMath/ModelCategories/Generated/LNWFSMonoidalStructure.v
2310
+ theorems: '*'
2311
+ - path: UniMath/ModelCategories/Generated/SmallObjectArgument.v
2312
+ theorems: '*'
2313
+ - path: UniMath/ModelCategories/Generated/MonoidalHelpers.v
2314
+ theorems: '*'
2315
+ - path: UniMath/ModelCategories/Generated/LNWFSHelpers.v
2316
+ theorems: '*'
2317
+ - path: UniMath/ModelCategories/Generated/GenericFreeMonoidSequence.v
2318
+ theorems: '*'
2319
+ - path: UniMath/ModelCategories/Generated/FFMonoidalStructure.v
2320
+ theorems: '*'
2321
+ - path: UniMath/ModelCategories/Generated/LNWFSCocomplete.v
2322
+ theorems: '*'
2323
+ - path: UniMath/ModelCategories/Generated/OneStepMonadSmall.v
2324
+ theorems: '*'
2325
+ - path: UniMath/ModelCategories/Generated/LNWFSClosed.v
2326
+ theorems: '*'
2327
+ - path: UniMath/ModelCategories/Generated/GenericFreeMonoid.v
2328
+ theorems: '*'
2329
+ - path: UniMath/ModelCategories/Generated/OneStepMonad.v
2330
+ theorems: '*'
2331
+ - path: UniMath/ModelCategories/Generated/LNWFSSmallnessReduction.v
2332
+ theorems: '*'
2333
+ - path: UniMath/PAdics/lemmas.v
2334
+ theorems: '*'
2335
+ - path: UniMath/PAdics/All.v
2336
+ theorems: '*'
2337
+ - path: UniMath/PAdics/fps.v
2338
+ theorems: '*'
2339
+ - path: UniMath/PAdics/padics.v
2340
+ theorems: '*'
2341
+ - path: UniMath/PAdics/frac.v
2342
+ theorems: '*'
2343
+ - path: UniMath/PAdics/z_mod_p.v
2344
+ theorems: '*'
2345
+ - path: UniMath/Algebra/Universal.v
2346
+ theorems: '*'
2347
+ - path: UniMath/Algebra/ConstructiveStructures.v
2348
+ theorems: '*'
2349
+ - path: UniMath/Algebra/Modules.v
2350
+ theorems: '*'
2351
+ - path: UniMath/Algebra/GroupAction.v
2352
+ theorems: '*'
2353
+ - path: UniMath/Algebra/All.v
2354
+ theorems: '*'
2355
+ - path: UniMath/Algebra/Domains_and_Fields.v
2356
+ theorems: '*'
2357
+ - path: UniMath/Algebra/Groups.v
2358
+ theorems: '*'
2359
+ - path: UniMath/Algebra/Monoids.v
2360
+ theorems: '*'
2361
+ - path: UniMath/Algebra/Free_Monoids_and_Groups.v
2362
+ theorems: '*'
2363
+ - path: UniMath/Algebra/Archimedean.v
2364
+ theorems: '*'
2365
+ - path: UniMath/Algebra/Apartness.v
2366
+ theorems: '*'
2367
+ - path: UniMath/Algebra/RigsAndRings.v
2368
+ theorems: '*'
2369
+ - path: UniMath/Algebra/Tests.v
2370
+ theorems: '*'
2371
+ - path: UniMath/Algebra/Matrix.v
2372
+ theorems: '*'
2373
+ - path: UniMath/Algebra/BinaryOperations.v
2374
+ theorems: '*'
2375
+ - path: UniMath/Algebra/DivisionRig.v
2376
+ theorems: '*'
2377
+ - path: UniMath/Algebra/IteratedBinaryOperations.v
2378
+ theorems: '*'
2379
+ - path: UniMath/Algebra/Modules/Submodule.v
2380
+ theorems: '*'
2381
+ - path: UniMath/Algebra/Modules/Quotient.v
2382
+ theorems: '*'
2383
+ - path: UniMath/Algebra/Modules/Multimodules.v
2384
+ theorems: '*'
2385
+ - path: UniMath/Algebra/Modules/Examples.v
2386
+ theorems: '*'
2387
+ - path: UniMath/Algebra/Modules/Core.v
2388
+ theorems: '*'
2389
+ - path: UniMath/Algebra/RigsAndRings/Ideals.v
2390
+ theorems: '*'
2391
+ - path: UniMath/Algebra/GaussianElimination/Elimination.v
2392
+ theorems: '*'
2393
+ - path: UniMath/Algebra/GaussianElimination/Matrices.v
2394
+ theorems: '*'
2395
+ - path: UniMath/Algebra/GaussianElimination/RowOps.v
2396
+ theorems: '*'
2397
+ - path: UniMath/Algebra/GaussianElimination/Vectors.v
2398
+ theorems: '*'
2399
+ - path: UniMath/Algebra/GaussianElimination/Auxiliary.v
2400
+ theorems: '*'
2401
+ - path: UniMath/Algebra/GaussianElimination/Tests.v
2402
+ theorems: '*'
2403
+ - path: UniMath/Algebra/GaussianElimination/Corollaries.v
2404
+ theorems: '*'
2405
+ - path: UniMath/Algebra/Universal/HVectors.v
2406
+ theorems: '*'
2407
+ - path: UniMath/Algebra/Universal/FreeAlgebras.v
2408
+ theorems: '*'
2409
+ - path: UniMath/Algebra/Universal/VTerms.v
2410
+ theorems: '*'
2411
+ - path: UniMath/Algebra/Universal/SortedTypes.v
2412
+ theorems: '*'
2413
+ - path: UniMath/Algebra/Universal/Terms.v
2414
+ theorems: '*'
2415
+ - path: UniMath/Algebra/Universal/EqAlgebras.v
2416
+ theorems: '*'
2417
+ - path: UniMath/Algebra/Universal/Equations.v
2418
+ theorems: '*'
2419
+ - path: UniMath/Algebra/Universal/Algebras.v
2420
+ theorems: '*'
2421
+ - path: UniMath/Algebra/Universal/Signatures.v
2422
+ theorems: '*'
2423
+ - path: UniMath/Algebra/Universal/TermAlgebras.v
2424
+ theorems: '*'
2425
+ - path: UniMath/Algebra/Universal/WTypes.v
2426
+ theorems: '*'
2427
+ - path: UniMath/Algebra/Universal/Examples/Nat.v
2428
+ theorems: '*'
2429
+ - path: UniMath/Algebra/Universal/Examples/Bool.v
2430
+ theorems: '*'
2431
+ - path: UniMath/Algebra/Universal/Examples/Monoid.v
2432
+ theorems: '*'
2433
+ - path: UniMath/Algebra/Universal/Examples/Tests.v
2434
+ theorems: '*'
2435
+ - path: UniMath/Algebra/Universal/Examples/ListDataType.v
2436
+ theorems: '*'
2437
+ - path: UniMath/Algebra/Universal/Examples/Group.v
2438
+ theorems: '*'
2439
+ - path: UniMath/NumberSystems/Integers.v
2440
+ theorems: '*'
2441
+ - path: UniMath/NumberSystems/RationalNumbers.v
2442
+ theorems: '*'
2443
+ - path: UniMath/NumberSystems/All.v
2444
+ theorems: '*'
2445
+ - path: UniMath/NumberSystems/NaturalNumbers_le_Inductive.v
2446
+ theorems: '*'
2447
+ - path: UniMath/NumberSystems/Tests.v
2448
+ theorems: '*'
2449
+ - path: UniMath/NumberSystems/NaturalNumbersAlgebra.v
2450
+ theorems: '*'
2451
+ - path: UniMath/HomologicalAlgebra/KATriangulated.v
2452
+ theorems: '*'
2453
+ - path: UniMath/HomologicalAlgebra/TranslationFunctors.v
2454
+ theorems: '*'
2455
+ - path: UniMath/HomologicalAlgebra/All.v
2456
+ theorems: '*'
2457
+ - path: UniMath/HomologicalAlgebra/Complexes.v
2458
+ theorems: '*'
2459
+ - path: UniMath/HomologicalAlgebra/CohomologyComplex.v
2460
+ theorems: '*'
2461
+ - path: UniMath/HomologicalAlgebra/MappingCone.v
2462
+ theorems: '*'
2463
+ - path: UniMath/HomologicalAlgebra/MappingCylinder.v
2464
+ theorems: '*'
2465
+ - path: UniMath/HomologicalAlgebra/Triangulated.v
2466
+ theorems: '*'
2467
+ - path: UniMath/HomologicalAlgebra/KA.v
2468
+ theorems: '*'
2469
+ - path: UniMath/HomologicalAlgebra/KAPreTriangulated.v
2470
+ theorems: '*'
2471
+ - path: UniMath/Induction/ImpredicativeInductiveSets.v
2472
+ theorems: '*'
2473
+ - path: UniMath/Induction/All.v
2474
+ theorems: '*'
2475
+ - path: UniMath/Induction/FunctorAlgebras_legacy.v
2476
+ theorems: '*'
2477
+ - path: UniMath/Induction/PolynomialAlgebras2Cells.v
2478
+ theorems: '*'
2479
+ - path: UniMath/Induction/FunctorCoalgebras_legacy.v
2480
+ theorems: '*'
2481
+ - path: UniMath/Induction/PolynomialFunctors.v
2482
+ theorems: '*'
2483
+ - path: UniMath/Induction/W/Uniqueness.v
2484
+ theorems: '*'
2485
+ - path: UniMath/Induction/W/Wtypes.v
2486
+ theorems: '*'
2487
+ - path: UniMath/Induction/W/WtypesAsW.v
2488
+ theorems: '*'
2489
+ - path: UniMath/Induction/W/Naturals.v
2490
+ theorems: '*'
2491
+ - path: UniMath/Induction/W/Core.v
2492
+ theorems: '*'
2493
+ - path: UniMath/Induction/W/Fibered.v
2494
+ theorems: '*'
2495
+ - path: UniMath/Induction/M/Uniqueness.v
2496
+ theorems: '*'
2497
+ - path: UniMath/Induction/M/Chains.v
2498
+ theorems: '*'
2499
+ - path: UniMath/Induction/M/Limits.v
2500
+ theorems: '*'
2501
+ - path: UniMath/Induction/M/Core.v
2502
+ theorems: '*'
2503
+ - path: UniMath/Induction/M/ComputationalM.v
2504
+ theorems: '*'
2505
+ - path: UniMath/SyntheticHomotopyTheory/Test.v
2506
+ theorems: '*'
2507
+ - path: UniMath/SyntheticHomotopyTheory/All.v
2508
+ theorems: '*'
2509
+ - path: UniMath/SyntheticHomotopyTheory/Halfline.v
2510
+ theorems: '*'
2511
+ - path: UniMath/SyntheticHomotopyTheory/AffineLine.v
2512
+ theorems: '*'
2513
+ - path: UniMath/SyntheticHomotopyTheory/Circle2.v
2514
+ theorems: '*'
2515
+ - path: UniMath/SyntheticHomotopyTheory/Circle.v
2516
+ theorems: '*'
2517
+ - path: UniMath/SyntheticHomotopyTheory/Coproduct.v
2518
+ theorems: '*'
2519
+ - path: UniMath/Folds/from_precats_to_folds_and_back.v
2520
+ theorems: '*'
2521
+ - path: UniMath/Folds/folds_isomorphism.v
2522
+ theorems: '*'
2523
+ - path: UniMath/Folds/All.v
2524
+ theorems: '*'
2525
+ - path: UniMath/Folds/folds_pre_2_cat.v
2526
+ theorems: '*'
2527
+ - path: UniMath/Folds/UnicodeNotations.v
2528
+ theorems: '*'
2529
+ - path: UniMath/Folds/folds_precat.v
2530
+ theorems: '*'
2531
+ - path: UniMath/Topology/Prelim.v
2532
+ theorems: '*'
2533
+ - path: UniMath/Topology/All.v
2534
+ theorems: '*'
2535
+ - path: UniMath/Topology/Filters.v
2536
+ theorems: '*'
2537
+ - path: UniMath/Topology/Topology.v
2538
+ theorems: '*'
2539
+ - path: UniMath/Topology/CategoryTop.v
2540
+ theorems: '*'
2541
+ - path: UniMath/MoreFoundations/Propositions.v
2542
+ theorems: '*'
2543
+ - path: UniMath/MoreFoundations/PartA.v
2544
+ theorems: '*'
2545
+ - path: UniMath/MoreFoundations/Test.v
2546
+ theorems: '*'
2547
+ - path: UniMath/MoreFoundations/DoubleNegation.v
2548
+ theorems: '*'
2549
+ - path: UniMath/MoreFoundations/PartD.v
2550
+ theorems: '*'
2551
+ - path: UniMath/MoreFoundations/Subtypes.v
2552
+ theorems: '*'
2553
+ - path: UniMath/MoreFoundations/QuotientSet.v
2554
+ theorems: '*'
2555
+ - path: UniMath/MoreFoundations/Notations.v
2556
+ theorems: '*'
2557
+ - path: UniMath/MoreFoundations/PathsOver.v
2558
+ theorems: '*'
2559
+ - path: UniMath/MoreFoundations/NegativePropositions.v
2560
+ theorems: '*'
2561
+ - path: UniMath/MoreFoundations/Nat.v
2562
+ theorems: '*'
2563
+ - path: UniMath/MoreFoundations/Bool.v
2564
+ theorems: '*'
2565
+ - path: UniMath/MoreFoundations/All.v
2566
+ theorems: '*'
2567
+ - path: UniMath/MoreFoundations/MoreEquivalences.v
2568
+ theorems: '*'
2569
+ - path: UniMath/MoreFoundations/Interval.v
2570
+ theorems: '*'
2571
+ - path: UniMath/MoreFoundations/Univalence.v
2572
+ theorems: '*'
2573
+ - path: UniMath/MoreFoundations/Equivalences.v
2574
+ theorems: '*'
2575
+ - path: UniMath/MoreFoundations/AlternativeProofs.v
2576
+ theorems: '*'
2577
+ - path: UniMath/MoreFoundations/DecidablePropositions.v
2578
+ theorems: '*'
2579
+ - path: UniMath/MoreFoundations/NullHomotopies.v
2580
+ theorems: '*'
2581
+ - path: UniMath/MoreFoundations/WeakEquivalences.v
2582
+ theorems: '*'
2583
+ - path: UniMath/MoreFoundations/AxiomOfChoice.v
2584
+ theorems: '*'
2585
+ - path: UniMath/MoreFoundations/Sets.v
2586
+ theorems: '*'
2587
+ - path: UniMath/MoreFoundations/NoInjectivePairing.v
2588
+ theorems: '*'
2589
+ - path: UniMath/MoreFoundations/Subposets.v
2590
+ theorems: '*'
2591
+ - path: UniMath/MoreFoundations/Orders.v
2592
+ theorems: '*'
2593
+ - path: UniMath/MoreFoundations/StructureIdentity.v
2594
+ theorems: '*'
2595
+ - path: UniMath/MoreFoundations/Tactics.v
2596
+ theorems: '*'
2597
+ - path: UniMath/OrderTheory/DCPOs.v
2598
+ theorems: '*'
2599
+ - path: UniMath/OrderTheory/Posets.v
2600
+ theorems: '*'
2601
+ - path: UniMath/OrderTheory/All.v
2602
+ theorems: '*'
2603
+ - path: UniMath/OrderTheory/Lattice/Bounded.v
2604
+ theorems: '*'
2605
+ - path: UniMath/OrderTheory/Lattice/Boolean.v
2606
+ theorems: '*'
2607
+ - path: UniMath/OrderTheory/Lattice/Distributive.v
2608
+ theorems: '*'
2609
+ - path: UniMath/OrderTheory/Lattice/Complement.v
2610
+ theorems: '*'
2611
+ - path: UniMath/OrderTheory/Lattice/Heyting.v
2612
+ theorems: '*'
2613
+ - path: UniMath/OrderTheory/Lattice/Lattice.v
2614
+ theorems: '*'
2615
+ - path: UniMath/OrderTheory/Lattice/Examples/Bool.v
2616
+ theorems: '*'
2617
+ - path: UniMath/OrderTheory/Lattice/Examples/Subsets.v
2618
+ theorems: '*'
2619
+ - path: UniMath/OrderTheory/DCPOs/Basis/Basis.v
2620
+ theorems: '*'
2621
+ - path: UniMath/OrderTheory/DCPOs/Basis/Continuous.v
2622
+ theorems: '*'
2623
+ - path: UniMath/OrderTheory/DCPOs/Basis/Algebraic.v
2624
+ theorems: '*'
2625
+ - path: UniMath/OrderTheory/DCPOs/Basis/CompactBasis.v
2626
+ theorems: '*'
2627
+ - path: UniMath/OrderTheory/DCPOs/FixpointTheorems/LeastFixpoint.v
2628
+ theorems: '*'
2629
+ - path: UniMath/OrderTheory/DCPOs/FixpointTheorems/Pataraia.v
2630
+ theorems: '*'
2631
+ - path: UniMath/OrderTheory/DCPOs/Elements/Maximal.v
2632
+ theorems: '*'
2633
+ - path: UniMath/OrderTheory/DCPOs/Elements/Sharp.v
2634
+ theorems: '*'
2635
+ - path: UniMath/OrderTheory/DCPOs/AlternativeDefinitions/Dcpo.v
2636
+ theorems: '*'
2637
+ - path: UniMath/OrderTheory/DCPOs/AlternativeDefinitions/FixedPointTheorems.v
2638
+ theorems: '*'
2639
+ - path: UniMath/OrderTheory/DCPOs/Examples/SubDCPO.v
2640
+ theorems: '*'
2641
+ - path: UniMath/OrderTheory/DCPOs/Examples/Fixpoints.v
2642
+ theorems: '*'
2643
+ - path: UniMath/OrderTheory/DCPOs/Examples/Propositions.v
2644
+ theorems: '*'
2645
+ - path: UniMath/OrderTheory/DCPOs/Examples/Exponentials.v
2646
+ theorems: '*'
2647
+ - path: UniMath/OrderTheory/DCPOs/Examples/Discrete.v
2648
+ theorems: '*'
2649
+ - path: UniMath/OrderTheory/DCPOs/Examples/BinarySums.v
2650
+ theorems: '*'
2651
+ - path: UniMath/OrderTheory/DCPOs/Examples/Unit.v
2652
+ theorems: '*'
2653
+ - path: UniMath/OrderTheory/DCPOs/Examples/Sums.v
2654
+ theorems: '*'
2655
+ - path: UniMath/OrderTheory/DCPOs/Examples/IdealCompletion.v
2656
+ theorems: '*'
2657
+ - path: UniMath/OrderTheory/DCPOs/Examples/BinaryProducts.v
2658
+ theorems: '*'
2659
+ - path: UniMath/OrderTheory/DCPOs/Examples/Products.v
2660
+ theorems: '*'
2661
+ - path: UniMath/OrderTheory/DCPOs/Examples/Equalizers.v
2662
+ theorems: '*'
2663
+ - path: UniMath/OrderTheory/DCPOs/Core/Basics.v
2664
+ theorems: '*'
2665
+ - path: UniMath/OrderTheory/DCPOs/Core/DirectedSets.v
2666
+ theorems: '*'
2667
+ - path: UniMath/OrderTheory/DCPOs/Core/CoordinateContinuity.v
2668
+ theorems: '*'
2669
+ - path: UniMath/OrderTheory/DCPOs/Core/FubiniTheorem.v
2670
+ theorems: '*'
2671
+ - path: UniMath/OrderTheory/DCPOs/Core/WayBelow.v
2672
+ theorems: '*'
2673
+ - path: UniMath/OrderTheory/DCPOs/Core/ScottContinuous.v
2674
+ theorems: '*'
2675
+ - path: UniMath/OrderTheory/DCPOs/Core/IntrinsicApartness.v
2676
+ theorems: '*'
2677
+ - path: UniMath/OrderTheory/DCPOs/Core/ScottTopology.v
2678
+ theorems: '*'
2679
+ - path: UniMath/OrderTheory/Posets/QuotientPoset.v
2680
+ theorems: '*'
2681
+ - path: UniMath/OrderTheory/Posets/Basics.v
2682
+ theorems: '*'
2683
+ - path: UniMath/OrderTheory/Posets/LiftPoset.v
2684
+ theorems: '*'
2685
+ - path: UniMath/OrderTheory/Posets/MonotoneFunctions.v
2686
+ theorems: '*'
2687
+ - path: UniMath/OrderTheory/Posets/PointedPosets.v
2688
+ theorems: '*'
2689
+ - path: UniMath/OrderTheory/Posets/PosetSum.v
2690
+ theorems: '*'