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,930 @@
1
+ name: GeoCoq
2
+ num_files: 459
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=GeoCoq --set-switch
10
+ datasets:
11
+ - project: <root>/data/repos/GeoCoq
12
+ files:
13
+ - path: theories/Algebraic/tcp_ndc.v
14
+ theorems: '*'
15
+ - path: theories/Algebraic/POF_to_Tarski.v
16
+ theorems: '*'
17
+ - path: theories/Algebraic/coplanarity.v
18
+ theorems: '*'
19
+ - path: theories/Algebraic/Counter_models/counter_model_bet_identity.v
20
+ theorems: '*'
21
+ - path: theories/Algebraic/Counter_models/Planar/independent_version.v
22
+ theorems: '*'
23
+ - path: theories/Algebraic/Counter_models/Planar/independent_tarski_to_gupta_inspired.v
24
+ theorems: '*'
25
+ - path: theories/Algebraic/Counter_models/Planar/counter_model_bet_inner_transitivity.v
26
+ theorems: '*'
27
+ - path: theories/Algebraic/Counter_models/Planar/counter_model_euclid.v
28
+ theorems: '*'
29
+ - path: theories/Algebraic/Counter_models/Planar/counter_model_cong_inner_transitivity.v
30
+ theorems: '*'
31
+ - path: theories/Algebraic/Counter_models/Planar/counter_model_five_segment.v
32
+ theorems: '*'
33
+ - path: theories/Algebraic/Counter_models/Planar/counter_model_bet_symmetry.v
34
+ theorems: '*'
35
+ - path: theories/Algebraic/Counter_models/Planar/independence.v
36
+ theorems: '*'
37
+ - path: theories/Algebraic/Counter_models/Planar/counter_model_lower_dim.v
38
+ theorems: '*'
39
+ - path: theories/Algebraic/Counter_models/Planar/counter_model_upper_dim.v
40
+ theorems: '*'
41
+ - path: theories/Algebraic/Counter_models/Planar/gupta_inspired_to_independent_tarski.v
42
+ theorems: '*'
43
+ - path: theories/Algebraic/Counter_models/Planar/counter_model_cong_pseudo_reflexivity.v
44
+ theorems: '*'
45
+ - path: theories/Algebraic/Counter_models/Planar/counter_model_segment_construction.v
46
+ theorems: '*'
47
+ - path: theories/Algebraic/Counter_models/Planar/counter_model_cong_identity.v
48
+ theorems: '*'
49
+ - path: theories/Algebraic/Counter_models/nD/independent_version.v
50
+ theorems: '*'
51
+ - path: theories/Algebraic/Counter_models/nD/counter_model_bet_inner_transitivity.v
52
+ theorems: '*'
53
+ - path: theories/Algebraic/Counter_models/nD/counter_model_euclid.v
54
+ theorems: '*'
55
+ - path: theories/Algebraic/Counter_models/nD/counter_model_cong_inner_transitivity.v
56
+ theorems: '*'
57
+ - path: theories/Algebraic/Counter_models/nD/dimensional_axioms.v
58
+ theorems: '*'
59
+ - path: theories/Algebraic/Counter_models/nD/independent_version_to_beeson.v
60
+ theorems: '*'
61
+ - path: theories/Algebraic/Counter_models/nD/stability_properties.v
62
+ theorems: '*'
63
+ - path: theories/Algebraic/Counter_models/nD/counter_model_five_segment.v
64
+ theorems: '*'
65
+ - path: theories/Algebraic/Counter_models/nD/counter_model_bet_symmetry.v
66
+ theorems: '*'
67
+ - path: theories/Algebraic/Counter_models/nD/bet_identity.v
68
+ theorems: '*'
69
+ - path: theories/Algebraic/Counter_models/nD/independence.v
70
+ theorems: '*'
71
+ - path: theories/Algebraic/Counter_models/nD/counter_model_lower_dim.v
72
+ theorems: '*'
73
+ - path: theories/Algebraic/Counter_models/nD/counter_model_upper_dim.v
74
+ theorems: '*'
75
+ - path: theories/Algebraic/Counter_models/nD/counter_model_cong_pseudo_reflexivity.v
76
+ theorems: '*'
77
+ - path: theories/Algebraic/Counter_models/nD/stronger_pasch.v
78
+ theorems: '*'
79
+ - path: theories/Algebraic/Counter_models/nD/independent_version_to_tarski.v
80
+ theorems: '*'
81
+ - path: theories/Algebraic/Counter_models/nD/counter_model_segment_construction.v
82
+ theorems: '*'
83
+ - path: theories/Algebraic/Counter_models/nD/counter_model_cong_identity.v
84
+ theorems: '*'
85
+ - path: theories/Algebraic/Counter_models/nD/gupta_inspired_to_independent_version.v
86
+ theorems: '*'
87
+ - path: theories/Coinc/CongR.v
88
+ theorems: '*'
89
+ - path: theories/Coinc/tactics_axioms.v
90
+ theorems: '*'
91
+ - path: theories/Coinc/Permutations.v
92
+ theorems: '*'
93
+ - path: theories/Coinc/ColR.v
94
+ theorems: '*'
95
+ - path: theories/Coinc/CoincR.v
96
+ theorems: '*'
97
+ - path: theories/Coinc/Utils/sets.v
98
+ theorems: '*'
99
+ - path: theories/Coinc/Utils/general_tactics.v
100
+ theorems: '*'
101
+ - path: theories/Coinc/Utils/arity.v
102
+ theorems: '*'
103
+ - path: theories/Axioms/tarski_axioms.v
104
+ theorems: '*'
105
+ - path: theories/Axioms/beeson_s_axioms.v
106
+ theorems: '*'
107
+ - path: theories/Axioms/makarios_variant_axioms.v
108
+ theorems: '*'
109
+ - path: theories/Axioms/Definitions.v
110
+ theorems: '*'
111
+ - path: theories/Axioms/finish.v
112
+ theorems: '*'
113
+ - path: theories/Axioms/gupta_inspired_variant_axioms.v
114
+ theorems: '*'
115
+ - path: theories/Axioms/parallel_postulates.v
116
+ theorems: '*'
117
+ - path: theories/Axioms/hilbert_axioms.v
118
+ theorems: '*'
119
+ - path: theories/Axioms/continuity_axioms.v
120
+ theorems: '*'
121
+ - path: theories/Axioms/euclidean_axioms.v
122
+ theorems: '*'
123
+ - path: theories/Elements/euclid_to_tarski.v
124
+ theorems: '*'
125
+ - path: theories/Elements/OriginalProofs/proposition_16.v
126
+ theorems: '*'
127
+ - path: theories/Elements/OriginalProofs/lemma_tarskiparallelflip.v
128
+ theorems: '*'
129
+ - path: theories/Elements/OriginalProofs/lemma_tworays.v
130
+ theorems: '*'
131
+ - path: theories/Elements/OriginalProofs/lemma_ondiameter.v
132
+ theorems: '*'
133
+ - path: theories/Elements/OriginalProofs/lemma_collinear5.v
134
+ theorems: '*'
135
+ - path: theories/Elements/OriginalProofs/lemma_TGflip.v
136
+ theorems: '*'
137
+ - path: theories/Elements/OriginalProofs/proposition_12.v
138
+ theorems: '*'
139
+ - path: theories/Elements/OriginalProofs/proposition_28C.v
140
+ theorems: '*'
141
+ - path: theories/Elements/OriginalProofs/lemma_trapezoiddiagonals.v
142
+ theorems: '*'
143
+ - path: theories/Elements/OriginalProofs/lemma_twolines2.v
144
+ theorems: '*'
145
+ - path: theories/Elements/OriginalProofs/proposition_42.v
146
+ theorems: '*'
147
+ - path: theories/Elements/OriginalProofs/lemma_EFreflexive.v
148
+ theorems: '*'
149
+ - path: theories/Elements/OriginalProofs/lemma_congruencesymmetric.v
150
+ theorems: '*'
151
+ - path: theories/Elements/OriginalProofs/proposition_17.v
152
+ theorems: '*'
153
+ - path: theories/Elements/OriginalProofs/proposition_36A.v
154
+ theorems: '*'
155
+ - path: theories/Elements/OriginalProofs/lemma_paste5.v
156
+ theorems: '*'
157
+ - path: theories/Elements/OriginalProofs/lemma_altitudeofrighttriangle.v
158
+ theorems: '*'
159
+ - path: theories/Elements/OriginalProofs/proposition_06.v
160
+ theorems: '*'
161
+ - path: theories/Elements/OriginalProofs/lemma_interior5.v
162
+ theorems: '*'
163
+ - path: theories/Elements/OriginalProofs/lemma_NCdistinct.v
164
+ theorems: '*'
165
+ - path: theories/Elements/OriginalProofs/proposition_34.v
166
+ theorems: '*'
167
+ - path: theories/Elements/OriginalProofs/lemma_PGrotate.v
168
+ theorems: '*'
169
+ - path: theories/Elements/OriginalProofs/proposition_39A.v
170
+ theorems: '*'
171
+ - path: theories/Elements/OriginalProofs/lemma_ray5.v
172
+ theorems: '*'
173
+ - path: theories/Elements/OriginalProofs/lemma_samesidereflexive.v
174
+ theorems: '*'
175
+ - path: theories/Elements/OriginalProofs/lemma_doublereverse.v
176
+ theorems: '*'
177
+ - path: theories/Elements/OriginalProofs/lemma_differenceofparts.v
178
+ theorems: '*'
179
+ - path: theories/Elements/OriginalProofs/lemma_3_7b.v
180
+ theorems: '*'
181
+ - path: theories/Elements/OriginalProofs/proposition_47A.v
182
+ theorems: '*'
183
+ - path: theories/Elements/OriginalProofs/lemma_ray3.v
184
+ theorems: '*'
185
+ - path: theories/Elements/OriginalProofs/lemma_sameside2.v
186
+ theorems: '*'
187
+ - path: theories/Elements/OriginalProofs/lemma_PGflip.v
188
+ theorems: '*'
189
+ - path: theories/Elements/OriginalProofs/lemma_supplementofright.v
190
+ theorems: '*'
191
+ - path: theories/Elements/OriginalProofs/proposition_48A.v
192
+ theorems: '*'
193
+ - path: theories/Elements/OriginalProofs/proposition_30A.v
194
+ theorems: '*'
195
+ - path: theories/Elements/OriginalProofs/lemma_crossbar2.v
196
+ theorems: '*'
197
+ - path: theories/Elements/OriginalProofs/lemma_collinear1.v
198
+ theorems: '*'
199
+ - path: theories/Elements/OriginalProofs/lemma_3_7a.v
200
+ theorems: '*'
201
+ - path: theories/Elements/OriginalProofs/lemma_RTcongruence.v
202
+ theorems: '*'
203
+ - path: theories/Elements/OriginalProofs/lemma_subtractequals.v
204
+ theorems: '*'
205
+ - path: theories/Elements/OriginalProofs/proposition_28A.v
206
+ theorems: '*'
207
+ - path: theories/Elements/OriginalProofs/lemma_pointreflectionisometry.v
208
+ theorems: '*'
209
+ - path: theories/Elements/OriginalProofs/lemma_TTorder.v
210
+ theorems: '*'
211
+ - path: theories/Elements/OriginalProofs/lemma_equalanglesNC.v
212
+ theorems: '*'
213
+ - path: theories/Elements/OriginalProofs/lemma_lessthantransitive.v
214
+ theorems: '*'
215
+ - path: theories/Elements/OriginalProofs/lemma_equalanglessymmetric.v
216
+ theorems: '*'
217
+ - path: theories/Elements/OriginalProofs/lemma_layoffunique.v
218
+ theorems: '*'
219
+ - path: theories/Elements/OriginalProofs/proposition_33.v
220
+ theorems: '*'
221
+ - path: theories/Elements/OriginalProofs/proposition_43.v
222
+ theorems: '*'
223
+ - path: theories/Elements/OriginalProofs/proposition_08.v
224
+ theorems: '*'
225
+ - path: theories/Elements/OriginalProofs/proposition_44A.v
226
+ theorems: '*'
227
+ - path: theories/Elements/OriginalProofs/proposition_36.v
228
+ theorems: '*'
229
+ - path: theories/Elements/OriginalProofs/lemma_erectedperpendicularunique.v
230
+ theorems: '*'
231
+ - path: theories/Elements/OriginalProofs/lemma_lessthancongruence.v
232
+ theorems: '*'
233
+ - path: theories/Elements/OriginalProofs/lemma_squareflip.v
234
+ theorems: '*'
235
+ - path: theories/Elements/OriginalProofs/book1.v
236
+ theorems: '*'
237
+ - path: theories/Elements/OriginalProofs/lemma_ray2.v
238
+ theorems: '*'
239
+ - path: theories/Elements/OriginalProofs/lemma_trichotomy2.v
240
+ theorems: '*'
241
+ - path: theories/Elements/OriginalProofs/lemma_legsmallerhypotenuse.v
242
+ theorems: '*'
243
+ - path: theories/Elements/OriginalProofs/lemma_3_6b.v
244
+ theorems: '*'
245
+ - path: theories/Elements/OriginalProofs/proposition_24.v
246
+ theorems: '*'
247
+ - path: theories/Elements/OriginalProofs/proposition_47B.v
248
+ theorems: '*'
249
+ - path: theories/Elements/OriginalProofs/lemma_inequalitysymmetric.v
250
+ theorems: '*'
251
+ - path: theories/Elements/OriginalProofs/lemma_parallelcollinear1.v
252
+ theorems: '*'
253
+ - path: theories/Elements/OriginalProofs/lemma_ABCequalsCBA.v
254
+ theorems: '*'
255
+ - path: theories/Elements/OriginalProofs/lemma_rightangleNC.v
256
+ theorems: '*'
257
+ - path: theories/Elements/OriginalProofs/lemma_betweennesspreserved.v
258
+ theorems: '*'
259
+ - path: theories/Elements/OriginalProofs/proposition_46.v
260
+ theorems: '*'
261
+ - path: theories/Elements/OriginalProofs/proposition_29.v
262
+ theorems: '*'
263
+ - path: theories/Elements/OriginalProofs/proposition_05b.v
264
+ theorems: '*'
265
+ - path: theories/Elements/OriginalProofs/proposition_13.v
266
+ theorems: '*'
267
+ - path: theories/Elements/OriginalProofs/lemma_26helper.v
268
+ theorems: '*'
269
+ - path: theories/Elements/OriginalProofs/proposition_28D.v
270
+ theorems: '*'
271
+ - path: theories/Elements/OriginalProofs/proposition_20.v
272
+ theorems: '*'
273
+ - path: theories/Elements/OriginalProofs/lemma_betweennotequal.v
274
+ theorems: '*'
275
+ - path: theories/Elements/OriginalProofs/lemma_triangletoparallelogram.v
276
+ theorems: '*'
277
+ - path: theories/Elements/OriginalProofs/lemma_PGsymmetric.v
278
+ theorems: '*'
279
+ - path: theories/Elements/OriginalProofs/proposition_25.v
280
+ theorems: '*'
281
+ - path: theories/Elements/OriginalProofs/lemma_parallelbetween.v
282
+ theorems: '*'
283
+ - path: theories/Elements/OriginalProofs/lemma_Euclid4.v
284
+ theorems: '*'
285
+ - path: theories/Elements/OriginalProofs/proposition_27.v
286
+ theorems: '*'
287
+ - path: theories/Elements/OriginalProofs/lemma_8_2.v
288
+ theorems: '*'
289
+ - path: theories/Elements/OriginalProofs/euclidean_defs.v
290
+ theorems: '*'
291
+ - path: theories/Elements/OriginalProofs/lemma_TGsymmetric.v
292
+ theorems: '*'
293
+ - path: theories/Elements/OriginalProofs/proposition_30.v
294
+ theorems: '*'
295
+ - path: theories/Elements/OriginalProofs/lemma_Pasch_outer2.v
296
+ theorems: '*'
297
+ - path: theories/Elements/OriginalProofs/lemma_3_5b.v
298
+ theorems: '*'
299
+ - path: theories/Elements/OriginalProofs/lemma_together.v
300
+ theorems: '*'
301
+ - path: theories/Elements/OriginalProofs/lemma_equalitysymmetric.v
302
+ theorems: '*'
303
+ - path: theories/Elements/OriginalProofs/lemma_oppositesideflip.v
304
+ theorems: '*'
305
+ - path: theories/Elements/OriginalProofs/proposition_41.v
306
+ theorems: '*'
307
+ - path: theories/Elements/OriginalProofs/lemma_9_5.v
308
+ theorems: '*'
309
+ - path: theories/Elements/OriginalProofs/lemma_outerconnectivity.v
310
+ theorems: '*'
311
+ - path: theories/Elements/OriginalProofs/proposition_35A.v
312
+ theorems: '*'
313
+ - path: theories/Elements/OriginalProofs/proposition_31.v
314
+ theorems: '*'
315
+ - path: theories/Elements/OriginalProofs/lemma_9_5a.v
316
+ theorems: '*'
317
+ - path: theories/Elements/OriginalProofs/lemma_samesideflip.v
318
+ theorems: '*'
319
+ - path: theories/Elements/OriginalProofs/lemma_samesidetransitive.v
320
+ theorems: '*'
321
+ - path: theories/Elements/OriginalProofs/lemma_trichotomy1.v
322
+ theorems: '*'
323
+ - path: theories/Elements/OriginalProofs/lemma_localextension.v
324
+ theorems: '*'
325
+ - path: theories/Elements/OriginalProofs/lemma_twolines.v
326
+ theorems: '*'
327
+ - path: theories/Elements/OriginalProofs/lemma_paralleldef2B.v
328
+ theorems: '*'
329
+ - path: theories/Elements/OriginalProofs/lemma_samenotopposite.v
330
+ theorems: '*'
331
+ - path: theories/Elements/OriginalProofs/lemma_collinearright.v
332
+ theorems: '*'
333
+ - path: theories/Elements/OriginalProofs/lemma_crossimpliesopposite.v
334
+ theorems: '*'
335
+ - path: theories/Elements/OriginalProofs/lemma_paralleldef2A.v
336
+ theorems: '*'
337
+ - path: theories/Elements/OriginalProofs/proposition_47.v
338
+ theorems: '*'
339
+ - path: theories/Elements/OriginalProofs/lemma_collinearparallel.v
340
+ theorems: '*'
341
+ - path: theories/Elements/OriginalProofs/lemma_ray4.v
342
+ theorems: '*'
343
+ - path: theories/Elements/OriginalProofs/lemma_rightreverse.v
344
+ theorems: '*'
345
+ - path: theories/Elements/OriginalProofs/lemma_RTsymmetric.v
346
+ theorems: '*'
347
+ - path: theories/Elements/OriginalProofs/proposition_19.v
348
+ theorems: '*'
349
+ - path: theories/Elements/OriginalProofs/lemma_samesidesymmetric.v
350
+ theorems: '*'
351
+ - path: theories/Elements/OriginalProofs/lemma_collinear2.v
352
+ theorems: '*'
353
+ - path: theories/Elements/OriginalProofs/lemma_angleordertransitive.v
354
+ theorems: '*'
355
+ - path: theories/Elements/OriginalProofs/lemma_angledistinct.v
356
+ theorems: '*'
357
+ - path: theories/Elements/OriginalProofs/proposition_14.v
358
+ theorems: '*'
359
+ - path: theories/Elements/OriginalProofs/proposition_30B.v
360
+ theorems: '*'
361
+ - path: theories/Elements/OriginalProofs/proposition_21.v
362
+ theorems: '*'
363
+ - path: theories/Elements/OriginalProofs/lemma_rectanglereverse.v
364
+ theorems: '*'
365
+ - path: theories/Elements/OriginalProofs/proposition_42B.v
366
+ theorems: '*'
367
+ - path: theories/Elements/OriginalProofs/lemma_equalangleshelper.v
368
+ theorems: '*'
369
+ - path: theories/Elements/OriginalProofs/lemma_angletrichotomy2.v
370
+ theorems: '*'
371
+ - path: theories/Elements/OriginalProofs/proposition_35.v
372
+ theorems: '*'
373
+ - path: theories/Elements/OriginalProofs/proposition_10.v
374
+ theorems: '*'
375
+ - path: theories/Elements/OriginalProofs/lemma_midpointunique.v
376
+ theorems: '*'
377
+ - path: theories/Elements/OriginalProofs/proposition_29B.v
378
+ theorems: '*'
379
+ - path: theories/Elements/OriginalProofs/lemma_notperp.v
380
+ theorems: '*'
381
+ - path: theories/Elements/OriginalProofs/lemma_angleorderrespectscongruence.v
382
+ theorems: '*'
383
+ - path: theories/Elements/OriginalProofs/proposition_44.v
384
+ theorems: '*'
385
+ - path: theories/Elements/OriginalProofs/lemma_righttogether.v
386
+ theorems: '*'
387
+ - path: theories/Elements/OriginalProofs/general_tactics.v
388
+ theorems: '*'
389
+ - path: theories/Elements/OriginalProofs/lemma_ray.v
390
+ theorems: '*'
391
+ - path: theories/Elements/OriginalProofs/lemma_collinearorder.v
392
+ theorems: '*'
393
+ - path: theories/Elements/OriginalProofs/lemma_angletrichotomy.v
394
+ theorems: '*'
395
+ - path: theories/Elements/OriginalProofs/lemma_TCreflexive.v
396
+ theorems: '*'
397
+ - path: theories/Elements/OriginalProofs/lemma_NChelper.v
398
+ theorems: '*'
399
+ - path: theories/Elements/OriginalProofs/euclidean_tactics.v
400
+ theorems: '*'
401
+ - path: theories/Elements/OriginalProofs/lemma_lessthancongruence2.v
402
+ theorems: '*'
403
+ - path: theories/Elements/OriginalProofs/lemma_30helper.v
404
+ theorems: '*'
405
+ - path: theories/Elements/OriginalProofs/proposition_15.v
406
+ theorems: '*'
407
+ - path: theories/Elements/OriginalProofs/proposition_07.v
408
+ theorems: '*'
409
+ - path: theories/Elements/OriginalProofs/lemma_squaresequal.v
410
+ theorems: '*'
411
+ - path: theories/Elements/OriginalProofs/proposition_32.v
412
+ theorems: '*'
413
+ - path: theories/Elements/OriginalProofs/proposition_11.v
414
+ theorems: '*'
415
+ - path: theories/Elements/OriginalProofs/lemma_crisscross.v
416
+ theorems: '*'
417
+ - path: theories/Elements/OriginalProofs/proposition_33B.v
418
+ theorems: '*'
419
+ - path: theories/Elements/OriginalProofs/proposition_48.v
420
+ theorems: '*'
421
+ - path: theories/Elements/OriginalProofs/lemma_equalanglesreflexive.v
422
+ theorems: '*'
423
+ - path: theories/Elements/OriginalProofs/lemma_8_3.v
424
+ theorems: '*'
425
+ - path: theories/Elements/OriginalProofs/lemma_collinearitypreserved.v
426
+ theorems: '*'
427
+ - path: theories/Elements/OriginalProofs/proposition_05.v
428
+ theorems: '*'
429
+ - path: theories/Elements/OriginalProofs/lemma_supplements.v
430
+ theorems: '*'
431
+ - path: theories/Elements/OriginalProofs/lemma_equalanglesflip.v
432
+ theorems: '*'
433
+ - path: theories/Elements/OriginalProofs/lemma_linereflectionisometry.v
434
+ theorems: '*'
435
+ - path: theories/Elements/OriginalProofs/lemma_collinearbetween.v
436
+ theorems: '*'
437
+ - path: theories/Elements/OriginalProofs/proposition_39.v
438
+ theorems: '*'
439
+ - path: theories/Elements/OriginalProofs/lemma_TTflip.v
440
+ theorems: '*'
441
+ - path: theories/Elements/OriginalProofs/lemma_diagonalsbisect.v
442
+ theorems: '*'
443
+ - path: theories/Elements/OriginalProofs/lemma_oppositesidesymmetric.v
444
+ theorems: '*'
445
+ - path: theories/Elements/OriginalProofs/lemma_21helper.v
446
+ theorems: '*'
447
+ - path: theories/Elements/OriginalProofs/lemma_layoff.v
448
+ theorems: '*'
449
+ - path: theories/Elements/OriginalProofs/lemma_diagonalsmeet.v
450
+ theorems: '*'
451
+ - path: theories/Elements/OriginalProofs/lemma_parallelflip.v
452
+ theorems: '*'
453
+ - path: theories/Elements/OriginalProofs/lemma_droppedperpendicularunique.v
454
+ theorems: '*'
455
+ - path: theories/Elements/OriginalProofs/proposition_02.v
456
+ theorems: '*'
457
+ - path: theories/Elements/OriginalProofs/lemma_supplementsymmetric.v
458
+ theorems: '*'
459
+ - path: theories/Elements/OriginalProofs/lemma_TTflip2.v
460
+ theorems: '*'
461
+ - path: theories/Elements/OriginalProofs/lemma_parallelsymmetric.v
462
+ theorems: '*'
463
+ - path: theories/Elements/OriginalProofs/lemma_equalanglestransitive.v
464
+ theorems: '*'
465
+ - path: theories/Elements/OriginalProofs/lemma_samesidecollinear.v
466
+ theorems: '*'
467
+ - path: theories/Elements/OriginalProofs/proposition_26B.v
468
+ theorems: '*'
469
+ - path: theories/Elements/OriginalProofs/lemma_supplementinequality.v
470
+ theorems: '*'
471
+ - path: theories/Elements/OriginalProofs/lemma_35helper.v
472
+ theorems: '*'
473
+ - path: theories/Elements/OriginalProofs/lemma_TTtransitive.v
474
+ theorems: '*'
475
+ - path: theories/Elements/OriginalProofs/lemma_equaltorightisright.v
476
+ theorems: '*'
477
+ - path: theories/Elements/OriginalProofs/proposition_23C.v
478
+ theorems: '*'
479
+ - path: theories/Elements/OriginalProofs/proposition_09.v
480
+ theorems: '*'
481
+ - path: theories/Elements/OriginalProofs/proposition_40.v
482
+ theorems: '*'
483
+ - path: theories/Elements/OriginalProofs/lemma_Playfairhelper2.v
484
+ theorems: '*'
485
+ - path: theories/Elements/OriginalProofs/lemma_rectangleparallelogram.v
486
+ theorems: '*'
487
+ - path: theories/Elements/OriginalProofs/proposition_38.v
488
+ theorems: '*'
489
+ - path: theories/Elements/OriginalProofs/proposition_23.v
490
+ theorems: '*'
491
+ - path: theories/Elements/OriginalProofs/lemma_parallelNC.v
492
+ theorems: '*'
493
+ - path: theories/Elements/OriginalProofs/lemma_parallelcollinear2.v
494
+ theorems: '*'
495
+ - path: theories/Elements/OriginalProofs/lemma_ETreflexive.v
496
+ theorems: '*'
497
+ - path: theories/Elements/OriginalProofs/proposition_06a.v
498
+ theorems: '*'
499
+ - path: theories/Elements/OriginalProofs/lemma_ray1.v
500
+ theorems: '*'
501
+ - path: theories/Elements/OriginalProofs/lemma_squarerectangle.v
502
+ theorems: '*'
503
+ - path: theories/Elements/OriginalProofs/lemma_planeseparation.v
504
+ theorems: '*'
505
+ - path: theories/Elements/OriginalProofs/lemma_parallelcollinear.v
506
+ theorems: '*'
507
+ - path: theories/Elements/OriginalProofs/proposition_01.v
508
+ theorems: '*'
509
+ - path: theories/Elements/OriginalProofs/lemma_9_5b.v
510
+ theorems: '*'
511
+ - path: theories/Elements/OriginalProofs/lemma_collinearparallel2.v
512
+ theorems: '*'
513
+ - path: theories/Elements/OriginalProofs/lemma_3_6a.v
514
+ theorems: '*'
515
+ - path: theories/Elements/OriginalProofs/proposition_23B.v
516
+ theorems: '*'
517
+ - path: theories/Elements/OriginalProofs/proposition_04.v
518
+ theorems: '*'
519
+ - path: theories/Elements/OriginalProofs/lemma_extensionunique.v
520
+ theorems: '*'
521
+ - path: theories/Elements/OriginalProofs/lemma_crossbar.v
522
+ theorems: '*'
523
+ - path: theories/Elements/OriginalProofs/lemma_collinear4.v
524
+ theorems: '*'
525
+ - path: theories/Elements/OriginalProofs/lemma_rayimpliescollinear.v
526
+ theorems: '*'
527
+ - path: theories/Elements/OriginalProofs/lemma_fiveline.v
528
+ theorems: '*'
529
+ - path: theories/Elements/OriginalProofs/lemma_supplements2.v
530
+ theorems: '*'
531
+ - path: theories/Elements/OriginalProofs/lemma_extension.v
532
+ theorems: '*'
533
+ - path: theories/Elements/OriginalProofs/proposition_37.v
534
+ theorems: '*'
535
+ - path: theories/Elements/OriginalProofs/proposition_18.v
536
+ theorems: '*'
537
+ - path: theories/Elements/OriginalProofs/lemma_8_7.v
538
+ theorems: '*'
539
+ - path: theories/Elements/OriginalProofs/proposition_28B.v
540
+ theorems: '*'
541
+ - path: theories/Elements/OriginalProofs/lemma_Playfairhelper.v
542
+ theorems: '*'
543
+ - path: theories/Elements/OriginalProofs/lemma_congruencetransitive.v
544
+ theorems: '*'
545
+ - path: theories/Elements/OriginalProofs/lemma_10_12.v
546
+ theorems: '*'
547
+ - path: theories/Elements/OriginalProofs/proposition_27B.v
548
+ theorems: '*'
549
+ - path: theories/Elements/OriginalProofs/proposition_26A.v
550
+ theorems: '*'
551
+ - path: theories/Elements/OriginalProofs/lemma_rectanglerotate.v
552
+ theorems: '*'
553
+ - path: theories/Elements/OriginalProofs/lemma_raystrict.v
554
+ theorems: '*'
555
+ - path: theories/Elements/OriginalProofs/lemma_lessthannotequal.v
556
+ theorems: '*'
557
+ - path: theories/Elements/OriginalProofs/lemma_squareparallelogram.v
558
+ theorems: '*'
559
+ - path: theories/Elements/OriginalProofs/proposition_11B.v
560
+ theorems: '*'
561
+ - path: theories/Elements/OriginalProofs/lemma_lessthanbetween.v
562
+ theorems: '*'
563
+ - path: theories/Elements/OriginalProofs/proposition_43B.v
564
+ theorems: '*'
565
+ - path: theories/Elements/OriginalProofs/lemma_angleorderrespectscongruence2.v
566
+ theorems: '*'
567
+ - path: theories/Elements/OriginalProofs/lemma_together2.v
568
+ theorems: '*'
569
+ - path: theories/Elements/OriginalProofs/proposition_31short.v
570
+ theorems: '*'
571
+ - path: theories/Elements/OriginalProofs/proposition_22.v
572
+ theorems: '*'
573
+ - path: theories/Elements/OriginalProofs/lemma_congruenceflip.v
574
+ theorems: '*'
575
+ - path: theories/Elements/OriginalProofs/lemma_PGrectangle.v
576
+ theorems: '*'
577
+ - path: theories/Elements/OriginalProofs/lemma_partnotequalwhole.v
578
+ theorems: '*'
579
+ - path: theories/Elements/OriginalProofs/lemma_NCorder.v
580
+ theorems: '*'
581
+ - path: theories/Elements/OriginalProofs/proposition_03.v
582
+ theorems: '*'
583
+ - path: theories/Elements/OriginalProofs/lemma_twoperpsparallel.v
584
+ theorems: '*'
585
+ - path: theories/Elements/OriginalProofs/proposition_29C.v
586
+ theorems: '*'
587
+ - path: theories/Elements/OriginalProofs/lemma_altitudebisectsbase.v
588
+ theorems: '*'
589
+ - path: theories/Elements/OriginalProofs/lemma_squareunique.v
590
+ theorems: '*'
591
+ - path: theories/Elements/OriginalProofs/lemma_lessthanadditive.v
592
+ theorems: '*'
593
+ - path: theories/Elements/OriginalProofs/lemma_angleaddition.v
594
+ theorems: '*'
595
+ - path: theories/Elements/OriginalProofs/lemma_parallelPasch.v
596
+ theorems: '*'
597
+ - path: theories/Elements/OriginalProofs/lemma_Playfair.v
598
+ theorems: '*'
599
+ - path: theories/Elements/OriginalProofs/proposition_45.v
600
+ theorems: '*'
601
+ - path: theories/Main/main.v
602
+ theorems: '*'
603
+ - path: theories/Main/Elements_statements/Book_1.v
604
+ theorems: '*'
605
+ - path: theories/Main/Elements_statements/Book_3.v
606
+ theorems: '*'
607
+ - path: theories/Main/Tactics/CongR.v
608
+ theorems: '*'
609
+ - path: theories/Main/Tactics/CoincR_for_concy.v
610
+ theorems: '*'
611
+ - path: theories/Main/Tactics/ColR.v
612
+ theorems: '*'
613
+ - path: theories/Main/Tactics/CoincR_for_col.v
614
+ theorems: '*'
615
+ - path: theories/Main/Tactics/CoincR_for_cop.v
616
+ theorems: '*'
617
+ - path: theories/Main/Meta_theory/Parallel_postulates/weak_inverse_projection_postulate_bachmann_s_lotschnittaxiom.v
618
+ theorems: '*'
619
+ - path: theories/Main/Meta_theory/Parallel_postulates/par_perp_perp_playfair.v
620
+ theorems: '*'
621
+ - path: theories/Main/Meta_theory/Parallel_postulates/weak_triangle_circumscription_principle_bachmann_s_lotschnittaxiom.v
622
+ theorems: '*'
623
+ - path: theories/Main/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_legendre_s_parallel_postulate.v
624
+ theorems: '*'
625
+ - path: theories/Main/Meta_theory/Parallel_postulates/inverse_projection_postulate_proclus_bis.v
626
+ theorems: '*'
627
+ - path: theories/Main/Meta_theory/Parallel_postulates/rah_triangle.v
628
+ theorems: '*'
629
+ - path: theories/Main/Meta_theory/Parallel_postulates/alternate_interior_angles_proclus.v
630
+ theorems: '*'
631
+ - path: theories/Main/Meta_theory/Parallel_postulates/thales_postulate_thales_converse_postulate.v
632
+ theorems: '*'
633
+ - path: theories/Main/Meta_theory/Parallel_postulates/euclid_5_original_euclid.v
634
+ theorems: '*'
635
+ - path: theories/Main/Meta_theory/Parallel_postulates/existential_triangle_rah.v
636
+ theorems: '*'
637
+ - path: theories/Main/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_weak_triangle_circumscription_principle.v
638
+ theorems: '*'
639
+ - path: theories/Main/Meta_theory/Parallel_postulates/par_trans_playfair.v
640
+ theorems: '*'
641
+ - path: theories/Main/Meta_theory/Parallel_postulates/universal_posidonius_postulate_par_perp_perp.v
642
+ theorems: '*'
643
+ - path: theories/Main/Meta_theory/Parallel_postulates/par_trans_NID.v
644
+ theorems: '*'
645
+ - path: theories/Main/Meta_theory/Parallel_postulates/par_perp_2_par_par_perp_perp.v
646
+ theorems: '*'
647
+ - path: theories/Main/Meta_theory/Parallel_postulates/szmielew.v
648
+ theorems: '*'
649
+ - path: theories/Main/Meta_theory/Parallel_postulates/triangle_existential_triangle.v
650
+ theorems: '*'
651
+ - path: theories/Main/Meta_theory/Parallel_postulates/tarski_euclid.v
652
+ theorems: '*'
653
+ - path: theories/Main/Meta_theory/Parallel_postulates/playfair_existential_playfair.v
654
+ theorems: '*'
655
+ - path: theories/Main/Meta_theory/Parallel_postulates/alternate_interior_angles_consecutive_interior_angles.v
656
+ theorems: '*'
657
+ - path: theories/Main/Meta_theory/Parallel_postulates/playfair_par_trans.v
658
+ theorems: '*'
659
+ - path: theories/Main/Meta_theory/Parallel_postulates/posidonius_postulate_rah.v
660
+ theorems: '*'
661
+ - path: theories/Main/Meta_theory/Parallel_postulates/rah_thales_postulate.v
662
+ theorems: '*'
663
+ - path: theories/Main/Meta_theory/Parallel_postulates/tarski_playfair.v
664
+ theorems: '*'
665
+ - path: theories/Main/Meta_theory/Parallel_postulates/alternate_interior_angles_triangle.v
666
+ theorems: '*'
667
+ - path: theories/Main/Meta_theory/Parallel_postulates/weak_tarski_s_parallel_postulate_weak_inverse_projection_postulate.v
668
+ theorems: '*'
669
+ - path: theories/Main/Meta_theory/Parallel_postulates/SPP_ID.v
670
+ theorems: '*'
671
+ - path: theories/Main/Meta_theory/Parallel_postulates/legendre.v
672
+ theorems: '*'
673
+ - path: theories/Main/Meta_theory/Parallel_postulates/rah_similar.v
674
+ theorems: '*'
675
+ - path: theories/Main/Meta_theory/Parallel_postulates/rah_rectangle_principle.v
676
+ theorems: '*'
677
+ - path: theories/Main/Meta_theory/Parallel_postulates/original_spp_inverse_projection_postulate.v
678
+ theorems: '*'
679
+ - path: theories/Main/Meta_theory/Parallel_postulates/playfair_alternate_interior_angles.v
680
+ theorems: '*'
681
+ - path: theories/Main/Meta_theory/Parallel_postulates/thales_existence_rah.v
682
+ theorems: '*'
683
+ - path: theories/Main/Meta_theory/Parallel_postulates/alternate_interior_angles_playfair_bis.v
684
+ theorems: '*'
685
+ - path: theories/Main/Meta_theory/Parallel_postulates/consecutive_interior_angles_alternate_interior_angles.v
686
+ theorems: '*'
687
+ - path: theories/Main/Meta_theory/Parallel_postulates/original_euclid_original_spp.v
688
+ theorems: '*'
689
+ - path: theories/Main/Meta_theory/Parallel_postulates/rectangle_existence_rah.v
690
+ theorems: '*'
691
+ - path: theories/Main/Meta_theory/Parallel_postulates/par_perp_perp_par_perp_2_par.v
692
+ theorems: '*'
693
+ - path: theories/Main/Meta_theory/Parallel_postulates/triangle_playfair_bis.v
694
+ theorems: '*'
695
+ - path: theories/Main/Meta_theory/Parallel_postulates/rectangle_principle_rectangle_existence.v
696
+ theorems: '*'
697
+ - path: theories/Main/Meta_theory/Parallel_postulates/playfair_bis_playfair.v
698
+ theorems: '*'
699
+ - path: theories/Main/Meta_theory/Parallel_postulates/parallel_postulates.v
700
+ theorems: '*'
701
+ - path: theories/Main/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_variant.v
702
+ theorems: '*'
703
+ - path: theories/Main/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_weak_inverse_projection_postulate.v
704
+ theorems: '*'
705
+ - path: theories/Main/Meta_theory/Parallel_postulates/existential_saccheri_rah.v
706
+ theorems: '*'
707
+ - path: theories/Main/Meta_theory/Parallel_postulates/tarski_s_euclid_remove_degenerated_cases.v
708
+ theorems: '*'
709
+ - path: theories/Main/Meta_theory/Parallel_postulates/proclus_SPP.v
710
+ theorems: '*'
711
+ - path: theories/Main/Meta_theory/Parallel_postulates/weak_inverse_projection_postulate_weak_tarski_s_parallel_postulate.v
712
+ theorems: '*'
713
+ - path: theories/Main/Meta_theory/Parallel_postulates/TCP_tarski.v
714
+ theorems: '*'
715
+ - path: theories/Main/Meta_theory/Parallel_postulates/par_perp_perp_TCP.v
716
+ theorems: '*'
717
+ - path: theories/Main/Meta_theory/Parallel_postulates/playfair_midpoint.v
718
+ theorems: '*'
719
+ - path: theories/Main/Meta_theory/Parallel_postulates/midpoint_playfair.v
720
+ theorems: '*'
721
+ - path: theories/Main/Meta_theory/Parallel_postulates/SPP_tarski.v
722
+ theorems: '*'
723
+ - path: theories/Main/Meta_theory/Parallel_postulates/rah_posidonius_postulate.v
724
+ theorems: '*'
725
+ - path: theories/Main/Meta_theory/Parallel_postulates/existential_playfair_rah.v
726
+ theorems: '*'
727
+ - path: theories/Main/Meta_theory/Parallel_postulates/rah_existential_saccheri.v
728
+ theorems: '*'
729
+ - path: theories/Main/Meta_theory/Parallel_postulates/thales_converse_postulate_weak_triangle_circumscription_principle.v
730
+ theorems: '*'
731
+ - path: theories/Main/Meta_theory/Parallel_postulates/proclus_aristotle.v
732
+ theorems: '*'
733
+ - path: theories/Main/Meta_theory/Parallel_postulates/proclus_bis_proclus.v
734
+ theorems: '*'
735
+ - path: theories/Main/Meta_theory/Parallel_postulates/similar_rah.v
736
+ theorems: '*'
737
+ - path: theories/Main/Meta_theory/Parallel_postulates/thales_converse_postulate_thales_existence.v
738
+ theorems: '*'
739
+ - path: theories/Main/Meta_theory/Parallel_postulates/playfair_universal_posidonius_postulate.v
740
+ theorems: '*'
741
+ - path: theories/Main/Meta_theory/Models/tarski_to_col_theory.v
742
+ theorems: '*'
743
+ - path: theories/Main/Meta_theory/Models/tarski_to_coinc_theory_for_cop.v
744
+ theorems: '*'
745
+ - path: theories/Main/Meta_theory/Models/tarski_to_beeson.v
746
+ theorems: '*'
747
+ - path: theories/Main/Meta_theory/Models/tarski_to_euclid.v
748
+ theorems: '*'
749
+ - path: theories/Main/Meta_theory/Models/tarski_to_makarios.v
750
+ theorems: '*'
751
+ - path: theories/Main/Meta_theory/Models/tarski_continuous_to_trc.v
752
+ theorems: '*'
753
+ - path: theories/Main/Meta_theory/Models/tarski_to_cong_theory.v
754
+ theorems: '*'
755
+ - path: theories/Main/Meta_theory/Models/tarski_to_gupta_inspired.v
756
+ theorems: '*'
757
+ - path: theories/Main/Meta_theory/Models/makarios_to_tarski.v
758
+ theorems: '*'
759
+ - path: theories/Main/Meta_theory/Models/gupta_inspired_to_tarski.v
760
+ theorems: '*'
761
+ - path: theories/Main/Meta_theory/Models/tarski_to_coinc_theory_for_concyclic.v
762
+ theorems: '*'
763
+ - path: theories/Main/Meta_theory/Models/tarski_to_coinc_theory_for_col.v
764
+ theorems: '*'
765
+ - path: theories/Main/Meta_theory/Models/hilbert_to_tarski.v
766
+ theorems: '*'
767
+ - path: theories/Main/Meta_theory/Models/tarski_to_hilbert.v
768
+ theorems: '*'
769
+ - path: theories/Main/Meta_theory/Models/beeson_to_tarski.v
770
+ theorems: '*'
771
+ - path: theories/Main/Meta_theory/Dimension_axioms/upper_dim_3.v
772
+ theorems: '*'
773
+ - path: theories/Main/Meta_theory/Dimension_axioms/upper_dim_2.v
774
+ theorems: '*'
775
+ - path: theories/Main/Meta_theory/Continuity/archimedes_cantor_dedekind.v
776
+ theorems: '*'
777
+ - path: theories/Main/Meta_theory/Continuity/dedekind_completeness.v
778
+ theorems: '*'
779
+ - path: theories/Main/Meta_theory/Continuity/dedekind_cantor.v
780
+ theorems: '*'
781
+ - path: theories/Main/Meta_theory/Continuity/first_order_dedekind_circle_circle.v
782
+ theorems: '*'
783
+ - path: theories/Main/Meta_theory/Continuity/angle_archimedes.v
784
+ theorems: '*'
785
+ - path: theories/Main/Meta_theory/Continuity/aristotle.v
786
+ theorems: '*'
787
+ - path: theories/Main/Meta_theory/Continuity/elementary_continuity_props.v
788
+ theorems: '*'
789
+ - path: theories/Main/Meta_theory/Continuity/grad.v
790
+ theorems: '*'
791
+ - path: theories/Main/Meta_theory/Continuity/dedekind_variant.v
792
+ theorems: '*'
793
+ - path: theories/Main/Meta_theory/Continuity/cantor_completeness.v
794
+ theorems: '*'
795
+ - path: theories/Main/Meta_theory/Continuity/first_order.v
796
+ theorems: '*'
797
+ - path: theories/Main/Meta_theory/Continuity/completeness.v
798
+ theorems: '*'
799
+ - path: theories/Main/Meta_theory/Continuity/archimedes.v
800
+ theorems: '*'
801
+ - path: theories/Main/Meta_theory/Continuity/cantor_variant.v
802
+ theorems: '*'
803
+ - path: theories/Main/Meta_theory/Continuity/dedekind_archimedes.v
804
+ theorems: '*'
805
+ - path: theories/Main/Meta_theory/Decidability/equivalence_between_decidability_properties_of_basic_relations.v
806
+ theorems: '*'
807
+ - path: theories/Main/Utils/triples.v
808
+ theorems: '*'
809
+ - path: theories/Main/Utils/all_equiv.v
810
+ theorems: '*'
811
+ - path: theories/Main/Unit_Tests/unit_tests.v
812
+ theorems: '*'
813
+ - path: theories/Main/Unit_Tests/unit_tests_2.v
814
+ theorems: '*'
815
+ - path: theories/Main/Tarski_dev/Ch13_2_length.v
816
+ theorems: '*'
817
+ - path: theories/Main/Tarski_dev/Ch10_line_reflexivity_2.v
818
+ theorems: '*'
819
+ - path: theories/Main/Tarski_dev/Ch15_pyth_rel.v
820
+ theorems: '*'
821
+ - path: theories/Main/Tarski_dev/Ch04_cong_bet.v
822
+ theorems: '*'
823
+ - path: theories/Main/Tarski_dev/Ch14_prod.v
824
+ theorems: '*'
825
+ - path: theories/Main/Tarski_dev/Ch09_plane.v
826
+ theorems: '*'
827
+ - path: theories/Main/Tarski_dev/Ch05_bet_le.v
828
+ theorems: '*'
829
+ - path: theories/Main/Tarski_dev/Ch13_1.v
830
+ theorems: '*'
831
+ - path: theories/Main/Tarski_dev/Ch10_line_reflexivity.v
832
+ theorems: '*'
833
+ - path: theories/Main/Tarski_dev/Ch07_midpoint.v
834
+ theorems: '*'
835
+ - path: theories/Main/Tarski_dev/Ch13_4_cos.v
836
+ theorems: '*'
837
+ - path: theories/Main/Tarski_dev/Ch02_cong.v
838
+ theorems: '*'
839
+ - path: theories/Main/Tarski_dev/Ch12_parallel.v
840
+ theorems: '*'
841
+ - path: theories/Main/Tarski_dev/Ch06_out_lines.v
842
+ theorems: '*'
843
+ - path: theories/Main/Tarski_dev/Ch13_6_Desargues_Hessenberg.v
844
+ theorems: '*'
845
+ - path: theories/Main/Tarski_dev/Ch14_order.v
846
+ theorems: '*'
847
+ - path: theories/Main/Tarski_dev/Ch16_coordinates.v
848
+ theorems: '*'
849
+ - path: theories/Main/Tarski_dev/Ch13_3_angles.v
850
+ theorems: '*'
851
+ - path: theories/Main/Tarski_dev/Ch03_bet.v
852
+ theorems: '*'
853
+ - path: theories/Main/Tarski_dev/Ch16_coordinates_with_functions.v
854
+ theorems: '*'
855
+ - path: theories/Main/Tarski_dev/Ch12_parallel_inter_dec.v
856
+ theorems: '*'
857
+ - path: theories/Main/Tarski_dev/Ch13_5_Pappus_Pascal.v
858
+ theorems: '*'
859
+ - path: theories/Main/Tarski_dev/Ch08_orthogonality.v
860
+ theorems: '*'
861
+ - path: theories/Main/Tarski_dev/Ch15_lengths.v
862
+ theorems: '*'
863
+ - path: theories/Main/Tarski_dev/Ch04_col.v
864
+ theorems: '*'
865
+ - path: theories/Main/Tarski_dev/Ch11_angles.v
866
+ theorems: '*'
867
+ - path: theories/Main/Tarski_dev/Ch14_sum.v
868
+ theorems: '*'
869
+ - path: theories/Main/Annexes/midpoint_theorems.v
870
+ theorems: '*'
871
+ - path: theories/Main/Annexes/tangency.v
872
+ theorems: '*'
873
+ - path: theories/Main/Annexes/vectors.v
874
+ theorems: '*'
875
+ - path: theories/Main/Annexes/Tagged_predicates.v
876
+ theorems: '*'
877
+ - path: theories/Main/Annexes/quadrilaterals_inter_dec.v
878
+ theorems: '*'
879
+ - path: theories/Main/Annexes/suma.v
880
+ theorems: '*'
881
+ - path: theories/Main/Annexes/project.v
882
+ theorems: '*'
883
+ - path: theories/Main/Annexes/rhombus.v
884
+ theorems: '*'
885
+ - path: theories/Main/Annexes/circles.v
886
+ theorems: '*'
887
+ - path: theories/Main/Annexes/quadrilaterals.v
888
+ theorems: '*'
889
+ - path: theories/Main/Annexes/inscribed_angle.v
890
+ theorems: '*'
891
+ - path: theories/Main/Annexes/half_angles.v
892
+ theorems: '*'
893
+ - path: theories/Main/Annexes/coplanar.v
894
+ theorems: '*'
895
+ - path: theories/Main/Annexes/sums.v
896
+ theorems: '*'
897
+ - path: theories/Main/Annexes/perp_bisect.v
898
+ theorems: '*'
899
+ - path: theories/Main/Annexes/defect.v
900
+ theorems: '*'
901
+ - path: theories/Main/Annexes/saccheri.v
902
+ theorems: '*'
903
+ - path: theories/Main/Highschool/varignon.v
904
+ theorems: '*'
905
+ - path: theories/Main/Highschool/concyclic.v
906
+ theorems: '*'
907
+ - path: theories/Main/Highschool/Euler_line.v
908
+ theorems: '*'
909
+ - path: theories/Main/Highschool/orientation.v
910
+ theorems: '*'
911
+ - path: theories/Main/Highschool/sesamath_exercises.v
912
+ theorems: '*'
913
+ - path: theories/Main/Highschool/bisector.v
914
+ theorems: '*'
915
+ - path: theories/Main/Highschool/circumcenter.v
916
+ theorems: '*'
917
+ - path: theories/Main/Highschool/triangles.v
918
+ theorems: '*'
919
+ - path: theories/Main/Highschool/midpoint_thales.v
920
+ theorems: '*'
921
+ - path: theories/Main/Highschool/SegmTrisect.v
922
+ theorems: '*'
923
+ - path: theories/Main/Highschool/gravityCenter.v
924
+ theorems: '*'
925
+ - path: theories/Main/Highschool/incenter.v
926
+ theorems: '*'
927
+ - path: theories/Main/Highschool/orthocenter.v
928
+ theorems: '*'
929
+ - path: theories/Main/Highschool/exercises.v
930
+ theorems: '*'