clingo-funasp 6.0.0.post10__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1977) hide show
  1. clingo_funasp-6.0.0.post10/.clang-format +5 -0
  2. clingo_funasp-6.0.0.post10/.clang-tidy +28 -0
  3. clingo_funasp-6.0.0.post10/.clangd +3 -0
  4. clingo_funasp-6.0.0.post10/.cmakelintrc +1 -0
  5. clingo_funasp-6.0.0.post10/.envrc +24 -0
  6. clingo_funasp-6.0.0.post10/.github/adjust_version.py +53 -0
  7. clingo_funasp-6.0.0.post10/.github/conda/bld.bat +12 -0
  8. clingo_funasp-6.0.0.post10/.github/conda/build.sh +23 -0
  9. clingo_funasp-6.0.0.post10/.github/conda/conda_build_config.yaml +6 -0
  10. clingo_funasp-6.0.0.post10/.github/conda/meta.yaml +40 -0
  11. clingo_funasp-6.0.0.post10/.github/ppa/.gitignore +9 -0
  12. clingo_funasp-6.0.0.post10/.github/ppa/build.sh +194 -0
  13. clingo_funasp-6.0.0.post10/.github/ppa/noble/.gitignore +8 -0
  14. clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/changelog +5 -0
  15. clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/clingo.install +1 -0
  16. clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/control +43 -0
  17. clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/copyright +31 -0
  18. clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/docs +1 -0
  19. clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/libclingo-dev.install +2 -0
  20. clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/libclingo.install +1 -0
  21. clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/python3-clingo.install +1 -0
  22. clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/rules +14 -0
  23. clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/source/format +1 -0
  24. clingo_funasp-6.0.0.post10/.github/ppa/trixie/.gitignore +8 -0
  25. clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/changelog +5 -0
  26. clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/clingo.install +1 -0
  27. clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/control +43 -0
  28. clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/copyright +31 -0
  29. clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/docs +1 -0
  30. clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/libclingo-dev.install +2 -0
  31. clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/libclingo.install +1 -0
  32. clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/python3-clingo.install +1 -0
  33. clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/rules +14 -0
  34. clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/source/format +1 -0
  35. clingo_funasp-6.0.0.post10/.github/trigger.py +143 -0
  36. clingo_funasp-6.0.0.post10/.github/workflows/cibw.yml +167 -0
  37. clingo_funasp-6.0.0.post10/.github/workflows/conda.yaml +161 -0
  38. clingo_funasp-6.0.0.post10/.github/workflows/deb.yml +72 -0
  39. clingo_funasp-6.0.0.post10/.github/workflows/ppa.yml +51 -0
  40. clingo_funasp-6.0.0.post10/.github/workflows/test.yml +97 -0
  41. clingo_funasp-6.0.0.post10/.github/workflows/test_pypi.yml +52 -0
  42. clingo_funasp-6.0.0.post10/.gitignore +31 -0
  43. clingo_funasp-6.0.0.post10/.gitmodules +21 -0
  44. clingo_funasp-6.0.0.post10/.ignore +1 -0
  45. clingo_funasp-6.0.0.post10/.pre-commit-config.yaml +33 -0
  46. clingo_funasp-6.0.0.post10/.pylintrc +14 -0
  47. clingo_funasp-6.0.0.post10/.rgignore +1 -0
  48. clingo_funasp-6.0.0.post10/CMakeLists.txt +147 -0
  49. clingo_funasp-6.0.0.post10/DEVELOP.md +60 -0
  50. clingo_funasp-6.0.0.post10/LICENSE.md +21 -0
  51. clingo_funasp-6.0.0.post10/Makefile +133 -0
  52. clingo_funasp-6.0.0.post10/PKG-INFO +203 -0
  53. clingo_funasp-6.0.0.post10/README.md +185 -0
  54. clingo_funasp-6.0.0.post10/STYLE.md +69 -0
  55. clingo_funasp-6.0.0.post10/app/CMakeLists.txt +17 -0
  56. clingo_funasp-6.0.0.post10/app/main.cc +56 -0
  57. clingo_funasp-6.0.0.post10/bench/.gitignore +6 -0
  58. clingo_funasp-6.0.0.post10/bench/README.md +36 -0
  59. clingo_funasp-6.0.0.post10/bench/dispatch.sh +35 -0
  60. clingo_funasp-6.0.0.post10/bench/plot-cactus.py +36 -0
  61. clingo_funasp-6.0.0.post10/bench/plot.py +93 -0
  62. clingo_funasp-6.0.0.post10/bench/programs/clingo-6.0.0 +104 -0
  63. clingo_funasp-6.0.0.post10/bench/run.sh +95 -0
  64. clingo_funasp-6.0.0.post10/bench/runscripts/local.xml +686 -0
  65. clingo_funasp-6.0.0.post10/bench/templates/seq-generic.sh +12 -0
  66. clingo_funasp-6.0.0.post10/bench/templates/single.dist +22 -0
  67. clingo_funasp-6.0.0.post10/build.sh +13 -0
  68. clingo_funasp-6.0.0.post10/cmake/FindGperftools.cmake +76 -0
  69. clingo_funasp-6.0.0.post10/cmake/FindRE2C.cmake +112 -0
  70. clingo_funasp-6.0.0.post10/cmake/clingo-config.cmake.in +3 -0
  71. clingo_funasp-6.0.0.post10/cmake/clingo.map +4 -0
  72. clingo_funasp-6.0.0.post10/cmake/glob-paths.py +119 -0
  73. clingo_funasp-6.0.0.post10/cmake/macros.cmake +78 -0
  74. clingo_funasp-6.0.0.post10/cmake/pyclingo.map +4 -0
  75. clingo_funasp-6.0.0.post10/cmake/python-site.py +69 -0
  76. clingo_funasp-6.0.0.post10/doc/Doxyfile +2858 -0
  77. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/.github/workflows/publish.yaml +22 -0
  78. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/.gitignore +6 -0
  79. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/.npmignore +3 -0
  80. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/Doxyfile +2932 -0
  81. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/LICENSE +21 -0
  82. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/Makefile +39 -0
  83. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/README.md +207 -0
  84. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/customization.md +121 -0
  85. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/extensions.md +284 -0
  86. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/darkmode_toggle.png +0 -0
  87. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/fancy_scrollbars_firefox.png +0 -0
  88. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/fancy_scrollbars_webkit.gif +0 -0
  89. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/fragment_copy_button.png +0 -0
  90. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/interactive_toc_mobile.png +0 -0
  91. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/paragraph_link.png +0 -0
  92. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/tricks.md +127 -0
  93. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js +157 -0
  94. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-fragment-copy-button.js +85 -0
  95. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-interactive-toc.js +91 -0
  96. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-paragraph-link.js +51 -0
  97. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-sidebar-only-darkmode-toggle.css +40 -0
  98. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-sidebar-only.css +116 -0
  99. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-tabs.js +90 -0
  100. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome.css +2683 -0
  101. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-custom/custom-alternative.css +54 -0
  102. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-custom/custom.css +57 -0
  103. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-custom/header.html +90 -0
  104. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-custom/toggle-alternative-theme.js +12 -0
  105. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/img/screenshot.png +0 -0
  106. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/img/testimage.png +0 -0
  107. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/img/theme-variants-base.drawio.svg +117 -0
  108. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/img/theme-variants-sidebar-only.drawio.svg +102 -0
  109. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/include/MyLibrary/example.hpp +169 -0
  110. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/include/MyLibrary/subclass-example.hpp +46 -0
  111. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/logo.drawio.svg +1 -0
  112. clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/package.json +34 -0
  113. clingo_funasp-6.0.0.post10/doc/header.html +82 -0
  114. clingo_funasp-6.0.0.post10/doc/mainpage.hh +387 -0
  115. clingo_funasp-6.0.0.post10/examples/c-api/.clang-tidy +29 -0
  116. clingo_funasp-6.0.0.post10/examples/c-api/CMakeLists.txt +31 -0
  117. clingo_funasp-6.0.0.post10/examples/c-api/app.c +119 -0
  118. clingo_funasp-6.0.0.post10/examples/c-api/ast.c +149 -0
  119. clingo_funasp-6.0.0.post10/examples/c-api/backend.c +174 -0
  120. clingo_funasp-6.0.0.post10/examples/c-api/base-atoms.c +10 -0
  121. clingo_funasp-6.0.0.post10/examples/c-api/base-theory.c +10 -0
  122. clingo_funasp-6.0.0.post10/examples/c-api/config.c +10 -0
  123. clingo_funasp-6.0.0.post10/examples/c-api/control.c +92 -0
  124. clingo_funasp-6.0.0.post10/examples/c-api/ground.c +10 -0
  125. clingo_funasp-6.0.0.post10/examples/c-api/model.c +10 -0
  126. clingo_funasp-6.0.0.post10/examples/c-api/profile.c +10 -0
  127. clingo_funasp-6.0.0.post10/examples/c-api/propagate.c +8 -0
  128. clingo_funasp-6.0.0.post10/examples/c-api/solve.c +10 -0
  129. clingo_funasp-6.0.0.post10/examples/c-api/stats.c +10 -0
  130. clingo_funasp-6.0.0.post10/examples/c-api/symbol.c +129 -0
  131. clingo_funasp-6.0.0.post10/examples/c-api/theory.c +10 -0
  132. clingo_funasp-6.0.0.post10/examples/c-api/version.c +14 -0
  133. clingo_funasp-6.0.0.post10/examples/html/.envrc +1 -0
  134. clingo_funasp-6.0.0.post10/examples/html/LICENSE.md +21 -0
  135. clingo_funasp-6.0.0.post10/examples/html/css/main.css +475 -0
  136. clingo_funasp-6.0.0.post10/examples/html/examples/blocksworld-planning.lp +53 -0
  137. clingo_funasp-6.0.0.post10/examples/html/examples/flying-birds.lp +9 -0
  138. clingo_funasp-6.0.0.post10/examples/html/examples/graph-coloring.lp +16 -0
  139. clingo_funasp-6.0.0.post10/examples/html/examples/harry-and-sally.lp +6 -0
  140. clingo_funasp-6.0.0.post10/examples/html/examples/n-queens.lp +8 -0
  141. clingo_funasp-6.0.0.post10/examples/html/examples/pigeonator-propagator.lp +60 -0
  142. clingo_funasp-6.0.0.post10/examples/html/examples/traveling-salesperson.lp +27 -0
  143. clingo_funasp-6.0.0.post10/examples/html/index.html +87 -0
  144. clingo_funasp-6.0.0.post10/examples/html/js/ace.js +22 -0
  145. clingo_funasp-6.0.0.post10/examples/html/js/clingo.js +1 -0
  146. clingo_funasp-6.0.0.post10/examples/html/js/clingo.wasm +1 -0
  147. clingo_funasp-6.0.0.post10/examples/html/js/mode-clingo.js +631 -0
  148. clingo_funasp-6.0.0.post10/examples/html/js/module.js +94 -0
  149. clingo_funasp-6.0.0.post10/examples/html/js/worker.js +67 -0
  150. clingo_funasp-6.0.0.post10/examples/js/example.js +39 -0
  151. clingo_funasp-6.0.0.post10/examples/python-api/dependency/README.md +29 -0
  152. clingo_funasp-6.0.0.post10/examples/python-api/dependency/example.lp +6 -0
  153. clingo_funasp-6.0.0.post10/examples/python-api/dependency/example.py +421 -0
  154. clingo_funasp-6.0.0.post10/examples/python-api/dl/README.md +56 -0
  155. clingo_funasp-6.0.0.post10/examples/python-api/dl/app.py +524 -0
  156. clingo_funasp-6.0.0.post10/examples/python-api/dl/fsE.lp +19 -0
  157. clingo_funasp-6.0.0.post10/examples/python-api/dl/fsI.lp +4 -0
  158. clingo_funasp-6.0.0.post10/examples/python-api/match/README.md +23 -0
  159. clingo_funasp-6.0.0.post10/examples/python-api/match/example.py +489 -0
  160. clingo_funasp-6.0.0.post10/examples/python-api/order/README.md +16 -0
  161. clingo_funasp-6.0.0.post10/examples/python-api/order/example.lp +3 -0
  162. clingo_funasp-6.0.0.post10/examples/python-api/order/example.py +52 -0
  163. clingo_funasp-6.0.0.post10/examples/python-api/tmode/README.md +31 -0
  164. clingo_funasp-6.0.0.post10/examples/python-api/tmode/example.lp +16 -0
  165. clingo_funasp-6.0.0.post10/examples/python-api/tmode/example2.lp +8 -0
  166. clingo_funasp-6.0.0.post10/examples/python-api/tmode/tmode.py +246 -0
  167. clingo_funasp-6.0.0.post10/examples/python-api/variables/README.md +16 -0
  168. clingo_funasp-6.0.0.post10/examples/python-api/variables/example.py +75 -0
  169. clingo_funasp-6.0.0.post10/lib/CMakeLists.txt +13 -0
  170. clingo_funasp-6.0.0.post10/lib/c-api/CMakeLists.txt +130 -0
  171. clingo_funasp-6.0.0.post10/lib/c-api/include/.clang-tidy +25 -0
  172. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/app.h +178 -0
  173. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/ast.h +544 -0
  174. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/backend.h +244 -0
  175. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/base.h +489 -0
  176. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/config.h +249 -0
  177. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/control.h +244 -0
  178. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/core.h +423 -0
  179. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/ground.h +177 -0
  180. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/model.h +212 -0
  181. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/observe.h +175 -0
  182. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/profile.h +90 -0
  183. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/propagate.h +623 -0
  184. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/script.h +73 -0
  185. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/shared.h +40 -0
  186. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/solve.h +205 -0
  187. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/stats.h +219 -0
  188. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/symbol.h +274 -0
  189. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/theory.h +176 -0
  190. clingo_funasp-6.0.0.post10/lib/c-api/include/clingo.h +17 -0
  191. clingo_funasp-6.0.0.post10/lib/c-api/src/.clang-tidy +24 -0
  192. clingo_funasp-6.0.0.post10/lib/c-api/src/ast.cc +2988 -0
  193. clingo_funasp-6.0.0.post10/lib/c-api/src/ast.hh +14 -0
  194. clingo_funasp-6.0.0.post10/lib/c-api/src/ast_yaml.cc +1248 -0
  195. clingo_funasp-6.0.0.post10/lib/c-api/src/backend.cc +301 -0
  196. clingo_funasp-6.0.0.post10/lib/c-api/src/base.cc +645 -0
  197. clingo_funasp-6.0.0.post10/lib/c-api/src/config.cc +303 -0
  198. clingo_funasp-6.0.0.post10/lib/c-api/src/control.cc +264 -0
  199. clingo_funasp-6.0.0.post10/lib/c-api/src/control.hh +90 -0
  200. clingo_funasp-6.0.0.post10/lib/c-api/src/core.cc +347 -0
  201. clingo_funasp-6.0.0.post10/lib/c-api/src/core.hh +29 -0
  202. clingo_funasp-6.0.0.post10/lib/c-api/src/ground.cc +125 -0
  203. clingo_funasp-6.0.0.post10/lib/c-api/src/lib.cc +138 -0
  204. clingo_funasp-6.0.0.post10/lib/c-api/src/lib.hh +143 -0
  205. clingo_funasp-6.0.0.post10/lib/c-api/src/main.cc +328 -0
  206. clingo_funasp-6.0.0.post10/lib/c-api/src/model.cc +154 -0
  207. clingo_funasp-6.0.0.post10/lib/c-api/src/observe.cc +253 -0
  208. clingo_funasp-6.0.0.post10/lib/c-api/src/opts.hh +256 -0
  209. clingo_funasp-6.0.0.post10/lib/c-api/src/profile.cc +33 -0
  210. clingo_funasp-6.0.0.post10/lib/c-api/src/propagate.cc +535 -0
  211. clingo_funasp-6.0.0.post10/lib/c-api/src/script.cc +74 -0
  212. clingo_funasp-6.0.0.post10/lib/c-api/src/solve.cc +153 -0
  213. clingo_funasp-6.0.0.post10/lib/c-api/src/stats.cc +276 -0
  214. clingo_funasp-6.0.0.post10/lib/c-api/src/symbol.cc +208 -0
  215. clingo_funasp-6.0.0.post10/lib/control/CMakeLists.txt +60 -0
  216. clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/aggregate.hh +21 -0
  217. clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/condlit.hh +20 -0
  218. clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/config.hh +370 -0
  219. clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/context.hh +234 -0
  220. clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/grounder.hh +77 -0
  221. clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/literal.hh +109 -0
  222. clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/parse.hh +216 -0
  223. clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/solver.hh +864 -0
  224. clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/statement.hh +15 -0
  225. clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/term.hh +32 -0
  226. clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/theory.hh +20 -0
  227. clingo_funasp-6.0.0.post10/lib/control/src/aggregate.cc +385 -0
  228. clingo_funasp-6.0.0.post10/lib/control/src/condlit.cc +230 -0
  229. clingo_funasp-6.0.0.post10/lib/control/src/config.cc +403 -0
  230. clingo_funasp-6.0.0.post10/lib/control/src/context.cc +41 -0
  231. clingo_funasp-6.0.0.post10/lib/control/src/grounder.cc +479 -0
  232. clingo_funasp-6.0.0.post10/lib/control/src/solver.cc +1441 -0
  233. clingo_funasp-6.0.0.post10/lib/control/src/statement.cc +197 -0
  234. clingo_funasp-6.0.0.post10/lib/control/src/term.cc +220 -0
  235. clingo_funasp-6.0.0.post10/lib/control/src/theory.cc +125 -0
  236. clingo_funasp-6.0.0.post10/lib/control/tests/logger.cc +70 -0
  237. clingo_funasp-6.0.0.post10/lib/control/tests/text.cc +774 -0
  238. clingo_funasp-6.0.0.post10/lib/core/CMakeLists.txt +51 -0
  239. clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/backend.hh +305 -0
  240. clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/core.hh +205 -0
  241. clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/fstring.hh +117 -0
  242. clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/location.hh +136 -0
  243. clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/logger.hh +237 -0
  244. clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/number.hh +291 -0
  245. clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/output.hh +257 -0
  246. clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/symbol.hh +620 -0
  247. clingo_funasp-6.0.0.post10/lib/core/src/core.cc +250 -0
  248. clingo_funasp-6.0.0.post10/lib/core/src/fstring.cc +300 -0
  249. clingo_funasp-6.0.0.post10/lib/core/src/number.cc +1101 -0
  250. clingo_funasp-6.0.0.post10/lib/core/src/symbol.cc +1182 -0
  251. clingo_funasp-6.0.0.post10/lib/core/tests/number.cc +166 -0
  252. clingo_funasp-6.0.0.post10/lib/core/tests/symbol.cc +287 -0
  253. clingo_funasp-6.0.0.post10/lib/cxx-api/.clang-tidy +26 -0
  254. clingo_funasp-6.0.0.post10/lib/cxx-api/CMakeLists.txt +114 -0
  255. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/app.hh +255 -0
  256. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/ast.hh +913 -0
  257. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/backend.hh +254 -0
  258. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/base.hh +824 -0
  259. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/config.hh +565 -0
  260. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/control.hh +737 -0
  261. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/core.hh +833 -0
  262. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/detail/ast.hh +295 -0
  263. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/ground.hh +140 -0
  264. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/observe.hh +195 -0
  265. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/profile.hh +66 -0
  266. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/propagate.hh +619 -0
  267. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/script.hh +146 -0
  268. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/solve.hh +564 -0
  269. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/stats.hh +485 -0
  270. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/symbol.hh +373 -0
  271. clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/theory.hh +287 -0
  272. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/.clang-tidy +28 -0
  273. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/app.cc +74 -0
  274. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/app_error.cc +84 -0
  275. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/asp.cc +40 -0
  276. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/aspif.cc +447 -0
  277. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/ast.cc +966 -0
  278. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/backend.cc +218 -0
  279. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/base.cc +198 -0
  280. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/cbs.hh +35 -0
  281. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/config.cc +128 -0
  282. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/control.cc +192 -0
  283. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/core.cc +12 -0
  284. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/error.cc +158 -0
  285. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/incremental.cc +72 -0
  286. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/lp.hh +164 -0
  287. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/observe.cc +233 -0
  288. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/profile.cc +69 -0
  289. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/propagate.cc +436 -0
  290. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/script.cc +85 -0
  291. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/solve.cc +199 -0
  292. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/stats.cc +92 -0
  293. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/symbol.cc +103 -0
  294. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/tempfile.hh +86 -0
  295. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/theory.cc +204 -0
  296. clingo_funasp-6.0.0.post10/lib/cxx-api/tests/write_aspif.cc +140 -0
  297. clingo_funasp-6.0.0.post10/lib/ground/CMakeLists.txt +72 -0
  298. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/assignment_aggregate.hh +398 -0
  299. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/base.hh +465 -0
  300. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/body_aggregate.hh +448 -0
  301. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/condlit.hh +500 -0
  302. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/disjunction.hh +292 -0
  303. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/head_aggregate.hh +388 -0
  304. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/instantiator.hh +252 -0
  305. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/literal.hh +407 -0
  306. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/matcher.hh +627 -0
  307. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/profile.hh +311 -0
  308. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/program.hh +33 -0
  309. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/script.hh +46 -0
  310. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/statement.hh +348 -0
  311. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/term.hh +421 -0
  312. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/theory_atom.hh +334 -0
  313. clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/theory_term.hh +137 -0
  314. clingo_funasp-6.0.0.post10/lib/ground/src/assignment_aggregate.cc +751 -0
  315. clingo_funasp-6.0.0.post10/lib/ground/src/base.cc +102 -0
  316. clingo_funasp-6.0.0.post10/lib/ground/src/body_aggregate.cc +850 -0
  317. clingo_funasp-6.0.0.post10/lib/ground/src/condlit.cc +696 -0
  318. clingo_funasp-6.0.0.post10/lib/ground/src/disjunction.cc +478 -0
  319. clingo_funasp-6.0.0.post10/lib/ground/src/head_aggregate.cc +716 -0
  320. clingo_funasp-6.0.0.post10/lib/ground/src/instantiator.cc +236 -0
  321. clingo_funasp-6.0.0.post10/lib/ground/src/literal.cc +928 -0
  322. clingo_funasp-6.0.0.post10/lib/ground/src/matcher.cc +149 -0
  323. clingo_funasp-6.0.0.post10/lib/ground/src/profile.cc +17 -0
  324. clingo_funasp-6.0.0.post10/lib/ground/src/statement.cc +954 -0
  325. clingo_funasp-6.0.0.post10/lib/ground/src/term.cc +1126 -0
  326. clingo_funasp-6.0.0.post10/lib/ground/src/theory_atom.cc +471 -0
  327. clingo_funasp-6.0.0.post10/lib/ground/src/theory_term.cc +173 -0
  328. clingo_funasp-6.0.0.post10/lib/ground/tests/matcher.cc +300 -0
  329. clingo_funasp-6.0.0.post10/lib/input/CMakeLists.txt +133 -0
  330. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/aggregate.hh +129 -0
  331. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/attributes.hh +70 -0
  332. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/body_literal.hh +122 -0
  333. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/head_literal.hh +136 -0
  334. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/literal.hh +160 -0
  335. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/parser.hh +79 -0
  336. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/print.hh +405 -0
  337. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/program.hh +283 -0
  338. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/analyze.hh +192 -0
  339. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/check_syntax.hh +25 -0
  340. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/compute_bounds.hh +19 -0
  341. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/dependency.hh +71 -0
  342. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/evaluate.hh +29 -0
  343. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/iesolver.hh +137 -0
  344. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/project.hh +56 -0
  345. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/project_anonymous.hh +27 -0
  346. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/rewrite_anonymous.hh +30 -0
  347. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/rewrite_context.hh +195 -0
  348. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/rewrite_theory.hh +17 -0
  349. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/safety.hh +20 -0
  350. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/simplify.hh +83 -0
  351. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/substitute.hh +42 -0
  352. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/unpool.hh +27 -0
  353. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/unpool_relations.hh +24 -0
  354. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/visit_variables.hh +71 -0
  355. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite.hh +20 -0
  356. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/statement.hh +837 -0
  357. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/term.hh +485 -0
  358. clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/theory.hh +337 -0
  359. clingo_funasp-6.0.0.post10/lib/input/src/parse/aspif.cc +731 -0
  360. clingo_funasp-6.0.0.post10/lib/input/src/parse/assignment.cc +202 -0
  361. clingo_funasp-6.0.0.post10/lib/input/src/parse/body_literal.cc +244 -0
  362. clingo_funasp-6.0.0.post10/lib/input/src/parse/head_literal.cc +263 -0
  363. clingo_funasp-6.0.0.post10/lib/input/src/parse/lexer_impl.xch +203 -0
  364. clingo_funasp-6.0.0.post10/lib/input/src/parse/lexer_state.hh +202 -0
  365. clingo_funasp-6.0.0.post10/lib/input/src/parse/literal.cc +101 -0
  366. clingo_funasp-6.0.0.post10/lib/input/src/parse/parser_state.cc +2 -0
  367. clingo_funasp-6.0.0.post10/lib/input/src/parse/parser_state.hh +945 -0
  368. clingo_funasp-6.0.0.post10/lib/input/src/parse/statement.cc +1077 -0
  369. clingo_funasp-6.0.0.post10/lib/input/src/parse/term.cc +984 -0
  370. clingo_funasp-6.0.0.post10/lib/input/src/parse/theory.cc +346 -0
  371. clingo_funasp-6.0.0.post10/lib/input/src/parser.cc +123 -0
  372. clingo_funasp-6.0.0.post10/lib/input/src/print.cc +1500 -0
  373. clingo_funasp-6.0.0.post10/lib/input/src/program.cc +303 -0
  374. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/add_sign.cc +57 -0
  375. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/add_sign.hh +15 -0
  376. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/analyze.cc +580 -0
  377. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/check_syntax.cc +311 -0
  378. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/compute_bounds.cc +646 -0
  379. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/dependency.cc +898 -0
  380. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/evaluate.cc +485 -0
  381. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/iesolver.cc +279 -0
  382. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/project.cc +307 -0
  383. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/project_anonymous.cc +135 -0
  384. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/rewrite_anonymous.cc +67 -0
  385. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/rewrite_context.cc +251 -0
  386. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/rewrite_theory.cc +36 -0
  387. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/safety.cc +495 -0
  388. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/simplify.cc +1966 -0
  389. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/substitute.cc +660 -0
  390. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/transform.hh +302 -0
  391. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/unpool.cc +632 -0
  392. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/unpool.hh +147 -0
  393. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/unpool_relations.cc +412 -0
  394. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/visit.hh +190 -0
  395. clingo_funasp-6.0.0.post10/lib/input/src/rewrite/visit_variables.cc +136 -0
  396. clingo_funasp-6.0.0.post10/lib/input/src/rewrite.cc +101 -0
  397. clingo_funasp-6.0.0.post10/lib/input/tests/aspif.cc +442 -0
  398. clingo_funasp-6.0.0.post10/lib/input/tests/compute_bounds.cc +57 -0
  399. clingo_funasp-6.0.0.post10/lib/input/tests/dependency.cc +213 -0
  400. clingo_funasp-6.0.0.post10/lib/input/tests/evaluate.cc +129 -0
  401. clingo_funasp-6.0.0.post10/lib/input/tests/iesolver.cc +48 -0
  402. clingo_funasp-6.0.0.post10/lib/input/tests/parser.cc +489 -0
  403. clingo_funasp-6.0.0.post10/lib/input/tests/program.cc +61 -0
  404. clingo_funasp-6.0.0.post10/lib/input/tests/project.cc +112 -0
  405. clingo_funasp-6.0.0.post10/lib/input/tests/project_anonymous.cc +93 -0
  406. clingo_funasp-6.0.0.post10/lib/input/tests/rewrite_anonymous.cc +95 -0
  407. clingo_funasp-6.0.0.post10/lib/input/tests/safety.cc +96 -0
  408. clingo_funasp-6.0.0.post10/lib/input/tests/simplify.cc +391 -0
  409. clingo_funasp-6.0.0.post10/lib/input/tests/test.hh +174 -0
  410. clingo_funasp-6.0.0.post10/lib/input/tests/theory.cc +57 -0
  411. clingo_funasp-6.0.0.post10/lib/input/tests/unpool.cc +209 -0
  412. clingo_funasp-6.0.0.post10/lib/input/tests/unpool_relations.cc +108 -0
  413. clingo_funasp-6.0.0.post10/lib/input/tests/variables.cc +44 -0
  414. clingo_funasp-6.0.0.post10/lib/output/CMakeLists.txt +25 -0
  415. clingo_funasp-6.0.0.post10/lib/output/include/clingo/output/backend.hh +159 -0
  416. clingo_funasp-6.0.0.post10/lib/output/include/clingo/output/text.hh +15 -0
  417. clingo_funasp-6.0.0.post10/lib/output/src/backend.cc +1811 -0
  418. clingo_funasp-6.0.0.post10/lib/output/src/text.cc +566 -0
  419. clingo_funasp-6.0.0.post10/lib/python-api/CMakeLists.txt +123 -0
  420. clingo_funasp-6.0.0.post10/lib/python-api/include/embed.h +20 -0
  421. clingo_funasp-6.0.0.post10/lib/python-api/src/app.cc +444 -0
  422. clingo_funasp-6.0.0.post10/lib/python-api/src/app.hh +15 -0
  423. clingo_funasp-6.0.0.post10/lib/python-api/src/ast.cc +9891 -0
  424. clingo_funasp-6.0.0.post10/lib/python-api/src/ast.hh +36 -0
  425. clingo_funasp-6.0.0.post10/lib/python-api/src/backend.cc +654 -0
  426. clingo_funasp-6.0.0.post10/lib/python-api/src/backend.hh +74 -0
  427. clingo_funasp-6.0.0.post10/lib/python-api/src/base.cc +516 -0
  428. clingo_funasp-6.0.0.post10/lib/python-api/src/base.hh +184 -0
  429. clingo_funasp-6.0.0.post10/lib/python-api/src/clingo.cc +144 -0
  430. clingo_funasp-6.0.0.post10/lib/python-api/src/clingo.hh +9 -0
  431. clingo_funasp-6.0.0.post10/lib/python-api/src/config.cc +373 -0
  432. clingo_funasp-6.0.0.post10/lib/python-api/src/config.hh +57 -0
  433. clingo_funasp-6.0.0.post10/lib/python-api/src/control.cc +704 -0
  434. clingo_funasp-6.0.0.post10/lib/python-api/src/control.hh +211 -0
  435. clingo_funasp-6.0.0.post10/lib/python-api/src/core.cc +407 -0
  436. clingo_funasp-6.0.0.post10/lib/python-api/src/core.hh +192 -0
  437. clingo_funasp-6.0.0.post10/lib/python-api/src/embed.cc +13 -0
  438. clingo_funasp-6.0.0.post10/lib/python-api/src/ground.cc +151 -0
  439. clingo_funasp-6.0.0.post10/lib/python-api/src/ground.hh +39 -0
  440. clingo_funasp-6.0.0.post10/lib/python-api/src/iterable.hh +169 -0
  441. clingo_funasp-6.0.0.post10/lib/python-api/src/iterator.hh +194 -0
  442. clingo_funasp-6.0.0.post10/lib/python-api/src/module.cc +5 -0
  443. clingo_funasp-6.0.0.post10/lib/python-api/src/propagate.cc +918 -0
  444. clingo_funasp-6.0.0.post10/lib/python-api/src/propagate.hh +42 -0
  445. clingo_funasp-6.0.0.post10/lib/python-api/src/script.cc +435 -0
  446. clingo_funasp-6.0.0.post10/lib/python-api/src/script.hh +13 -0
  447. clingo_funasp-6.0.0.post10/lib/python-api/src/solve.cc +483 -0
  448. clingo_funasp-6.0.0.post10/lib/python-api/src/solve.hh +111 -0
  449. clingo_funasp-6.0.0.post10/lib/python-api/src/stats.cc +515 -0
  450. clingo_funasp-6.0.0.post10/lib/python-api/src/stats.hh +109 -0
  451. clingo_funasp-6.0.0.post10/lib/python-api/src/symbol.cc +393 -0
  452. clingo_funasp-6.0.0.post10/lib/python-api/src/symbol.hh +77 -0
  453. clingo_funasp-6.0.0.post10/lib/python-api/src/theory.cc +426 -0
  454. clingo_funasp-6.0.0.post10/lib/python-api/src/theory.hh +9 -0
  455. clingo_funasp-6.0.0.post10/lib/python-api/src/util.hh +441 -0
  456. clingo_funasp-6.0.0.post10/lib/python-api/stubs/__init__.pyi +142 -0
  457. clingo_funasp-6.0.0.post10/lib/python-api/stubs/app.pyi +269 -0
  458. clingo_funasp-6.0.0.post10/lib/python-api/stubs/ast.pyi +7467 -0
  459. clingo_funasp-6.0.0.post10/lib/python-api/stubs/backend.pyi +558 -0
  460. clingo_funasp-6.0.0.post10/lib/python-api/stubs/base.pyi +529 -0
  461. clingo_funasp-6.0.0.post10/lib/python-api/stubs/config.pyi +245 -0
  462. clingo_funasp-6.0.0.post10/lib/python-api/stubs/control.pyi +454 -0
  463. clingo_funasp-6.0.0.post10/lib/python-api/stubs/core.pyi +221 -0
  464. clingo_funasp-6.0.0.post10/lib/python-api/stubs/ground.pyi +137 -0
  465. clingo_funasp-6.0.0.post10/lib/python-api/stubs/propagate.pyi +763 -0
  466. clingo_funasp-6.0.0.post10/lib/python-api/stubs/script.pyi +164 -0
  467. clingo_funasp-6.0.0.post10/lib/python-api/stubs/solve.pyi +398 -0
  468. clingo_funasp-6.0.0.post10/lib/python-api/stubs/stats.pyi +329 -0
  469. clingo_funasp-6.0.0.post10/lib/python-api/stubs/symbol.pyi +237 -0
  470. clingo_funasp-6.0.0.post10/lib/python-api/stubs/theory.pyi +263 -0
  471. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-01.lp +8 -0
  472. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-02.lp +9 -0
  473. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-03.lp +7 -0
  474. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-04.lp +3 -0
  475. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-05.lp +3 -0
  476. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-06.lp +3 -0
  477. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-07.lp +3 -0
  478. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-08.lp +5 -0
  479. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-09.lp +6 -0
  480. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-10.lp +13 -0
  481. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-11.lp +11 -0
  482. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-12.lp +16 -0
  483. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-13.lp +10 -0
  484. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-14.lp +27 -0
  485. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/bug-01.lp +10 -0
  486. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-01.lp +7 -0
  487. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-02.lp +11 -0
  488. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-03.lp +65 -0
  489. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-04.lp +13 -0
  490. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-05.lp +13 -0
  491. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-06.lp +13 -0
  492. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-07.lp +5 -0
  493. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-08.lp +6 -0
  494. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-09.lp +8 -0
  495. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-01.lp +7 -0
  496. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-02.lp +6 -0
  497. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-03.lp +8 -0
  498. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-04.lp +10 -0
  499. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-05.lp +4 -0
  500. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-06.lp +7 -0
  501. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-07.lp +30 -0
  502. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-08.lp +6 -0
  503. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-09.lp +5 -0
  504. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/edge-01.lp +8 -0
  505. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/neg-01.lp +4 -0
  506. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/neg-02.lp +3 -0
  507. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-01.lp +115 -0
  508. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-02.lp +7 -0
  509. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-03.lp +5 -0
  510. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-04.lp +65 -0
  511. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-05.lp +7 -0
  512. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-06.lp +19 -0
  513. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-07.lp +23 -0
  514. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-08.lp +7 -0
  515. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-09.lp +10 -0
  516. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-10.lp +34 -0
  517. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-11.lp +21 -0
  518. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-12.lp +9 -0
  519. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-13.lp +12 -0
  520. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-14.lp +12 -0
  521. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-15.lp +12 -0
  522. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/project-01.lp +16 -0
  523. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/project-02.lp +9 -0
  524. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/project-03.lp +4 -0
  525. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/project-04.lp +7 -0
  526. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/rewrite-01.lp +4 -0
  527. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/show-01.lp +17 -0
  528. clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/show-02.lp +5 -0
  529. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_app.py +163 -0
  530. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_asp.py +48 -0
  531. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_aspif.py +542 -0
  532. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_ast.py +1080 -0
  533. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_backend.py +206 -0
  534. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_base.py +198 -0
  535. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_config.py +195 -0
  536. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_control.py +198 -0
  537. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_core.py +24 -0
  538. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_error.py +329 -0
  539. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_incremental.py +97 -0
  540. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_observe.py +254 -0
  541. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_parse_assignments.py +39 -0
  542. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_profile.py +85 -0
  543. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_propagate.py +549 -0
  544. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_script.py +156 -0
  545. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_solve.py +272 -0
  546. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_stats.py +193 -0
  547. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_symbol.py +129 -0
  548. clingo_funasp-6.0.0.post10/lib/python-api/tests/test_write_aspif.py +215 -0
  549. clingo_funasp-6.0.0.post10/lib/python-api/tests/util.py +31 -0
  550. clingo_funasp-6.0.0.post10/lib/util/CMakeLists.txt +55 -0
  551. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/algorithm.hh +107 -0
  552. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/checked_math.hh +216 -0
  553. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/debug.hh +51 -0
  554. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/enum.hh +58 -0
  555. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/enumerate.hh +159 -0
  556. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/graph.hh +134 -0
  557. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/hash.hh +373 -0
  558. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/immutable_array.hh +171 -0
  559. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/immutable_value.hh +163 -0
  560. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/index_sequence.hh +130 -0
  561. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/interval_set.hh +319 -0
  562. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/macro.hh +42 -0
  563. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/optional.hh +278 -0
  564. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/ordered_map.hh +20 -0
  565. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/ordered_set.hh +19 -0
  566. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/print.hh +341 -0
  567. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/record.hh +222 -0
  568. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/small_vector.hh +366 -0
  569. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/string.hh +80 -0
  570. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/sync.hh +33 -0
  571. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/type_traits.hh +18 -0
  572. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/unordered_map.hh +21 -0
  573. clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/unordered_set.hh +20 -0
  574. clingo_funasp-6.0.0.post10/lib/util/tests/interval_set.cc +259 -0
  575. clingo_funasp-6.0.0.post10/lib/util/tests/record.cc +41 -0
  576. clingo_funasp-6.0.0.post10/pyproject.toml +61 -0
  577. clingo_funasp-6.0.0.post10/pyrightconfig.json +4 -0
  578. clingo_funasp-6.0.0.post10/rebase.sh +9 -0
  579. clingo_funasp-6.0.0.post10/scripts/_record_declare_cpp.j2 +41 -0
  580. clingo_funasp-6.0.0.post10/scripts/_record_define_cpp.j2 +148 -0
  581. clingo_funasp-6.0.0.post10/scripts/ast_module.j2 +819 -0
  582. clingo_funasp-6.0.0.post10/scripts/compdb-cpp-headers.py +15 -0
  583. clingo_funasp-6.0.0.post10/scripts/cpp_yaml.py +79 -0
  584. clingo_funasp-6.0.0.post10/scripts/format_yaml.py +12 -0
  585. clingo_funasp-6.0.0.post10/scripts/generate.py +238 -0
  586. clingo_funasp-6.0.0.post10/scripts/pgo.py +282 -0
  587. clingo_funasp-6.0.0.post10/scripts/reduce.py +105 -0
  588. clingo_funasp-6.0.0.post10/scripts/stubs.py +356 -0
  589. clingo_funasp-6.0.0.post10/scripts/watch.sh +45 -0
  590. clingo_funasp-6.0.0.post10/third_party/.clang-tidy +6 -0
  591. clingo_funasp-6.0.0.post10/third_party/CMakeLists.txt +41 -0
  592. clingo_funasp-6.0.0.post10/third_party/clasp/.clang-format +36 -0
  593. clingo_funasp-6.0.0.post10/third_party/clasp/.git +1 -0
  594. clingo_funasp-6.0.0.post10/third_party/clasp/.github/workflows/test.yml +108 -0
  595. clingo_funasp-6.0.0.post10/third_party/clasp/.github/workflows/vcpkg_deps.txt +1 -0
  596. clingo_funasp-6.0.0.post10/third_party/clasp/.gitignore +5 -0
  597. clingo_funasp-6.0.0.post10/third_party/clasp/.gitmodules +3 -0
  598. clingo_funasp-6.0.0.post10/third_party/clasp/.pre-commit-config.yaml +25 -0
  599. clingo_funasp-6.0.0.post10/third_party/clasp/CHANGES +799 -0
  600. clingo_funasp-6.0.0.post10/third_party/clasp/CMakeLists.txt +186 -0
  601. clingo_funasp-6.0.0.post10/third_party/clasp/LICENSE +21 -0
  602. clingo_funasp-6.0.0.post10/third_party/clasp/README.md +127 -0
  603. clingo_funasp-6.0.0.post10/third_party/clasp/app/CMakeLists.txt +20 -0
  604. clingo_funasp-6.0.0.post10/third_party/clasp/app/main.cpp +46 -0
  605. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/asp_preprocessor.h +118 -0
  606. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cb_enumerator.h +66 -0
  607. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/clasp_facade.h +520 -0
  608. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/claspfwd.h +60 -0
  609. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/clause.h +558 -0
  610. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cli/clasp_app.h +253 -0
  611. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cli/clasp_cli_configs.inl +94 -0
  612. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cli/clasp_cli_options.inl +629 -0
  613. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cli/clasp_options.h +270 -0
  614. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cli/clasp_output.h +553 -0
  615. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/clingo.h +244 -0
  616. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/config.h.in +118 -0
  617. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/constraint.h +653 -0
  618. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/dependency_graph.h +531 -0
  619. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/enumerator.h +424 -0
  620. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/heuristics.h +401 -0
  621. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/literal.h +270 -0
  622. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/logic_program.h +851 -0
  623. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/logic_program_types.h +774 -0
  624. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/lookahead.h +267 -0
  625. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/minimize_constraint.h +623 -0
  626. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/model_enumerators.h +123 -0
  627. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/mt/parallel_solve.h +341 -0
  628. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/mt/thread.h +46 -0
  629. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/parser.h +201 -0
  630. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/pod_vector.h +136 -0
  631. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/program_builder.h +259 -0
  632. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/satelite.h +168 -0
  633. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/shared_context.h +1079 -0
  634. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/solve_algorithms.h +309 -0
  635. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/solver.h +1207 -0
  636. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/solver_strategies.h +768 -0
  637. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/solver_types.h +846 -0
  638. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/statistics.h +326 -0
  639. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/unfounded_check.h +251 -0
  640. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/indexed_priority_queue.h +350 -0
  641. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/left_right_sequence.h +352 -0
  642. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/misc_types.h +486 -0
  643. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/multi_queue.h +254 -0
  644. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/pod_vector.h +626 -0
  645. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/timer.h +88 -0
  646. clingo_funasp-6.0.0.post10/third_party/clasp/clasp/weight_constraint.h +230 -0
  647. clingo_funasp-6.0.0.post10/third_party/clasp/cmake/ClaspConfig.cmake.in +11 -0
  648. clingo_funasp-6.0.0.post10/third_party/clasp/create-archive.sh +13 -0
  649. clingo_funasp-6.0.0.post10/third_party/clasp/doc/api/clasp.doxy +2363 -0
  650. clingo_funasp-6.0.0.post10/third_party/clasp/doc/api/clasp.txt +33 -0
  651. clingo_funasp-6.0.0.post10/third_party/clasp/doc/api/layout.css +74 -0
  652. clingo_funasp-6.0.0.post10/third_party/clasp/doc/api/layout.xml +194 -0
  653. clingo_funasp-6.0.0.post10/third_party/clasp/doc/api/potassco-logo.png +0 -0
  654. clingo_funasp-6.0.0.post10/third_party/clasp/doc/output.md +277 -0
  655. clingo_funasp-6.0.0.post10/third_party/clasp/examples/CMakeLists.txt +10 -0
  656. clingo_funasp-6.0.0.post10/third_party/clasp/examples/example.h +40 -0
  657. clingo_funasp-6.0.0.post10/third_party/clasp/examples/example1.cpp +122 -0
  658. clingo_funasp-6.0.0.post10/third_party/clasp/examples/example2.cpp +87 -0
  659. clingo_funasp-6.0.0.post10/third_party/clasp/examples/example3.cpp +67 -0
  660. clingo_funasp-6.0.0.post10/third_party/clasp/examples/example4.cpp +60 -0
  661. clingo_funasp-6.0.0.post10/third_party/clasp/examples/main.cpp +56 -0
  662. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.clang-format +36 -0
  663. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.git +1 -0
  664. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.github/workflows/test.yml +62 -0
  665. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.gitignore +5 -0
  666. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.gitmodules +6 -0
  667. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.pre-commit-config.yaml +25 -0
  668. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/CMakeLists.txt +135 -0
  669. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/LICENSE +21 -0
  670. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/README.md +66 -0
  671. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/app/CMakeLists.txt +14 -0
  672. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/app/lpconvert.cpp +186 -0
  673. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/cmake/PotasscoConfig.cmake.in +5 -0
  674. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/doc/Doxyfile +2406 -0
  675. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/doc/layout.css +74 -0
  676. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/doc/layout.xml +194 -0
  677. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/doc/potassco-logo.png +0 -0
  678. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/application.h +232 -0
  679. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/aspif.h +198 -0
  680. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/aspif_text.h +118 -0
  681. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/basic_types.h +264 -0
  682. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/bits.h +235 -0
  683. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/clingo.h +403 -0
  684. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/convert.h +101 -0
  685. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/enum.h +407 -0
  686. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/error.h +207 -0
  687. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/format.h +532 -0
  688. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/graph.h +137 -0
  689. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/match_basic_types.h +224 -0
  690. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/platform.h +200 -0
  691. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/errors.h +97 -0
  692. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/intrusive_ptr.h +73 -0
  693. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/program_options.h +578 -0
  694. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/string_convert.h +210 -0
  695. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/typed_value.h +235 -0
  696. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/value.h +240 -0
  697. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/reify.h +132 -0
  698. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/rule_utils.h +169 -0
  699. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/smodels.h +198 -0
  700. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/theory_data.h +324 -0
  701. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/utils.h +340 -0
  702. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/CMakeLists.txt +73 -0
  703. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/application.cpp +495 -0
  704. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/aspif.cpp +503 -0
  705. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/aspif_text.cpp +835 -0
  706. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/clingo.cpp +67 -0
  707. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/convert.cpp +399 -0
  708. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/error.cpp +117 -0
  709. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/match_basic_types.cpp +357 -0
  710. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/platform.cpp +312 -0
  711. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/program_options.cpp +904 -0
  712. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/reify.cpp +323 -0
  713. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/rule_utils.cpp +259 -0
  714. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/smodels.cpp +474 -0
  715. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/string_convert.cpp +336 -0
  716. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/theory_data.cpp +297 -0
  717. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/utils.cpp +210 -0
  718. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/CMakeLists.txt +23 -0
  719. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_application.cpp +426 -0
  720. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_aspif.cpp +1787 -0
  721. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_common.h +98 -0
  722. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_error.cpp +353 -0
  723. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_graph.cpp +151 -0
  724. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_options.cpp +1010 -0
  725. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_reify.cpp +236 -0
  726. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_smodels.cpp +745 -0
  727. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_string_convert.cpp +544 -0
  728. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_text.cpp +846 -0
  729. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/.clang-format +5 -0
  730. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.bazelrc +12 -0
  731. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.clang-format +45 -0
  732. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.clang-tidy +82 -0
  733. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.conan/build.py +94 -0
  734. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.conan/test_package/CMakeLists.txt +7 -0
  735. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.conan/test_package/conanfile.py +40 -0
  736. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.conan/test_package/test_package.cpp +13 -0
  737. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.git +1 -0
  738. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.gitattributes +22 -0
  739. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/FUNDING.yml +2 -0
  740. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/ISSUE_TEMPLATE/bug_report.md +29 -0
  741. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/ISSUE_TEMPLATE/feature_request.md +14 -0
  742. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/pull_request_template.md +28 -0
  743. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/linux-bazel-builds.yml +24 -0
  744. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/linux-meson-builds.yml +44 -0
  745. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/linux-other-builds.yml +125 -0
  746. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/linux-simple-builds.yml +105 -0
  747. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/mac-builds.yml +30 -0
  748. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/package-manager-builds.yaml +31 -0
  749. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/validate-header-guards.yml +36 -0
  750. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/windows-simple-builds.yml +31 -0
  751. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.gitignore +40 -0
  752. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/BUILD.bazel +117 -0
  753. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/Catch2Config.cmake.in +9 -0
  754. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/CatchConfigOptions.cmake +91 -0
  755. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/CatchMiscFunctions.cmake +121 -0
  756. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/FindGcov.cmake +157 -0
  757. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/FindLcov.cmake +354 -0
  758. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/Findcodecov.cmake +258 -0
  759. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/catch2-with-main.pc.in +10 -0
  760. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/catch2.pc.in +11 -0
  761. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/llvm-cov-wrapper +56 -0
  762. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMakeLists.txt +230 -0
  763. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMakePresets.json +40 -0
  764. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CODE_OF_CONDUCT.md +46 -0
  765. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/Doxyfile +2650 -0
  766. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/LICENSE.txt +23 -0
  767. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/MAINTAINERS.md +11 -0
  768. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/MODULE.bazel +5 -0
  769. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/README.md +114 -0
  770. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/SECURITY.md +19 -0
  771. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/appveyor.yml +83 -0
  772. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/benchmarks/CMakeLists.txt +16 -0
  773. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/benchmarks/assertion_listener.cpp +28 -0
  774. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/benchmarks/runtime_assertion_benches.cpp +27 -0
  775. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/codecov.yml +22 -0
  776. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/conanfile.py +129 -0
  777. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/data/artwork/catch2-c-logo.svg +105 -0
  778. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/data/artwork/catch2-hand-logo.svg +83 -0
  779. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/data/artwork/catch2-logo-full-with-background.svg +104 -0
  780. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/data/artwork/catch2-logo-full.svg +88 -0
  781. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/data/sponsors/github_repo_sponsorship.png +0 -0
  782. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/Readme.md +44 -0
  783. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/assertions.md +182 -0
  784. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/benchmarks.md +251 -0
  785. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/ci-and-misc.md +117 -0
  786. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/cmake-integration.md +442 -0
  787. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/command-line.md +670 -0
  788. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/commercial-users.md +23 -0
  789. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/comparing-floating-point-numbers.md +192 -0
  790. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/configuration.md +341 -0
  791. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/contributing.md +342 -0
  792. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/deprecations.md +53 -0
  793. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/event-listeners.md +44 -0
  794. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/faq.md +113 -0
  795. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/generators.md +284 -0
  796. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/limitations.md +157 -0
  797. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/list-of-examples.md +47 -0
  798. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/logging.md +161 -0
  799. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/matchers.md +476 -0
  800. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/migrate-v2-to-v3.md +98 -0
  801. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/opensource-users.md +159 -0
  802. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/other-macros.md +131 -0
  803. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/own-main.md +133 -0
  804. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/release-notes.md +2018 -0
  805. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/release-process.md +66 -0
  806. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/reporter-events.md +175 -0
  807. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/reporters.md +218 -0
  808. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/skipping-passing-failing.md +149 -0
  809. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/test-cases-and-sections.md +346 -0
  810. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/test-fixtures.md +291 -0
  811. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/thread-safety.md +229 -0
  812. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/tostring.md +132 -0
  813. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/tutorial.md +228 -0
  814. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/usage-tips.md +100 -0
  815. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/why-catch.md +59 -0
  816. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/010-TestCase.cpp +41 -0
  817. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/020-TestCase-1.cpp +37 -0
  818. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/020-TestCase-2.cpp +41 -0
  819. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/030-Asn-Require-Check.cpp +82 -0
  820. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/100-Fix-Section.cpp +78 -0
  821. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/110-Fix-ClassFixture.cpp +74 -0
  822. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/111-Fix-PersistentFixture.cpp +74 -0
  823. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/120-Bdd-ScenarioGivenWhenThen.cpp +81 -0
  824. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/210-Evt-EventListeners.cpp +436 -0
  825. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/231-Cfg-OutputStreams.cpp +63 -0
  826. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/232-Cfg-CustomMain.cpp +41 -0
  827. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/300-Gen-OwnGenerator.cpp +77 -0
  828. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/301-Gen-MapTypeConversion.cpp +69 -0
  829. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/302-Gen-Table.cpp +63 -0
  830. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/310-Gen-VariablesInGenerators.cpp +43 -0
  831. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/311-Gen-CustomCapture.cpp +51 -0
  832. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/CMakeLists.txt +58 -0
  833. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/Catch.cmake +318 -0
  834. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/CatchAddTests.cmake +253 -0
  835. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/CatchShardTests.cmake +72 -0
  836. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/CatchShardTestsImpl.cmake +52 -0
  837. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/ParseAndAddCatchTests.cmake +250 -0
  838. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/catch_amalgamated.cpp +12180 -0
  839. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/catch_amalgamated.hpp +14341 -0
  840. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/gdbinit +16 -0
  841. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/lldbinit +16 -0
  842. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/CMakeLists.txt +20 -0
  843. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/NullOStream.cpp +18 -0
  844. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/NullOStream.h +28 -0
  845. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/build_fuzzers.sh +33 -0
  846. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/fuzz_TestSpecParser.cpp +22 -0
  847. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/fuzz_XmlWriter.cpp +22 -0
  848. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/fuzz_textflow.cpp +53 -0
  849. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/mdsnippets.json +9 -0
  850. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/meson.build +19 -0
  851. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/meson_options.txt +2 -0
  852. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/CMakeLists.txt +480 -0
  853. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_benchmark.hpp +146 -0
  854. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_benchmark_all.hpp +46 -0
  855. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_chronometer.cpp +17 -0
  856. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_chronometer.hpp +77 -0
  857. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_clock.hpp +27 -0
  858. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_constructor.hpp +82 -0
  859. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_environment.hpp +29 -0
  860. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_estimate.hpp +25 -0
  861. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_execution_plan.hpp +58 -0
  862. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_optimizer.hpp +78 -0
  863. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_outlier_classification.hpp +29 -0
  864. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_sample_analysis.hpp +31 -0
  865. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_analyse.cpp +85 -0
  866. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_analyse.hpp +27 -0
  867. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_benchmark_function.cpp +23 -0
  868. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_benchmark_function.hpp +87 -0
  869. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_benchmark_stats.hpp +48 -0
  870. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_benchmark_stats_fwd.hpp +23 -0
  871. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_complete_invoke.hpp +58 -0
  872. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_estimate_clock.hpp +126 -0
  873. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_measure.hpp +32 -0
  874. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_repeat.hpp +36 -0
  875. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_run_for_at_least.cpp +31 -0
  876. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_run_for_at_least.hpp +65 -0
  877. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_stats.cpp +393 -0
  878. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_stats.hpp +60 -0
  879. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_timing.hpp +29 -0
  880. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_all.hpp +140 -0
  881. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_approx.cpp +85 -0
  882. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_approx.hpp +128 -0
  883. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_assertion_info.hpp +28 -0
  884. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_assertion_result.cpp +105 -0
  885. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_assertion_result.hpp +60 -0
  886. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_case_sensitive.hpp +17 -0
  887. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_config.cpp +273 -0
  888. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_config.hpp +157 -0
  889. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_get_random_seed.cpp +18 -0
  890. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_get_random_seed.hpp +18 -0
  891. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_message.cpp +114 -0
  892. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_message.hpp +149 -0
  893. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_registry_hub.cpp +105 -0
  894. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_section_info.hpp +42 -0
  895. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_session.cpp +413 -0
  896. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_session.hpp +70 -0
  897. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_tag_alias.hpp +29 -0
  898. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_tag_alias_autoregistrar.cpp +24 -0
  899. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_tag_alias_autoregistrar.hpp +29 -0
  900. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_template_test_macros.hpp +124 -0
  901. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_case_info.cpp +262 -0
  902. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_case_info.hpp +142 -0
  903. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_macros.hpp +243 -0
  904. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_run_info.hpp +22 -0
  905. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_spec.cpp +141 -0
  906. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_spec.hpp +119 -0
  907. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_timer.cpp +37 -0
  908. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_timer.hpp +27 -0
  909. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_tostring.cpp +294 -0
  910. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_tostring.hpp +651 -0
  911. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_totals.cpp +65 -0
  912. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_totals.hpp +41 -0
  913. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_translate_exception.cpp +20 -0
  914. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_translate_exception.hpp +88 -0
  915. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_user_config.hpp.in +247 -0
  916. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_version.cpp +43 -0
  917. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_version.hpp +39 -0
  918. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_version_macros.hpp +15 -0
  919. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generator_exception.cpp +17 -0
  920. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generator_exception.hpp +31 -0
  921. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators.cpp +42 -0
  922. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators.hpp +244 -0
  923. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators_adapters.hpp +242 -0
  924. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators_all.hpp +30 -0
  925. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators_random.cpp +41 -0
  926. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators_random.hpp +107 -0
  927. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators_range.hpp +111 -0
  928. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_all.hpp +37 -0
  929. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_capture.cpp +20 -0
  930. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_capture.hpp +118 -0
  931. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_config.cpp +13 -0
  932. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_config.hpp +99 -0
  933. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_enum_values_registry.hpp +47 -0
  934. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_exception.cpp +14 -0
  935. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_exception.hpp +36 -0
  936. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_generatortracker.cpp +32 -0
  937. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_generatortracker.hpp +90 -0
  938. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_registry_hub.cpp +14 -0
  939. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_registry_hub.hpp +66 -0
  940. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_reporter.cpp +93 -0
  941. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_reporter.hpp +227 -0
  942. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.cpp +14 -0
  943. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.hpp +45 -0
  944. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_tag_alias_registry.hpp +29 -0
  945. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_test_invoker.hpp +23 -0
  946. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_testcase.cpp +13 -0
  947. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_testcase.hpp +30 -0
  948. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_assertion_handler.cpp +82 -0
  949. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_assertion_handler.hpp +68 -0
  950. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_case_insensitive_comparisons.cpp +35 -0
  951. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_case_insensitive_comparisons.hpp +30 -0
  952. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_clara.cpp +464 -0
  953. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_clara.hpp +748 -0
  954. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_commandline.cpp +317 -0
  955. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_commandline.hpp +21 -0
  956. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_compare_traits.hpp +75 -0
  957. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_compiler_capabilities.hpp +467 -0
  958. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_android_logwrite.hpp +33 -0
  959. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_counter.hpp +34 -0
  960. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_prefix_messages.hpp +29 -0
  961. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_static_analysis_support.hpp +34 -0
  962. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_uncaught_exceptions.hpp +46 -0
  963. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_wchar.hpp +35 -0
  964. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_console_colour.cpp +288 -0
  965. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_console_colour.hpp +141 -0
  966. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_console_width.hpp +19 -0
  967. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_container_nonmembers.hpp +73 -0
  968. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_context.cpp +24 -0
  969. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_context.hpp +47 -0
  970. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_debug_console.cpp +45 -0
  971. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_debug_console.hpp +17 -0
  972. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_debugger.cpp +120 -0
  973. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_debugger.hpp +78 -0
  974. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_decomposer.cpp +28 -0
  975. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_decomposer.hpp +467 -0
  976. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_deprecation_macro.hpp +19 -0
  977. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_enforce.cpp +41 -0
  978. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_enforce.hpp +54 -0
  979. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_enum_values_registry.cpp +73 -0
  980. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_enum_values_registry.hpp +36 -0
  981. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_errno_guard.cpp +16 -0
  982. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_errno_guard.hpp +27 -0
  983. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_exception_translator_registry.cpp +87 -0
  984. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_exception_translator_registry.hpp +29 -0
  985. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_fatal_condition_handler.cpp +248 -0
  986. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_fatal_condition_handler.hpp +66 -0
  987. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_floating_point_helpers.cpp +43 -0
  988. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_floating_point_helpers.hpp +108 -0
  989. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_getenv.cpp +37 -0
  990. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_getenv.hpp +20 -0
  991. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_is_permutation.hpp +141 -0
  992. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_istream.cpp +152 -0
  993. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_istream.hpp +52 -0
  994. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_jsonwriter.cpp +165 -0
  995. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_jsonwriter.hpp +121 -0
  996. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_lazy_expr.cpp +29 -0
  997. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_lazy_expr.hpp +40 -0
  998. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_leak_detector.cpp +38 -0
  999. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_leak_detector.hpp +19 -0
  1000. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_lifetimebound.hpp +24 -0
  1001. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_list.cpp +120 -0
  1002. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_list.hpp +43 -0
  1003. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_logical_traits.hpp +44 -0
  1004. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_main.cpp +39 -0
  1005. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_message_info.cpp +30 -0
  1006. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_message_info.hpp +44 -0
  1007. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_meta.hpp +47 -0
  1008. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_move_and_forward.hpp +19 -0
  1009. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_noncopyable.hpp +29 -0
  1010. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_optional.hpp +117 -0
  1011. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_output_redirect.cpp +339 -0
  1012. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_output_redirect.hpp +77 -0
  1013. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_parse_numbers.cpp +52 -0
  1014. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_parse_numbers.hpp +26 -0
  1015. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_platform.hpp +43 -0
  1016. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_polyfills.cpp +42 -0
  1017. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_polyfills.hpp +21 -0
  1018. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_preprocessor.hpp +247 -0
  1019. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_preprocessor_internal_stringify.hpp +19 -0
  1020. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_preprocessor_remove_parens.hpp +19 -0
  1021. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_floating_point_helpers.hpp +94 -0
  1022. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_integer_helpers.hpp +224 -0
  1023. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_number_generator.cpp +78 -0
  1024. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_number_generator.hpp +59 -0
  1025. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_seed_generation.cpp +35 -0
  1026. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_seed_generation.hpp +26 -0
  1027. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reporter_registry.cpp +91 -0
  1028. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reporter_registry.hpp +55 -0
  1029. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reporter_spec_parser.cpp +173 -0
  1030. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reporter_spec_parser.hpp +85 -0
  1031. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_result_type.hpp +66 -0
  1032. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reusable_string_stream.cpp +70 -0
  1033. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reusable_string_stream.hpp +57 -0
  1034. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_run_context.cpp +905 -0
  1035. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_run_context.hpp +167 -0
  1036. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_section.cpp +60 -0
  1037. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_section.hpp +104 -0
  1038. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_sharding.hpp +40 -0
  1039. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_singletons.cpp +36 -0
  1040. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_singletons.hpp +45 -0
  1041. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_source_line_info.cpp +33 -0
  1042. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_source_line_info.hpp +37 -0
  1043. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_startup_exception_registry.cpp +29 -0
  1044. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_startup_exception_registry.hpp +29 -0
  1045. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_stdstreams.cpp +24 -0
  1046. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_stdstreams.hpp +22 -0
  1047. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_stream_end_stop.hpp +30 -0
  1048. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_string_manip.cpp +116 -0
  1049. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_string_manip.hpp +62 -0
  1050. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_stringref.cpp +65 -0
  1051. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_stringref.hpp +126 -0
  1052. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_tag_alias_registry.cpp +54 -0
  1053. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_tag_alias_registry.hpp +33 -0
  1054. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_template_test_registry.hpp +337 -0
  1055. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_info_hasher.cpp +39 -0
  1056. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_info_hasher.hpp +29 -0
  1057. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_registry_impl.cpp +153 -0
  1058. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_registry_impl.hpp +59 -0
  1059. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_tracker.cpp +239 -0
  1060. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_tracker.hpp +245 -0
  1061. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_failure_exception.cpp +31 -0
  1062. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_failure_exception.hpp +34 -0
  1063. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_macro_impl.hpp +155 -0
  1064. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_registry.cpp +84 -0
  1065. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_registry.hpp +222 -0
  1066. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_spec_parser.cpp +239 -0
  1067. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_spec_parser.hpp +81 -0
  1068. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_textflow.cpp +379 -0
  1069. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_textflow.hpp +298 -0
  1070. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_thread_local.hpp +19 -0
  1071. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_thread_support.hpp +49 -0
  1072. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_to_string.hpp +29 -0
  1073. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_uncaught_exceptions.cpp +25 -0
  1074. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_uncaught_exceptions.hpp +15 -0
  1075. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_uniform_floating_point_distribution.hpp +131 -0
  1076. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_uniform_integer_distribution.hpp +108 -0
  1077. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_unique_name.hpp +20 -0
  1078. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_unique_ptr.hpp +118 -0
  1079. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_unreachable.hpp +56 -0
  1080. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_void_type.hpp +25 -0
  1081. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_wildcard_pattern.cpp +47 -0
  1082. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_wildcard_pattern.hpp +38 -0
  1083. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_windows_h_proxy.hpp +28 -0
  1084. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_xmlwriter.cpp +344 -0
  1085. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_xmlwriter.hpp +164 -0
  1086. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers.cpp +25 -0
  1087. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers.hpp +253 -0
  1088. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_all.hpp +36 -0
  1089. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_container_properties.cpp +34 -0
  1090. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_container_properties.hpp +90 -0
  1091. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_contains.hpp +102 -0
  1092. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_exception.cpp +26 -0
  1093. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_exception.hpp +61 -0
  1094. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_floating_point.cpp +226 -0
  1095. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_floating_point.hpp +94 -0
  1096. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_predicate.cpp +17 -0
  1097. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_predicate.hpp +59 -0
  1098. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_quantifiers.cpp +24 -0
  1099. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_quantifiers.hpp +165 -0
  1100. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_range_equals.hpp +160 -0
  1101. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_string.cpp +114 -0
  1102. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_string.hpp +85 -0
  1103. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_templated.cpp +41 -0
  1104. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_templated.hpp +308 -0
  1105. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_vector.hpp +194 -0
  1106. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/internal/catch_matchers_impl.cpp +25 -0
  1107. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/internal/catch_matchers_impl.hpp +109 -0
  1108. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/meson.build +404 -0
  1109. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_automake.cpp +37 -0
  1110. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_automake.hpp +40 -0
  1111. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_common_base.cpp +49 -0
  1112. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_common_base.hpp +79 -0
  1113. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_compact.cpp +255 -0
  1114. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_compact.hpp +42 -0
  1115. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_console.cpp +670 -0
  1116. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_console.hpp +65 -0
  1117. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_cumulative_base.cpp +158 -0
  1118. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_cumulative_base.hpp +151 -0
  1119. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_event_listener.cpp +40 -0
  1120. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_event_listener.hpp +60 -0
  1121. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_helpers.cpp +364 -0
  1122. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_helpers.hpp +95 -0
  1123. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_json.cpp +373 -0
  1124. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_json.hpp +94 -0
  1125. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_junit.cpp +310 -0
  1126. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_junit.hpp +56 -0
  1127. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_multi.cpp +199 -0
  1128. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_multi.hpp +77 -0
  1129. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_registrars.cpp +36 -0
  1130. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_registrars.hpp +133 -0
  1131. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_sonarqube.cpp +162 -0
  1132. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_sonarqube.hpp +60 -0
  1133. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_streaming_base.cpp +23 -0
  1134. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_streaming_base.hpp +73 -0
  1135. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_tap.cpp +229 -0
  1136. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_tap.hpp +43 -0
  1137. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_teamcity.cpp +177 -0
  1138. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_teamcity.hpp +67 -0
  1139. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_xml.cpp +332 -0
  1140. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_xml.hpp +64 -0
  1141. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporters_all.hpp +41 -0
  1142. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/BUILD.bazel +86 -0
  1143. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/CMakeLists.txt +692 -0
  1144. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/CMakeLists.txt +591 -0
  1145. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/ToDo.txt +10 -0
  1146. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X01-PrefixedMacros.cpp +97 -0
  1147. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X02-DisabledMacros.cpp +79 -0
  1148. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X03-DisabledExceptions-DefaultHandler.cpp +39 -0
  1149. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X04-DisabledExceptions-CustomHandler.cpp +40 -0
  1150. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X05-DeferredStaticChecks.cpp +21 -0
  1151. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X06-MixingClearedAndUnclearedMessages.cpp +27 -0
  1152. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X10-FallbackStringifier.cpp +35 -0
  1153. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X11-DisableStringification.cpp +27 -0
  1154. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X12-CustomDebugBreakMacro.cpp +26 -0
  1155. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X20-AssertionStartingEventGoesBeforeAssertionIsEvaluated.cpp +77 -0
  1156. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X21-PartialTestCaseEvents.cpp +74 -0
  1157. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X22-BenchmarksInCumulativeReporter.cpp +79 -0
  1158. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X23-CasingInReporterNames.cpp +41 -0
  1159. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X24-ListenerStdoutCaptureInMultireporter.cpp +40 -0
  1160. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X25-ListenerCanAskForCapturedStdout.cpp +47 -0
  1161. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X26-ReporterPreferencesForPassingAssertionsIsRespected.cpp +52 -0
  1162. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X27-CapturedStdoutInTestCaseEvents.cpp +82 -0
  1163. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X28-ListenersGetEventsBeforeReporters.cpp +99 -0
  1164. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X29-CustomArgumentsForReporters.cpp +60 -0
  1165. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X30-BazelReporter.cpp +17 -0
  1166. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X31-DuplicatedTestCases.cpp +16 -0
  1167. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X32-DuplicatedTestCasesDifferentTags.cpp +17 -0
  1168. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X33-DuplicatedTestCaseMethods.cpp +22 -0
  1169. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X34-DuplicatedTestCaseMethodsDifferentFixtures.cpp +27 -0
  1170. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X35-DuplicatedReporterNames.cpp +31 -0
  1171. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X36-ReportingCrashWithJunitReporter.cpp +32 -0
  1172. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X40-QuickExit.cpp +28 -0
  1173. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X90-WindowsHeaderInclusion.cpp +21 -0
  1174. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X91-AmalgamatedCatch.cpp +38 -0
  1175. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X92-NoTests.cpp +11 -0
  1176. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X93-AllSkipped.cpp +16 -0
  1177. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X94-ThreadSafetyTests.cpp +64 -0
  1178. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/automake.std.approved.txt +168 -0
  1179. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/automake.sw.approved.txt +447 -0
  1180. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/automake.sw.multi.approved.txt +436 -0
  1181. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/compact.sw.approved.txt +2896 -0
  1182. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/compact.sw.multi.approved.txt +2885 -0
  1183. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/console.std.approved.txt +1735 -0
  1184. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/console.sw.approved.txt +19316 -0
  1185. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/console.sw.multi.approved.txt +19305 -0
  1186. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/console.swa4.approved.txt +973 -0
  1187. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/default.sw.multi.approved.txt +11 -0
  1188. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/junit.sw.approved.txt +2419 -0
  1189. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/junit.sw.multi.approved.txt +2418 -0
  1190. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/sonarqube.sw.approved.txt +2427 -0
  1191. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt +2426 -0
  1192. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/tap.sw.approved.txt +4635 -0
  1193. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/tap.sw.multi.approved.txt +4624 -0
  1194. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/teamcity.sw.approved.txt +1071 -0
  1195. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt +1070 -0
  1196. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/xml.sw.approved.txt +22354 -0
  1197. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/xml.sw.multi.approved.txt +22353 -0
  1198. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Algorithms.tests.cpp +94 -0
  1199. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/AssertionHandler.tests.cpp +42 -0
  1200. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Clara.tests.cpp +88 -0
  1201. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/CmdLine.tests.cpp +467 -0
  1202. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/CmdLineHelpers.tests.cpp +111 -0
  1203. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/ColourImpl.tests.cpp +64 -0
  1204. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Details.tests.cpp +234 -0
  1205. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/FloatingPoint.tests.cpp +139 -0
  1206. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp +588 -0
  1207. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Integer.tests.cpp +224 -0
  1208. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/InternalBenchmark.tests.cpp +455 -0
  1209. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Json.tests.cpp +178 -0
  1210. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Parse.tests.cpp +38 -0
  1211. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/PartTracker.tests.cpp +254 -0
  1212. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/RandomNumberGeneration.tests.cpp +609 -0
  1213. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Reporters.tests.cpp +330 -0
  1214. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Sharding.tests.cpp +45 -0
  1215. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Stream.tests.cpp +32 -0
  1216. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/String.tests.cpp +212 -0
  1217. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/StringManip.tests.cpp +94 -0
  1218. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Tag.tests.cpp +117 -0
  1219. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/TestCaseInfoHasher.tests.cpp +72 -0
  1220. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/TestSpec.tests.cpp +365 -0
  1221. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/TestSpecParser.tests.cpp +55 -0
  1222. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/TextFlow.tests.cpp +400 -0
  1223. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/ToString.tests.cpp +166 -0
  1224. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Traits.tests.cpp +45 -0
  1225. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/UniquePtr.tests.cpp +141 -0
  1226. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Xml.tests.cpp +203 -0
  1227. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Misc/invalid-test-names.input +1 -0
  1228. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Misc/plain-old-tests.input +2 -0
  1229. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Misc/special-characters-in-file.input +1 -0
  1230. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/TestRegistrations.cpp +181 -0
  1231. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/TimingTests/Sleep.tests.cpp +24 -0
  1232. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Approx.tests.cpp +218 -0
  1233. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/BDD.tests.cpp +106 -0
  1234. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Benchmark.tests.cpp +173 -0
  1235. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Class.tests.cpp +159 -0
  1236. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Compilation.tests.cpp +542 -0
  1237. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Condition.tests.cpp +334 -0
  1238. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Decomposition.tests.cpp +41 -0
  1239. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/EnumToString.tests.cpp +108 -0
  1240. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Exception.tests.cpp +204 -0
  1241. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Generators.tests.cpp +323 -0
  1242. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Matchers.tests.cpp +1144 -0
  1243. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/MatchersRanges.tests.cpp +936 -0
  1244. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Message.tests.cpp +371 -0
  1245. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Misc.tests.cpp +576 -0
  1246. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Skip.tests.cpp +100 -0
  1247. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringByte.tests.cpp +23 -0
  1248. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringChrono.tests.cpp +57 -0
  1249. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringGeneral.tests.cpp +200 -0
  1250. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringOptional.tests.cpp +35 -0
  1251. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringPair.tests.cpp +38 -0
  1252. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringTuple.tests.cpp +54 -0
  1253. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringVariant.tests.cpp +99 -0
  1254. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringVector.tests.cpp +94 -0
  1255. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringWhich.tests.cpp +186 -0
  1256. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Tricky.tests.cpp +362 -0
  1257. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/VariadicMacros.tests.cpp +29 -0
  1258. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/helpers/parse_test_spec.cpp +22 -0
  1259. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/helpers/parse_test_spec.hpp +20 -0
  1260. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/helpers/range_test_helpers.hpp +210 -0
  1261. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/helpers/type_with_lit_0_comparisons.hpp +55 -0
  1262. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/ConfigureTestsCommon.py +75 -0
  1263. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/DiscoverTests/CMakeLists.txt +23 -0
  1264. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/DiscoverTests/VerifyRegistration.py +175 -0
  1265. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/DiscoverTests/register-tests.cpp +23 -0
  1266. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testBazelExitGuardFile.py +88 -0
  1267. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testBazelReporter.py +104 -0
  1268. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testBazelSharding.py +80 -0
  1269. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testConfigureDefaultReporter.py +50 -0
  1270. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testConfigureDisable.py +48 -0
  1271. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testConfigureDisableStringification.py +44 -0
  1272. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testConfigureExperimentalRedirect.py +49 -0
  1273. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testPartialTestCaseEvent.py +79 -0
  1274. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testRandomOrder.py +77 -0
  1275. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testSectionFiltering.py +128 -0
  1276. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testSharding.py +165 -0
  1277. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/meson.build +77 -0
  1278. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/third_party/clara.hpp +1267 -0
  1279. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/CMakeLists.txt +8 -0
  1280. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/SelfTest.vcxproj.user +23 -0
  1281. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/appveyorBuildConfigurationScript.bat +21 -0
  1282. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/appveyorMergeCoverageScript.py +9 -0
  1283. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/appveyorTestRunScript.bat +17 -0
  1284. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/coverage-helper.cpp +142 -0
  1285. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/installOpenCppCoverage.ps1 +19 -0
  1286. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/approvalTests.py +243 -0
  1287. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/approve.py +31 -0
  1288. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/buildAndTest.cmd +16 -0
  1289. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/buildAndTest.sh +18 -0
  1290. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/checkConvenienceHeaders.py +151 -0
  1291. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/checkDuplicateFilenames.py +14 -0
  1292. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/checkLicense.py +46 -0
  1293. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/developBuild.py +9 -0
  1294. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/extractFeaturesFromReleaseNotes.py +92 -0
  1295. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/fixWhitespace.py +51 -0
  1296. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/generateAmalgamatedFiles.py +139 -0
  1297. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/majorRelease.py +9 -0
  1298. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/minorRelease.py +9 -0
  1299. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/patchRelease.py +9 -0
  1300. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/releaseCommon.py +143 -0
  1301. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/scriptCommon.py +4 -0
  1302. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/updateDocumentSnippets.py +23 -0
  1303. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/updateDocumentToC.py +447 -0
  1304. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.clang-format +2 -0
  1305. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.git +1 -0
  1306. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  1307. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  1308. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/workflows/clang-format-check.yml +25 -0
  1309. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/workflows/codeql-analysis.yml +67 -0
  1310. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/workflows/macos.yml +23 -0
  1311. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/workflows/ubuntu.yml +114 -0
  1312. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/workflows/windows.yml +55 -0
  1313. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.gitignore +19 -0
  1314. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/CMakeLists.txt +113 -0
  1315. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/CODE_OF_CONDUCT.md +128 -0
  1316. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/LICENSE +21 -0
  1317. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/README.md +325 -0
  1318. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/benchmark/CMakeLists.txt +45 -0
  1319. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/benchmark/benchhelpers.hpp +27 -0
  1320. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/benchmark/sets_benchmark.cpp +158 -0
  1321. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/benchmark/vectors_benchmark.cpp +301 -0
  1322. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/cmake/amcConfig.cmake.in +4 -0
  1323. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/docs/set_bench_int.svg +66 -0
  1324. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/docs/set_bench_reloctype.svg +49 -0
  1325. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/docs/vector_bench_reloctype.svg +62 -0
  1326. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/algorithm.hpp +49 -0
  1327. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/allocator.hpp +173 -0
  1328. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/config.hpp +71 -0
  1329. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/fixedcapacityvector.hpp +93 -0
  1330. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/flatset.hpp +497 -0
  1331. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/hasreallocate.hpp +19 -0
  1332. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/isdetected.hpp +60 -0
  1333. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/istransparent.hpp +15 -0
  1334. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/memory.hpp +524 -0
  1335. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/smallset.hpp +670 -0
  1336. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/smallvector.hpp +143 -0
  1337. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/type_traits.hpp +111 -0
  1338. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/utility.hpp +18 -0
  1339. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/vector.hpp +37 -0
  1340. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/vectorcommon.hpp +1520 -0
  1341. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/CMakeLists.txt +57 -0
  1342. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/amc_isdetected_test.cpp +42 -0
  1343. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/sets_test.cpp +566 -0
  1344. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/testhelpers.hpp +17 -0
  1345. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/testtypes.hpp +384 -0
  1346. clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/vectors_test.cpp +685 -0
  1347. clingo_funasp-6.0.0.post10/third_party/clasp/src/CMakeLists.txt +155 -0
  1348. clingo_funasp-6.0.0.post10/third_party/clasp/src/asp_preprocessor.cpp +595 -0
  1349. clingo_funasp-6.0.0.post10/third_party/clasp/src/cb_enumerator.cpp +378 -0
  1350. clingo_funasp-6.0.0.post10/third_party/clasp/src/clasp_app.cpp +946 -0
  1351. clingo_funasp-6.0.0.post10/third_party/clasp/src/clasp_facade.cpp +1318 -0
  1352. clingo_funasp-6.0.0.post10/third_party/clasp/src/clasp_options.cpp +1412 -0
  1353. clingo_funasp-6.0.0.post10/third_party/clasp/src/clasp_output.cpp +1810 -0
  1354. clingo_funasp-6.0.0.post10/third_party/clasp/src/clause.cpp +1263 -0
  1355. clingo_funasp-6.0.0.post10/third_party/clasp/src/clingo.cpp +667 -0
  1356. clingo_funasp-6.0.0.post10/third_party/clasp/src/constraint.cpp +123 -0
  1357. clingo_funasp-6.0.0.post10/third_party/clasp/src/dependency_graph.cpp +1214 -0
  1358. clingo_funasp-6.0.0.post10/third_party/clasp/src/enumerator.cpp +435 -0
  1359. clingo_funasp-6.0.0.post10/third_party/clasp/src/heuristics.cpp +1070 -0
  1360. clingo_funasp-6.0.0.post10/third_party/clasp/src/logic_program.cpp +2686 -0
  1361. clingo_funasp-6.0.0.post10/third_party/clasp/src/logic_program_types.cpp +1556 -0
  1362. clingo_funasp-6.0.0.post10/third_party/clasp/src/lookahead.cpp +432 -0
  1363. clingo_funasp-6.0.0.post10/third_party/clasp/src/minimize_constraint.cpp +1798 -0
  1364. clingo_funasp-6.0.0.post10/third_party/clasp/src/model_enumerators.cpp +372 -0
  1365. clingo_funasp-6.0.0.post10/third_party/clasp/src/parallel_solve.cpp +1278 -0
  1366. clingo_funasp-6.0.0.post10/third_party/clasp/src/parser.cpp +502 -0
  1367. clingo_funasp-6.0.0.post10/third_party/clasp/src/program_builder.cpp +473 -0
  1368. clingo_funasp-6.0.0.post10/third_party/clasp/src/satelite.cpp +687 -0
  1369. clingo_funasp-6.0.0.post10/third_party/clasp/src/shared_context.cpp +1330 -0
  1370. clingo_funasp-6.0.0.post10/third_party/clasp/src/solve_algorithms.cpp +610 -0
  1371. clingo_funasp-6.0.0.post10/third_party/clasp/src/solver.cpp +2123 -0
  1372. clingo_funasp-6.0.0.post10/third_party/clasp/src/solver_strategies.cpp +456 -0
  1373. clingo_funasp-6.0.0.post10/third_party/clasp/src/solver_types.cpp +199 -0
  1374. clingo_funasp-6.0.0.post10/third_party/clasp/src/statistics.cpp +363 -0
  1375. clingo_funasp-6.0.0.post10/third_party/clasp/src/timer.cpp +54 -0
  1376. clingo_funasp-6.0.0.post10/third_party/clasp/src/unfounded_check.cpp +860 -0
  1377. clingo_funasp-6.0.0.post10/third_party/clasp/src/weight_constraint.cpp +749 -0
  1378. clingo_funasp-6.0.0.post10/third_party/clasp/tests/CMakeLists.txt +26 -0
  1379. clingo_funasp-6.0.0.post10/third_party/clasp/tests/clause_creator_test.cpp +587 -0
  1380. clingo_funasp-6.0.0.post10/third_party/clasp/tests/clause_test.cpp +1039 -0
  1381. clingo_funasp-6.0.0.post10/third_party/clasp/tests/cli_test.cpp +2186 -0
  1382. clingo_funasp-6.0.0.post10/third_party/clasp/tests/decision_heuristic_test.cpp +767 -0
  1383. clingo_funasp-6.0.0.post10/third_party/clasp/tests/dependency_graph_test.cpp +352 -0
  1384. clingo_funasp-6.0.0.post10/third_party/clasp/tests/dlp_builder_test.cpp +454 -0
  1385. clingo_funasp-6.0.0.post10/third_party/clasp/tests/enumerator_test.cpp +556 -0
  1386. clingo_funasp-6.0.0.post10/third_party/clasp/tests/facade_test.cpp +4314 -0
  1387. clingo_funasp-6.0.0.post10/third_party/clasp/tests/literal_test.cpp +211 -0
  1388. clingo_funasp-6.0.0.post10/third_party/clasp/tests/lpcompare.h +101 -0
  1389. clingo_funasp-6.0.0.post10/third_party/clasp/tests/minimize_test.cpp +1145 -0
  1390. clingo_funasp-6.0.0.post10/third_party/clasp/tests/parser_test.cpp +1182 -0
  1391. clingo_funasp-6.0.0.post10/third_party/clasp/tests/program_builder_test.cpp +3198 -0
  1392. clingo_funasp-6.0.0.post10/third_party/clasp/tests/rule_test.cpp +584 -0
  1393. clingo_funasp-6.0.0.post10/third_party/clasp/tests/satelite_test.cpp +271 -0
  1394. clingo_funasp-6.0.0.post10/third_party/clasp/tests/solver_test.cpp +2918 -0
  1395. clingo_funasp-6.0.0.post10/third_party/clasp/tests/unfounded_check_test.cpp +563 -0
  1396. clingo_funasp-6.0.0.post10/third_party/clasp/tests/weight_constraint_test.cpp +954 -0
  1397. clingo_funasp-6.0.0.post10/third_party/clasp/tools/clasp-option-template.inl +260 -0
  1398. clingo_funasp-6.0.0.post10/third_party/clasp/tools/generate-pcs.sh +67 -0
  1399. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/.clang-format +1 -0
  1400. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/.codecov.yml +5 -0
  1401. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/.git +1 -0
  1402. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/.github/workflows/ci.yml +120 -0
  1403. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/CMakeLists.txt +77 -0
  1404. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/LICENSE +21 -0
  1405. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/README.md +342 -0
  1406. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/cmake/tsl-hopscotch-mapConfig.cmake.in +9 -0
  1407. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/doxygen.conf +2486 -0
  1408. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/bhopscotch_map.h +814 -0
  1409. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/bhopscotch_set.h +626 -0
  1410. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/hopscotch_growth_policy.h +419 -0
  1411. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/hopscotch_hash.h +1938 -0
  1412. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/hopscotch_map.h +812 -0
  1413. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/hopscotch_set.h +629 -0
  1414. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/CMakeLists.txt +26 -0
  1415. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/custom_allocator_tests.cpp +137 -0
  1416. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/hopscotch_map_tests.cpp +1522 -0
  1417. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/hopscotch_set_tests.cpp +175 -0
  1418. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/main.cpp +26 -0
  1419. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/policy_tests.cpp +97 -0
  1420. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/utils.h +345 -0
  1421. clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tsl-hopscotch-map.natvis +87 -0
  1422. clingo_funasp-6.0.0.post10/third_party/imath/.dockerignore +13 -0
  1423. clingo_funasp-6.0.0.post10/third_party/imath/.git +1 -0
  1424. clingo_funasp-6.0.0.post10/third_party/imath/.gitattributes +1 -0
  1425. clingo_funasp-6.0.0.post10/third_party/imath/.github/workflows/unit-tests.yml +43 -0
  1426. clingo_funasp-6.0.0.post10/third_party/imath/ChangeLog +583 -0
  1427. clingo_funasp-6.0.0.post10/third_party/imath/LICENSE +20 -0
  1428. clingo_funasp-6.0.0.post10/third_party/imath/Makefile +140 -0
  1429. clingo_funasp-6.0.0.post10/third_party/imath/README.md +111 -0
  1430. clingo_funasp-6.0.0.post10/third_party/imath/contrib/Makefile.msvc +84 -0
  1431. clingo_funasp-6.0.0.post10/third_party/imath/contrib/README +3 -0
  1432. clingo_funasp-6.0.0.post10/third_party/imath/doc.md +1199 -0
  1433. clingo_funasp-6.0.0.post10/third_party/imath/doc.md.in +394 -0
  1434. clingo_funasp-6.0.0.post10/third_party/imath/examples/basecvt.c +117 -0
  1435. clingo_funasp-6.0.0.post10/third_party/imath/examples/findprime.c +67 -0
  1436. clingo_funasp-6.0.0.post10/third_party/imath/examples/imcalc.c +1133 -0
  1437. clingo_funasp-6.0.0.post10/third_party/imath/examples/input.c +116 -0
  1438. clingo_funasp-6.0.0.post10/third_party/imath/examples/pi.c +179 -0
  1439. clingo_funasp-6.0.0.post10/third_party/imath/examples/randprime.c +239 -0
  1440. clingo_funasp-6.0.0.post10/third_party/imath/examples/rounding.c +83 -0
  1441. clingo_funasp-6.0.0.post10/third_party/imath/examples/rsakey.c +303 -0
  1442. clingo_funasp-6.0.0.post10/third_party/imath/gmp_compat.c +824 -0
  1443. clingo_funasp-6.0.0.post10/third_party/imath/gmp_compat.h +229 -0
  1444. clingo_funasp-6.0.0.post10/third_party/imath/imath.c +2782 -0
  1445. clingo_funasp-6.0.0.post10/third_party/imath/imath.h +421 -0
  1446. clingo_funasp-6.0.0.post10/third_party/imath/imdrover.c +1463 -0
  1447. clingo_funasp-6.0.0.post10/third_party/imath/imdrover.h +111 -0
  1448. clingo_funasp-6.0.0.post10/third_party/imath/imrat.c +943 -0
  1449. clingo_funasp-6.0.0.post10/third_party/imath/imrat.h +271 -0
  1450. clingo_funasp-6.0.0.post10/third_party/imath/imtest.c +425 -0
  1451. clingo_funasp-6.0.0.post10/third_party/imath/imtimer.c +214 -0
  1452. clingo_funasp-6.0.0.post10/third_party/imath/iprime.c +97 -0
  1453. clingo_funasp-6.0.0.post10/third_party/imath/iprime.h +48 -0
  1454. clingo_funasp-6.0.0.post10/third_party/imath/rsamath.c +148 -0
  1455. clingo_funasp-6.0.0.post10/third_party/imath/rsamath.h +94 -0
  1456. clingo_funasp-6.0.0.post10/third_party/imath/tests/add.tc +848 -0
  1457. clingo_funasp-6.0.0.post10/third_party/imath/tests/bigmul.tc +10 -0
  1458. clingo_funasp-6.0.0.post10/third_party/imath/tests/bigsqr.tc +11 -0
  1459. clingo_funasp-6.0.0.post10/third_party/imath/tests/bintest.c +104 -0
  1460. clingo_funasp-6.0.0.post10/third_party/imath/tests/bug-qread.c +38 -0
  1461. clingo_funasp-6.0.0.post10/third_party/imath/tests/bug-swap.c +23 -0
  1462. clingo_funasp-6.0.0.post10/third_party/imath/tests/compare.tc +31 -0
  1463. clingo_funasp-6.0.0.post10/third_party/imath/tests/conv.tc +228 -0
  1464. clingo_funasp-6.0.0.post10/third_party/imath/tests/div.tc +963 -0
  1465. clingo_funasp-6.0.0.post10/third_party/imath/tests/egcd.tc +752 -0
  1466. clingo_funasp-6.0.0.post10/third_party/imath/tests/emod.tc +756 -0
  1467. clingo_funasp-6.0.0.post10/third_party/imath/tests/emodv.tc +305 -0
  1468. clingo_funasp-6.0.0.post10/third_party/imath/tests/expt.tc +154 -0
  1469. clingo_funasp-6.0.0.post10/third_party/imath/tests/gcd.tc +761 -0
  1470. clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/.gitignore +10 -0
  1471. clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/Makefile +28 -0
  1472. clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/README +106 -0
  1473. clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/genctest.py +284 -0
  1474. clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/gendata.py +393 -0
  1475. clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/genpytest.py +138 -0
  1476. clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/gmp_custom_test.c +28 -0
  1477. clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/gmpapi.py +130 -0
  1478. clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/imath_custom_test.c +28 -0
  1479. clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/runtest +7 -0
  1480. clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/runtest.py +128 -0
  1481. clingo_funasp-6.0.0.post10/third_party/imath/tests/imath-test.scm +172 -0
  1482. clingo_funasp-6.0.0.post10/third_party/imath/tests/init.tc +12 -0
  1483. clingo_funasp-6.0.0.post10/third_party/imath/tests/invmod.tc +452 -0
  1484. clingo_funasp-6.0.0.post10/third_party/imath/tests/isprime.tc +33 -0
  1485. clingo_funasp-6.0.0.post10/third_party/imath/tests/lcm.tc +780 -0
  1486. clingo_funasp-6.0.0.post10/third_party/imath/tests/linux/Dockerfile +14 -0
  1487. clingo_funasp-6.0.0.post10/third_party/imath/tests/mod.tc +754 -0
  1488. clingo_funasp-6.0.0.post10/third_party/imath/tests/mul.tc +864 -0
  1489. clingo_funasp-6.0.0.post10/third_party/imath/tests/neg.tc +9 -0
  1490. clingo_funasp-6.0.0.post10/third_party/imath/tests/pi1024.txt +1 -0
  1491. clingo_funasp-6.0.0.post10/third_party/imath/tests/pi1500-10.txt +1 -0
  1492. clingo_funasp-6.0.0.post10/third_party/imath/tests/pi1698-16.txt +1 -0
  1493. clingo_funasp-6.0.0.post10/third_party/imath/tests/pi4096-10.txt +1 -0
  1494. clingo_funasp-6.0.0.post10/third_party/imath/tests/qadd.tc +803 -0
  1495. clingo_funasp-6.0.0.post10/third_party/imath/tests/qaddz.tc +800 -0
  1496. clingo_funasp-6.0.0.post10/third_party/imath/tests/qdiv.tc +803 -0
  1497. clingo_funasp-6.0.0.post10/third_party/imath/tests/qdivz.tc +800 -0
  1498. clingo_funasp-6.0.0.post10/third_party/imath/tests/qmisc.tc +49 -0
  1499. clingo_funasp-6.0.0.post10/third_party/imath/tests/qmul.tc +803 -0
  1500. clingo_funasp-6.0.0.post10/third_party/imath/tests/qmulz.tc +800 -0
  1501. clingo_funasp-6.0.0.post10/third_party/imath/tests/qsub.tc +803 -0
  1502. clingo_funasp-6.0.0.post10/third_party/imath/tests/qsubz.tc +800 -0
  1503. clingo_funasp-6.0.0.post10/third_party/imath/tests/qtodec.tc +1303 -0
  1504. clingo_funasp-6.0.0.post10/third_party/imath/tests/root.tc +44 -0
  1505. clingo_funasp-6.0.0.post10/third_party/imath/tests/rtest.c +120 -0
  1506. clingo_funasp-6.0.0.post10/third_party/imath/tests/set.tc +12 -0
  1507. clingo_funasp-6.0.0.post10/third_party/imath/tests/sqr.tc +755 -0
  1508. clingo_funasp-6.0.0.post10/third_party/imath/tests/sub.tc +849 -0
  1509. clingo_funasp-6.0.0.post10/third_party/imath/tests/test.bc +155 -0
  1510. clingo_funasp-6.0.0.post10/third_party/imath/tests/test.sh +65 -0
  1511. clingo_funasp-6.0.0.post10/third_party/imath/tools/findthreshold.py +97 -0
  1512. clingo_funasp-6.0.0.post10/third_party/imath/tools/mkdoc.py +212 -0
  1513. clingo_funasp-6.0.0.post10/third_party/ordered-map/.clang-format +1 -0
  1514. clingo_funasp-6.0.0.post10/third_party/ordered-map/.codecov.yml +5 -0
  1515. clingo_funasp-6.0.0.post10/third_party/ordered-map/.git +1 -0
  1516. clingo_funasp-6.0.0.post10/third_party/ordered-map/.github/workflows/ci.yml +120 -0
  1517. clingo_funasp-6.0.0.post10/third_party/ordered-map/CMakeLists.txt +74 -0
  1518. clingo_funasp-6.0.0.post10/third_party/ordered-map/LICENSE +21 -0
  1519. clingo_funasp-6.0.0.post10/third_party/ordered-map/README.md +449 -0
  1520. clingo_funasp-6.0.0.post10/third_party/ordered-map/cmake/tsl-ordered-mapConfig.cmake.in +9 -0
  1521. clingo_funasp-6.0.0.post10/third_party/ordered-map/doxygen.conf +2483 -0
  1522. clingo_funasp-6.0.0.post10/third_party/ordered-map/include/tsl/ordered_hash.h +1701 -0
  1523. clingo_funasp-6.0.0.post10/third_party/ordered-map/include/tsl/ordered_map.h +996 -0
  1524. clingo_funasp-6.0.0.post10/third_party/ordered-map/include/tsl/ordered_set.h +831 -0
  1525. clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/CMakeLists.txt +25 -0
  1526. clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/custom_allocator_tests.cpp +139 -0
  1527. clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/main.cpp +26 -0
  1528. clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/ordered_map_tests.cpp +1709 -0
  1529. clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/ordered_set_tests.cpp +167 -0
  1530. clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/utils.h +358 -0
  1531. clingo_funasp-6.0.0.post10/third_party/ordered-map/tsl-ordered-map.natvis +21 -0
  1532. clingo_funasp-6.0.0.post10/third_party/pybind11/.appveyor.yml +35 -0
  1533. clingo_funasp-6.0.0.post10/third_party/pybind11/.clang-format +38 -0
  1534. clingo_funasp-6.0.0.post10/third_party/pybind11/.clang-tidy +83 -0
  1535. clingo_funasp-6.0.0.post10/third_party/pybind11/.cmake-format.yaml +73 -0
  1536. clingo_funasp-6.0.0.post10/third_party/pybind11/.codespell-ignore-lines +36 -0
  1537. clingo_funasp-6.0.0.post10/third_party/pybind11/.git +1 -0
  1538. clingo_funasp-6.0.0.post10/third_party/pybind11/.gitattributes +1 -0
  1539. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/CODEOWNERS +9 -0
  1540. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/CONTRIBUTING.md +349 -0
  1541. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +61 -0
  1542. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
  1543. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/dependabot.yml +11 -0
  1544. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/labeler.yml +13 -0
  1545. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/labeler_merged.yml +8 -0
  1546. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/matchers/pylint.json +32 -0
  1547. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/pull_request_template.md +15 -0
  1548. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/ci.yml +1357 -0
  1549. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/configure.yml +85 -0
  1550. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/docs-link.yml +41 -0
  1551. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/format.yml +54 -0
  1552. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/labeler.yml +25 -0
  1553. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/nightlies.yml +59 -0
  1554. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/pip.yml +118 -0
  1555. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/reusable-standard.yml +98 -0
  1556. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/tests-cibw.yml +95 -0
  1557. clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/upstream.yml +118 -0
  1558. clingo_funasp-6.0.0.post10/third_party/pybind11/.gitignore +54 -0
  1559. clingo_funasp-6.0.0.post10/third_party/pybind11/.pre-commit-config.yaml +158 -0
  1560. clingo_funasp-6.0.0.post10/third_party/pybind11/.readthedocs.yml +20 -0
  1561. clingo_funasp-6.0.0.post10/third_party/pybind11/CMakeLists.txt +425 -0
  1562. clingo_funasp-6.0.0.post10/third_party/pybind11/CMakePresets.json +93 -0
  1563. clingo_funasp-6.0.0.post10/third_party/pybind11/LICENSE +29 -0
  1564. clingo_funasp-6.0.0.post10/third_party/pybind11/README.rst +215 -0
  1565. clingo_funasp-6.0.0.post10/third_party/pybind11/SECURITY.md +13 -0
  1566. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/Doxyfile +21 -0
  1567. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/Makefile +192 -0
  1568. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/_static/css/custom.css +3 -0
  1569. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/chrono.rst +81 -0
  1570. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/custom.rst +137 -0
  1571. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/eigen.rst +310 -0
  1572. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/functional.rst +109 -0
  1573. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/index.rst +43 -0
  1574. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/overview.rst +170 -0
  1575. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/stl.rst +249 -0
  1576. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/strings.rst +296 -0
  1577. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/classes.rst +1432 -0
  1578. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/deadlock.md +391 -0
  1579. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/deprecated.rst +179 -0
  1580. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/embedding.rst +499 -0
  1581. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/exceptions.rst +422 -0
  1582. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/functions.rst +616 -0
  1583. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/misc.rst +615 -0
  1584. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/pycpp/index.rst +13 -0
  1585. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/pycpp/numpy.rst +493 -0
  1586. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/pycpp/object.rst +286 -0
  1587. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
  1588. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/smart_ptrs.rst +179 -0
  1589. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/basics.rst +316 -0
  1590. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/benchmark.py +89 -0
  1591. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/benchmark.rst +95 -0
  1592. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/changelog.md +3389 -0
  1593. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/classes.rst +652 -0
  1594. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/cmake/index.rst +8 -0
  1595. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/compiling.rst +731 -0
  1596. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/conf.py +369 -0
  1597. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/faq.rst +351 -0
  1598. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/index.rst +49 -0
  1599. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/installing.rst +105 -0
  1600. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/limitations.rst +68 -0
  1601. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/pybind11-logo.png +0 -0
  1602. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
  1603. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
  1604. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
  1605. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
  1606. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/reference.rst +130 -0
  1607. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/release.rst +135 -0
  1608. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/requirements.in +7 -0
  1609. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/requirements.txt +87 -0
  1610. clingo_funasp-6.0.0.post10/third_party/pybind11/docs/upgrade.rst +748 -0
  1611. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/attr.h +730 -0
  1612. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/buffer_info.h +209 -0
  1613. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/cast.h +2433 -0
  1614. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/chrono.h +228 -0
  1615. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/common.h +2 -0
  1616. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/complex.h +93 -0
  1617. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/conduit/README.txt +15 -0
  1618. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +116 -0
  1619. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +87 -0
  1620. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/conduit/wrap_include_python_h.h +72 -0
  1621. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/critical_section.h +56 -0
  1622. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/argument_vector.h +417 -0
  1623. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/class.h +836 -0
  1624. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/common.h +1353 -0
  1625. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/cpp_conduit.h +75 -0
  1626. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/descr.h +226 -0
  1627. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h +39 -0
  1628. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/exception_translation.h +71 -0
  1629. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/function_record_pyobject.h +192 -0
  1630. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/holder_caster_foreign_helpers.h +86 -0
  1631. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/init.h +544 -0
  1632. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/internals.h +1063 -0
  1633. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/native_enum_data.h +227 -0
  1634. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/pybind11_namespace_macros.h +82 -0
  1635. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/struct_smart_holder.h +398 -0
  1636. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/type_caster_base.h +1711 -0
  1637. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/typeid.h +65 -0
  1638. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/using_smart_holder.h +22 -0
  1639. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/value_and_holder.h +92 -0
  1640. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/eigen/common.h +9 -0
  1641. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/eigen/matrix.h +723 -0
  1642. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/eigen/tensor.h +520 -0
  1643. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/eigen.h +12 -0
  1644. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/embed.h +320 -0
  1645. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/eval.h +161 -0
  1646. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/functional.h +147 -0
  1647. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/gil.h +203 -0
  1648. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/gil_safe_call_once.h +273 -0
  1649. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/gil_simple.h +37 -0
  1650. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/iostream.h +265 -0
  1651. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/native_enum.h +76 -0
  1652. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/numpy.h +2312 -0
  1653. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/operators.h +202 -0
  1654. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/options.h +92 -0
  1655. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/pybind11.h +3742 -0
  1656. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/pytypes.h +2738 -0
  1657. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/stl/filesystem.h +114 -0
  1658. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/stl.h +666 -0
  1659. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/stl_bind.h +858 -0
  1660. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/subinterpreter.h +291 -0
  1661. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/trampoline_self_life_support.h +65 -0
  1662. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/type_caster_pyobject_ptr.h +61 -0
  1663. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/typing.h +295 -0
  1664. clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/warnings.h +75 -0
  1665. clingo_funasp-6.0.0.post10/third_party/pybind11/noxfile.py +151 -0
  1666. clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/__init__.py +19 -0
  1667. clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/__main__.py +97 -0
  1668. clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/_version.py +34 -0
  1669. clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/commands.py +39 -0
  1670. clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/py.typed +0 -0
  1671. clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/setup_helpers.py +500 -0
  1672. clingo_funasp-6.0.0.post10/third_party/pybind11/pyproject.toml +209 -0
  1673. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/CMakeLists.txt +684 -0
  1674. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/conftest.py +313 -0
  1675. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/constructor_stats.h +330 -0
  1676. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/cross_module_gil_utils.cpp +111 -0
  1677. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/cross_module_interleaved_error_already_set.cpp +54 -0
  1678. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/custom_exceptions.py +10 -0
  1679. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +16 -0
  1680. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/env.py +59 -0
  1681. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/exo_planet_c_api.cpp +76 -0
  1682. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/exo_planet_pybind11.cpp +19 -0
  1683. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/extra_python_package/pytest.ini +0 -0
  1684. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/extra_python_package/test_files.py +385 -0
  1685. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/extra_setuptools/pytest.ini +0 -0
  1686. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/extra_setuptools/test_setuphelper.py +153 -0
  1687. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/home_planet_very_lonely_traveler.cpp +13 -0
  1688. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/local_bindings.h +93 -0
  1689. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/mod_per_interpreter_gil.cpp +20 -0
  1690. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/mod_per_interpreter_gil_with_singleton.cpp +147 -0
  1691. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/mod_shared_interpreter_gil.cpp +17 -0
  1692. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/object.h +205 -0
  1693. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pure_cpp/CMakeLists.txt +22 -0
  1694. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pure_cpp/smart_holder_poc.h +56 -0
  1695. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pure_cpp/smart_holder_poc_test.cpp +427 -0
  1696. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pybind11_cross_module_tests.cpp +163 -0
  1697. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pybind11_tests.cpp +129 -0
  1698. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pybind11_tests.h +119 -0
  1699. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pyproject.toml +40 -0
  1700. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pytest.ini +22 -0
  1701. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/requirements.txt +20 -0
  1702. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_async.cpp +25 -0
  1703. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_async.py +31 -0
  1704. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_buffers.cpp +442 -0
  1705. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_buffers.py +401 -0
  1706. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_builtin_casters.cpp +393 -0
  1707. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_builtin_casters.py +624 -0
  1708. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_call_policies.cpp +113 -0
  1709. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_call_policies.py +256 -0
  1710. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_callbacks.cpp +302 -0
  1711. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_callbacks.py +247 -0
  1712. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_chrono.cpp +81 -0
  1713. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_chrono.py +207 -0
  1714. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class.cpp +694 -0
  1715. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class.py +557 -0
  1716. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.cpp +23 -0
  1717. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.py +43 -0
  1718. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.cpp +54 -0
  1719. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.py +21 -0
  1720. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_basic.cpp +248 -0
  1721. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_basic.py +248 -0
  1722. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_disowning.cpp +41 -0
  1723. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_disowning.py +78 -0
  1724. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_disowning_mi.cpp +85 -0
  1725. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_disowning_mi.py +246 -0
  1726. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_factory_constructors.cpp +156 -0
  1727. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_factory_constructors.py +53 -0
  1728. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_inheritance.cpp +90 -0
  1729. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_inheritance.py +63 -0
  1730. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_mi_thunks.cpp +230 -0
  1731. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_mi_thunks.py +104 -0
  1732. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_property.cpp +94 -0
  1733. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_property.py +166 -0
  1734. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_property_non_owning.cpp +65 -0
  1735. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_property_non_owning.py +30 -0
  1736. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_shared_ptr_copy_move.cpp +103 -0
  1737. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_shared_ptr_copy_move.py +41 -0
  1738. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_basic.cpp +57 -0
  1739. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_basic.py +35 -0
  1740. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_self_life_support.cpp +86 -0
  1741. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_self_life_support.py +38 -0
  1742. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_shared_from_this.cpp +137 -0
  1743. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_shared_from_this.py +247 -0
  1744. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.cpp +92 -0
  1745. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.py +154 -0
  1746. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_unique_ptr.cpp +63 -0
  1747. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_unique_ptr.py +31 -0
  1748. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.cpp +30 -0
  1749. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.py +8 -0
  1750. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_unique_ptr_member.cpp +50 -0
  1751. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_unique_ptr_member.py +26 -0
  1752. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_virtual_py_cpp_mix.cpp +58 -0
  1753. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_virtual_py_cpp_mix.py +66 -0
  1754. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/CMakeLists.txt +91 -0
  1755. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/embed.cpp +23 -0
  1756. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +19 -0
  1757. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +29 -0
  1758. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +37 -0
  1759. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/main.cpp +6 -0
  1760. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +38 -0
  1761. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +32 -0
  1762. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +38 -0
  1763. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/test.py +10 -0
  1764. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_const_name.cpp +55 -0
  1765. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_const_name.py +31 -0
  1766. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_constants_and_functions.cpp +158 -0
  1767. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_constants_and_functions.py +58 -0
  1768. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_copy_move.cpp +546 -0
  1769. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_copy_move.py +144 -0
  1770. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cpp_conduit.cpp +22 -0
  1771. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cpp_conduit.py +183 -0
  1772. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cpp_conduit_traveler_bindings.h +47 -0
  1773. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cpp_conduit_traveler_types.h +25 -0
  1774. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/CMakeLists.txt +70 -0
  1775. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/bindings.cpp +20 -0
  1776. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/catch.cpp +22 -0
  1777. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/lib.cpp +13 -0
  1778. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/lib.h +31 -0
  1779. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/test_cross_module_rtti.cpp +50 -0
  1780. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_custom_type_casters.cpp +217 -0
  1781. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_custom_type_casters.py +126 -0
  1782. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_custom_type_setup.cpp +104 -0
  1783. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_custom_type_setup.py +84 -0
  1784. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_docs_advanced_cast_custom.cpp +69 -0
  1785. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_docs_advanced_cast_custom.py +40 -0
  1786. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_docstring_options.cpp +129 -0
  1787. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_docstring_options.py +72 -0
  1788. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eigen_matrix.cpp +448 -0
  1789. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eigen_matrix.py +839 -0
  1790. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eigen_tensor.cpp +18 -0
  1791. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eigen_tensor.inl +338 -0
  1792. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eigen_tensor.py +316 -0
  1793. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_enum.cpp +149 -0
  1794. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_enum.py +344 -0
  1795. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eval.cpp +118 -0
  1796. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eval.py +52 -0
  1797. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eval_call.py +5 -0
  1798. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_exceptions.cpp +427 -0
  1799. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_exceptions.h +13 -0
  1800. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_exceptions.py +439 -0
  1801. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_factory_constructors.cpp +434 -0
  1802. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_factory_constructors.py +531 -0
  1803. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_gil_scoped.cpp +144 -0
  1804. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_gil_scoped.py +291 -0
  1805. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_iostream.cpp +126 -0
  1806. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_iostream.py +304 -0
  1807. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_kwargs_and_defaults.cpp +331 -0
  1808. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_kwargs_and_defaults.py +473 -0
  1809. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_local_bindings.cpp +131 -0
  1810. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_local_bindings.py +291 -0
  1811. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_methods_and_attributes.cpp +492 -0
  1812. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_methods_and_attributes.py +574 -0
  1813. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_modules.cpp +124 -0
  1814. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_modules.py +146 -0
  1815. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_multiple_inheritance.cpp +341 -0
  1816. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_multiple_inheritance.py +500 -0
  1817. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_multiple_interpreters.py +432 -0
  1818. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_native_enum.cpp +262 -0
  1819. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_native_enum.py +377 -0
  1820. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_array.cpp +599 -0
  1821. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_array.py +710 -0
  1822. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_dtypes.cpp +745 -0
  1823. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_dtypes.py +464 -0
  1824. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_scalars.cpp +63 -0
  1825. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_scalars.py +54 -0
  1826. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_vectorize.cpp +107 -0
  1827. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_vectorize.py +268 -0
  1828. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_opaque_types.cpp +77 -0
  1829. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_opaque_types.py +64 -0
  1830. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_operator_overloading.cpp +281 -0
  1831. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_operator_overloading.py +161 -0
  1832. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_pickling.cpp +191 -0
  1833. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_pickling.py +149 -0
  1834. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_potentially_slicing_weak_ptr.cpp +170 -0
  1835. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_potentially_slicing_weak_ptr.py +174 -0
  1836. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
  1837. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_python_multiple_inheritance.py +36 -0
  1838. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_pytypes.cpp +1216 -0
  1839. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_pytypes.py +1374 -0
  1840. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_scoped_critical_section.cpp +274 -0
  1841. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_scoped_critical_section.py +30 -0
  1842. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
  1843. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_sequences_and_iterators.py +307 -0
  1844. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_smart_ptr.cpp +594 -0
  1845. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_smart_ptr.py +357 -0
  1846. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_stl.cpp +667 -0
  1847. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_stl.py +735 -0
  1848. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_stl_binders.cpp +275 -0
  1849. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_stl_binders.py +414 -0
  1850. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_tagbased_polymorphic.cpp +150 -0
  1851. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_tagbased_polymorphic.py +30 -0
  1852. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_thread.cpp +108 -0
  1853. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_thread.py +80 -0
  1854. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_type_caster_pyobject_ptr.cpp +168 -0
  1855. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_type_caster_pyobject_ptr.py +125 -0
  1856. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_type_caster_std_function_specializations.cpp +46 -0
  1857. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_type_caster_std_function_specializations.py +15 -0
  1858. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_union.cpp +22 -0
  1859. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_union.py +10 -0
  1860. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_unnamed_namespace_a.cpp +37 -0
  1861. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_unnamed_namespace_a.py +33 -0
  1862. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_unnamed_namespace_b.cpp +13 -0
  1863. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_unnamed_namespace_b.py +7 -0
  1864. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_vector_unique_ptr_member.cpp +54 -0
  1865. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_vector_unique_ptr_member.py +16 -0
  1866. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_virtual_functions.cpp +592 -0
  1867. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_virtual_functions.py +468 -0
  1868. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_warnings.cpp +46 -0
  1869. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_warnings.py +68 -0
  1870. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/CMakeLists.txt +64 -0
  1871. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/catch.cpp +175 -0
  1872. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/catch_skip.h +16 -0
  1873. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/external_module.cpp +39 -0
  1874. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_args_convert_vector.cpp +80 -0
  1875. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_argument_vector.cpp +94 -0
  1876. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_interpreter.cpp +483 -0
  1877. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_interpreter.py +16 -0
  1878. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_subinterpreter.cpp +579 -0
  1879. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_trampoline.py +18 -0
  1880. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
  1881. clingo_funasp-6.0.0.post10/third_party/pybind11/tests/valgrind-python.supp +117 -0
  1882. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/FindCatch.cmake +74 -0
  1883. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/FindEigen3.cmake +86 -0
  1884. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/FindPythonLibsNew.cmake +320 -0
  1885. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/JoinPaths.cmake +23 -0
  1886. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/check-style.sh +44 -0
  1887. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/cmake_uninstall.cmake.in +23 -0
  1888. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
  1889. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/libsize.py +38 -0
  1890. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/make_changelog.py +121 -0
  1891. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/make_global.py +33 -0
  1892. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11.pc.in +7 -0
  1893. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11Common.cmake +458 -0
  1894. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11Config.cmake.in +240 -0
  1895. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +94 -0
  1896. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11NewTools.cmake +339 -0
  1897. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11Tools.cmake +217 -0
  1898. clingo_funasp-6.0.0.post10/third_party/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +185 -0
  1899. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.git +1 -0
  1900. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.github/workflows/docs-deploy.yml +57 -0
  1901. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.github/workflows/release.yml +62 -0
  1902. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.github/workflows/test.yml +91 -0
  1903. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.gitignore +57 -0
  1904. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.versup.json +22 -0
  1905. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/LICENSE +21 -0
  1906. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/README.md +50 -0
  1907. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/build_config.py +32 -0
  1908. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/cmake/FindPytest.cmake +181 -0
  1909. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/cmake/PytestAddTests.cmake +174 -0
  1910. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/_extensions/changelog.py +92 -0
  1911. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/_extensions/github_user.py +18 -0
  1912. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/_static/style.css +63 -0
  1913. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/api_reference.rst +243 -0
  1914. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/conf.py +46 -0
  1915. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/environment_variables.rst +33 -0
  1916. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/favicon.ico +0 -0
  1917. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/glossary.rst +68 -0
  1918. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/index.rst +20 -0
  1919. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/installing.rst +63 -0
  1920. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/integration.rst +69 -0
  1921. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/introduction.rst +45 -0
  1922. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/release/index.rst +14 -0
  1923. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/release/migration_notes.rst +15 -0
  1924. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/release/release_notes.rst +339 -0
  1925. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/requirements.txt +2 -0
  1926. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/tutorial.rst +216 -0
  1927. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/CMakeLists.txt +21 -0
  1928. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/CMakeLists.txt +2 -0
  1929. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/foo/CMakeLists.txt +6 -0
  1930. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/foo/foo.cpp +40 -0
  1931. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/foo/foo.h +18 -0
  1932. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/python/CMakeLists.txt +28 -0
  1933. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/python/main.cpp +24 -0
  1934. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/test/CMakeLists.txt +42 -0
  1935. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/test/fooTest.cpp +6 -0
  1936. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/test/resource/foo.txt +3 -0
  1937. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/test/subfolder/test_example2.py +18 -0
  1938. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/test/test_example.py +39 -0
  1939. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/pyproject.toml +61 -0
  1940. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/src/pytest_cmake/__init__.py +0 -0
  1941. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/src/pytest_cmake/__main__.py +29 -0
  1942. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/00-version-fails/CMakeLists.txt +5 -0
  1943. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/01-modify-name/CMakeLists.txt +153 -0
  1944. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/01-modify-name/data/conftest.py +9 -0
  1945. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/01-modify-name/data/test_sample_data.py +18 -0
  1946. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/01-modify-name/strings/test_string_methods.py +18 -0
  1947. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/01-modify-name/test_math_operations.py +21 -0
  1948. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/02-library-path/CMakeLists.txt +33 -0
  1949. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/02-library-path/test_path.py +16 -0
  1950. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/03-python-path/CMakeLists.txt +33 -0
  1951. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/03-python-path/test_path.py +10 -0
  1952. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/04-environment/CMakeLists.txt +18 -0
  1953. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/04-environment/test_env.py +17 -0
  1954. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/05-properties/CMakeLists.txt +59 -0
  1955. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/05-properties/check_test_property.cmake +60 -0
  1956. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/05-properties/test_property.py +2 -0
  1957. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/06-extra-args/CMakeLists.txt +31 -0
  1958. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/06-extra-args/conftest.py +4 -0
  1959. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/06-extra-args/custom_args/test_custom_args.py +7 -0
  1960. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/06-extra-args/test_args.py +7 -0
  1961. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/07-working-directory/CMakeLists.txt +18 -0
  1962. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/07-working-directory/subdir/test_correct.py +2 -0
  1963. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/07-working-directory/test_incorrect.py +1 -0
  1964. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/CMakeLists.txt +94 -0
  1965. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/pytest.ini +4 -0
  1966. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_a/choice.py +4 -0
  1967. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_a/math/test_add.py +2 -0
  1968. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_a/test_upper.py +2 -0
  1969. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_b/math/test_power.py +2 -0
  1970. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_b/math/test_subtract.py +2 -0
  1971. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_b/test_concat.py +2 -0
  1972. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_incorrect.py +1 -0
  1973. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/CMakeLists.txt +93 -0
  1974. clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/utils/compare_discovered_tests.cmake +29 -0
  1975. clingo_funasp-6.0.0.post10/update-pytest.sh +5 -0
  1976. clingo_funasp-6.0.0.post10/web/CMakeLists.txt +20 -0
  1977. clingo_funasp-6.0.0.post10/web/main.cc +72 -0
@@ -0,0 +1,5 @@
1
+ ---
2
+ IndentWidth: 4
3
+ ColumnLimit: 120
4
+ IndentCaseLabels: true
5
+ AllowShortFunctionsOnASingleLine: InlineOnly
@@ -0,0 +1,28 @@
1
+ ---
2
+ Checks: >
3
+ bugprone-*,
4
+ clang-analyzer-*,
5
+ clang-diagnostic-*,
6
+ cppcoreguidelines-*,
7
+ modernize-*,
8
+ performance-*,
9
+ readability-*,
10
+ -bugprone-chained-comparison,
11
+ -bugprone-easily-swappable-parameters,
12
+ -cppcoreguidelines-avoid-c-arrays,
13
+ -cppcoreguidelines-avoid-do-while,
14
+ -cppcoreguidelines-avoid-magic-numbers,
15
+ -cppcoreguidelines-pro-type-vararg,
16
+ -cppcoreguidelines-special-member-functions,
17
+ -modernize-use-designated-initializers,
18
+ -readability-ambiguous-smartptr-reset-call,
19
+ -readability-function-cognitive-complexity,
20
+ -readability-function-size,
21
+ -readability-identifier-length,
22
+ -readability-suspicious-call-argument,
23
+ WarningsAsErrors: ""
24
+ HeaderFilterRegex: ""
25
+ FormatStyle: none
26
+ CheckOptions:
27
+ - key: modernize-use-trailing-return-type.TransformLambdas
28
+ value: none
@@ -0,0 +1,3 @@
1
+ Index:
2
+ Background: Build
3
+ StandardLibrary: yes
@@ -0,0 +1 @@
1
+ filter=-linelength
@@ -0,0 +1,24 @@
1
+ ACTIVATE=( /mnt/scratch/kaminski/conda/bin/activate /home/kaminski/.local/opt/conda/bin/activate )
2
+
3
+ for activate in "${ACTIVATE[@]}"; do
4
+ if [[ -e "${activate}" ]] && "${activate%activate}conda" env list | grep -qw '^clang\>'; then
5
+ source "${activate}" clang
6
+ fi
7
+ done
8
+
9
+ if [[ -z "${NVM_DIR}" && -f "${HOME}/.nvm/nvm.sh" ]]; then
10
+ echo "dir set"
11
+ NVM_DIR="${HOME}/.nvm"
12
+ export NVM_DIR
13
+ fi
14
+
15
+ if [[ -n "${NVM_DIR}" ]]; then
16
+ source ${NVM_DIR}/nvm.sh
17
+ nvm use --lts > /dev/null
18
+ fi
19
+
20
+ if [[ -f ".venv/bin/activate" ]]; then
21
+ source ".venv/bin/activate"
22
+ fi
23
+
24
+ unset PS1
@@ -0,0 +1,53 @@
1
+ """
2
+ Script to adjust version in pyproject.toml based on core.h version.
3
+ """
4
+
5
+ import argparse
6
+ import re
7
+
8
+ import toml
9
+
10
+
11
+ def adjust_version(build_number, git_hash):
12
+ """
13
+ Adjust version in pyproject.toml.
14
+ """
15
+
16
+ version = None
17
+ with open("lib/c-api/include/clingo/core.h", encoding="utf-8") as fh:
18
+ for line in fh:
19
+ m = re.match(r'#define CLINGO_VERSION "([0-9]+\.[0-9]+\.[0-9]+)"', line)
20
+ if m is not None:
21
+ version = m.group(1)
22
+ assert version is not None
23
+
24
+ if build_number > 0:
25
+ version = f"{version}.post{build_number}"
26
+
27
+ with open("pyproject.toml", "r", encoding="utf-8") as hnd:
28
+ pyproject = toml.load(hnd)
29
+
30
+ pyproject["project"]["version"] = f"{version}"
31
+ pyproject["project"]["urls"]["Source"] = (
32
+ f"https://github.com/potassco/clingo/tree/{git_hash}"
33
+ )
34
+ with open("pyproject.toml", "w", encoding="utf-8") as hnd:
35
+ toml.dump(pyproject, hnd)
36
+
37
+ print(f"Set version to {pyproject['project']['version']}")
38
+
39
+
40
+ def run():
41
+ """
42
+ Parse arguments and run version adjustment.
43
+ """
44
+ parser = argparse.ArgumentParser(description="Build source package.")
45
+ parser.add_argument("--build-number", type=int, default=0, help="Build number.")
46
+ parser.add_argument("--git-hash", type=str, required=True, help="Git hash.")
47
+ args = parser.parse_args()
48
+
49
+ adjust_version(args.build_number, args.git_hash)
50
+
51
+
52
+ if __name__ == "__main__":
53
+ run()
@@ -0,0 +1,12 @@
1
+ cmake -S . -B build -G "Visual Studio 17 2022" ^
2
+ -DCMAKE_INSTALL_PREFIX="%LIBRARY_PREFIX%" ^
3
+ -DCMAKE_INSTALL_LIBDIR="lib" ^
4
+ -DPython_ROOT_DIR="%PREFIX%" ^
5
+ -DPython_EXECUTABLE="%PYTHON%" ^
6
+ -DCLINGO_MANAGE_RPATH=OFF ^
7
+ -DCLINGO_BUILD_TESTS=ON ^
8
+ -DPYCLINGO_INSTALL_DIR="%SP_DIR%"
9
+
10
+ cmake --build build --config Release
11
+ ctest --test-dir build -C Release
12
+ cmake --build build --target install --config Release
@@ -0,0 +1,23 @@
1
+ #!/bin/bash
2
+
3
+ set -ex
4
+
5
+ if [ -z "${PYTHON}" ]; then
6
+ PYTHON="$(which python)"
7
+ fi
8
+
9
+ cmake -S . -B build -G Ninja \
10
+ -DCMAKE_CXX_COMPILER="${CXX}" \
11
+ -DCMAKE_C_COMPILER="${CC}" \
12
+ -DCMAKE_INSTALL_PREFIX="${PREFIX}" \
13
+ -DCMAKE_INSTALL_LIBDIR="lib" \
14
+ -DCMAKE_BUILD_TYPE=Release \
15
+ -DPython_ROOT_DIR="${PREFIX}" \
16
+ -DPython_EXECUTABLE="${PYTHON}" \
17
+ -DCLINGO_MANAGE_RPATH=OFF \
18
+ -DCLINGO_BUILD_TESTS=ON \
19
+ -DPYCLINGO_INSTALL_DIR="${SP_DIR}"
20
+
21
+ cmake --build build
22
+ ctest --test-dir build
23
+ cmake --build build --target install
@@ -0,0 +1,6 @@
1
+ CONDA_BUILD_SYSROOT:
2
+ - /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk # [osx]
3
+ MACOSX_DEPLOYMENT_TARGET:
4
+ - "14" # [osx]
5
+ cxx_compiler_version:
6
+ - 18 # [osx]
@@ -0,0 +1,40 @@
1
+ {% set version = environ.get('VERSION_NUMBER', '6.0.0') %}
2
+ {% set build = environ.get('BUILD_NUMBER', "0") %}
3
+
4
+ package:
5
+ name: clingo
6
+ version: {{ version }}
7
+
8
+ source:
9
+ path: ../..
10
+
11
+ requirements:
12
+ build:
13
+ - cmake
14
+ - ninja
15
+ - re2c # [not win]
16
+ - {{ compiler('c') }}
17
+ - {{ compiler('cxx') }}
18
+ host:
19
+ - pytest
20
+ - python
21
+ run:
22
+ - python
23
+
24
+ build:
25
+ number: {{ build }}
26
+
27
+ test:
28
+ commands:
29
+ - clingo --version
30
+ - clasp --version
31
+ - lpconvert --version
32
+
33
+ about:
34
+ home: https://potassco.org/
35
+ license: MIT
36
+ summary: A grounder and solver for logic programs.
37
+ description: Clingo is an answer set programming (ASP) system that takes a logic program as input and calculates its answer sets.
38
+ license_file: LICENSE.md
39
+ doc_url: https://potassco.org/
40
+ dev_url: https://github.com/potassco/clingo
@@ -0,0 +1,9 @@
1
+ *.ddeb
2
+ *.deb
3
+ clingo_*.dsc
4
+ clingo_*.tar.xz
5
+ clingo_*.build
6
+ clingo_*.buildinfo
7
+ clingo_*.changes
8
+ clingo_*.deb
9
+ clingo_*.changes
@@ -0,0 +1,194 @@
1
+ #!/bin/bash
2
+
3
+ function usage {
4
+ echo "./$(basename "$0") --type={ppa,cloudsmith} --build-number <n> {wip-20} {noble,trixie} {create,sync,changes,build,put,clean}*"
5
+ }
6
+
7
+ if [[ $# -lt 1 ]]; then
8
+ usage
9
+ exit 1
10
+ fi
11
+
12
+ BUILD_NUMBER=""
13
+ BUILD_TYPE="ppa"
14
+
15
+ if ! ARGS=$(getopt -o '' --long build-number:,type: -- "$@"); then
16
+ usage
17
+ exit 1
18
+ fi
19
+
20
+ eval set -- "$ARGS"
21
+ while true; do
22
+ case "$1" in
23
+ --build-number)
24
+ BUILD_NUMBER="$2"
25
+ shift 2
26
+ ;;
27
+ --type)
28
+ BUILD_TYPE="$2"
29
+ shift 2
30
+ ;;
31
+ --)
32
+ shift
33
+ break
34
+ ;;
35
+ *)
36
+ usage
37
+ exit 1
38
+ ;;
39
+ esac
40
+ done
41
+
42
+ set -ex
43
+
44
+ ref="${1}"
45
+ shift
46
+
47
+ case "${BUILD_TYPE}" in
48
+ ppa) ;;
49
+ cloudsmith) ;;
50
+ *)
51
+ usage
52
+ exit 1
53
+ ;;
54
+ esac
55
+
56
+ case "${ref}" in
57
+ wip-20) ;;
58
+ *)
59
+ usage
60
+ exit 1
61
+ ;;
62
+ esac
63
+
64
+ rep="${1}"
65
+ shift
66
+
67
+ DISTRIBUTION=ubuntu
68
+ PBUILDER_ARGS=()
69
+ case "${rep}" in
70
+ noble) ;;
71
+ trixie)
72
+ PBUILDER_ARGS+=(--mirror http://deb.debian.org/debian)
73
+ DISTRIBUTION=debian
74
+ ;;
75
+ *)
76
+ usage
77
+ exit 1
78
+ ;;
79
+ esac
80
+
81
+ for act in "${@}"; do
82
+ echo "${act}"
83
+ case "${act}" in
84
+ _ppa)
85
+ if [[ "${DISTRIBUTION}" == ubuntu ]]; then
86
+ apt-get install -y software-properties-common
87
+ add-apt-repository -y "ppa:potassco/${ref}"
88
+ else
89
+ # could for example setup cloudforge repository here
90
+ :
91
+ fi
92
+ apt-get update
93
+ apt-get install -y tree debhelper
94
+ ;;
95
+ create)
96
+ sudo apt-get update
97
+ sudo apt-get install pbuilder pbuilder-scripts debootstrap devscripts dh-make dput dh-python
98
+ if [[ "${DISTRIBUTION}" == debian ]]; then
99
+ sudo apt-get install debian-archive-keyring
100
+ fi
101
+ sudo pbuilder create --basetgz "/var/cache/pbuilder/${ref}-${rep}.tgz" --distribution "${rep}" "${PBUILDER_ARGS[@]}" --debootstrapopts --variant=buildd
102
+ sudo pbuilder execute --basetgz "/var/cache/pbuilder/${ref}-${rep}.tgz" --save-after-exec -- build.sh "${ref}" "${rep}" _ppa
103
+ ;;
104
+ sync)
105
+ rsync -aq \
106
+ --exclude __pycache__ \
107
+ --exclude .mypy_cache \
108
+ --exclude '*,cover' \
109
+ --exclude '*.egg-info' \
110
+ --exclude dist \
111
+ --exclude build \
112
+ ../../app \
113
+ ../../cmake \
114
+ ../../CMakeLists.txt \
115
+ ../../DEVELOP.md \
116
+ ../../lib \
117
+ ../../LICENSE.md \
118
+ ../../README.md \
119
+ ../../third_party \
120
+ "$rep/"
121
+ sed -i "s/export CLINGO_BUILD_REVISION =.*/export CLINGO_BUILD_REVISION = $(git rev-parse --short HEAD)/" "${rep}/debian/rules"
122
+ ;;
123
+ changes)
124
+ VERSION="$(sed -n '/#define CLINGO_VERSION "/s/.*"\([0-9]\+\.[0-9\+]\.[0-9]\+\)".*/\1/p' ../../lib/c-api/include/clingo/core.h)"
125
+ if [[ -z "${BUILD_NUMBER}" ]]; then
126
+ echo "No build number given"
127
+ exit 1
128
+ fi
129
+ if [[ "$DISTRIBUTION" == "ubuntu" ]]; then
130
+ SUFFIX="-${rep}${BUILD_NUMBER}"
131
+ else
132
+ SUFFIX=".${BUILD_NUMBER}"
133
+ fi
134
+ cat >"${rep}/debian/changelog" <<EOF
135
+ clingo (${VERSION}${SUFFIX}) ${rep}; urgency=medium
136
+
137
+ * build for git revision $(git rev-parse HEAD)
138
+
139
+ -- Roland Kaminski <kaminski@cs.uni-potsdam.de> $(date -R)
140
+ EOF
141
+ ;;
142
+ build)
143
+ if [[ "${BUILD_TYPE}" == "ppa" ]]; then
144
+ VERSION="$(head -n 1 "${rep}/debian/changelog" | grep -o '[0-9]\+\.[0-9]\+\.[0-9]\+\(-[a-z0-9]\+\)\?')"
145
+ (
146
+ cd "${rep}"
147
+ pdebuild --buildresult .. --auto-debsign --debsign-k 744d959e10f5ad73f9cf17cc1d150536980033d5 -- --basetgz "/var/cache/pbuilder/${ref}-${rep}.tgz" --source-only-changes
148
+ sed -i '/\.buildinfo$/d' "../clingo_${VERSION}_source.changes"
149
+ debsign --re-sign -k744d959e10f5ad73f9cf17cc1d150536980033d5 "../clingo_${VERSION}_source.changes"
150
+ )
151
+ else
152
+ (
153
+ cd "${rep}"
154
+ pdebuild --buildresult .. -- --basetgz "/var/cache/pbuilder/${ref}-${rep}.tgz" --source-only-changes
155
+ )
156
+ fi
157
+ ;;
158
+ put)
159
+ VERSION="$(head -n 1 "${rep}/debian/changelog" | grep -o '[0-9]\+\.[0-9]\+\.[0-9]\+\(-[a-z0-9]\+\)\?')"
160
+ dput "ppa:potassco/${ref}" "clingo_${VERSION}_source.changes"
161
+ ;;
162
+ clean)
163
+ rm -rf \
164
+ "${rep}"/app \
165
+ "${rep}"/cmake \
166
+ "${rep}"/clasp \
167
+ "${rep}"/lib* \
168
+ "${rep}"/third_party \
169
+ "${rep}"/CMakeLists.txt \
170
+ "${rep}"/debian/files \
171
+ "${rep}"/debian/.debhelper \
172
+ "${rep}"/debian/clingo.debhelper.log \
173
+ "${rep}"/debian/clingo.substvars \
174
+ "${rep}"/debian/clingo \
175
+ "${rep}"/debian/debhelper-build-stamp \
176
+ "${rep}"/debian/tmp \
177
+ "${rep}"/obj-x86_64-linux-gnu \
178
+ ./*.md \
179
+ ./*.build \
180
+ ./*.deb \
181
+ ./*.dsc \
182
+ ./*.buildinfo \
183
+ ./*.changes \
184
+ ./*.ddeb \
185
+ ./*.tar.xz \
186
+ ./*.upload
187
+ git checkout "${rep}/debian/changelog" "${rep}/debian/rules"
188
+ ;;
189
+ *)
190
+ usage
191
+ exit 1
192
+ ;;
193
+ esac
194
+ done
@@ -0,0 +1,8 @@
1
+ CMakeLists.txt
2
+ DEVELOP.md
3
+ LICENSE.md
4
+ README.md
5
+ app/
6
+ cmake/
7
+ lib/
8
+ third_party/
@@ -0,0 +1,5 @@
1
+ clingo (6.0.0-noble3) noble; urgency=medium
2
+
3
+ * initial version
4
+
5
+ -- Roland Kaminski <kaminski@cs.uni-potsdam.de> Tue, 23 Sep 2025 15:00:00 +0200
@@ -0,0 +1,43 @@
1
+ Source: clingo
2
+ Section: devel
3
+ Priority: optional
4
+ Maintainer: Roland Kaminski <kaminski@cs.uni-potsdam.de>
5
+ Build-Depends: debhelper-compat (= 13), dh-python, cmake, python3-dev, bison, re2c
6
+ Standards-Version: 4.4.1
7
+ Homepage: https://potassco.org/clingo
8
+ Vcs-Browser: https://github.com/potassco/clingo
9
+ Vcs-Git: https://github.com/potassco/clingo.git
10
+
11
+ Package: clingo
12
+ Architecture: any
13
+ Section: devel
14
+ Depends: ${shlibs:Depends}, ${misc:Depends}, libclingo (= ${binary:Version}), python3-clingo
15
+ Description: A solver for logic programs
16
+ Clingo is part of the Potassco project for Answer Set Programming (ASP). ASP
17
+ offers a simple and powerful modeling language to describe combinatorial
18
+ problems as logic programs. The clingo system then takes such a logic program
19
+ and computes answer sets representing solutions to the given problem. To get
20
+ an idea, check our Getting Started page and the online version of clingo.
21
+ .
22
+ This package contains the executables.
23
+
24
+ Package: python3-clingo
25
+ Section: python
26
+ Architecture: any
27
+ Depends: ${shlibs:Depends}, ${misc:Depends}, ${python3:Depends}, libclingo (= ${binary:Version}), python3-cffi-backend
28
+ Description: A solver for logic programs
29
+ This package contains python bindings for clingo.
30
+
31
+ Package: libclingo
32
+ Section: libs
33
+ Architecture: any
34
+ Depends: ${shlibs:Depends}, ${misc:Depends}
35
+ Description: A solver for logic programs
36
+ This package contains the shared library.
37
+
38
+ Package: libclingo-dev
39
+ Section: libdevel
40
+ Architecture: any
41
+ Depends: ${misc:Depends}, libclingo (= ${binary:Version})
42
+ Description: A solver for logic programs
43
+ This package contains the development files.
@@ -0,0 +1,31 @@
1
+ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2
+ Upstream-Name: clingo
3
+ Upstream-Contact: https://github.com/potassco/clingo/issues
4
+ Source: https://github.com/potassco/clingo
5
+
6
+ Files: *
7
+ Copyright: 2025 Roland Kaminski <kaminski@cs.uni-potsdam.de>
8
+ License: MIT
9
+
10
+ Files: debian/*
11
+ Copyright: 2024 Roland Kaminski <kaminski@cs.uni-potsdam.de>
12
+ License: MIT
13
+
14
+ License: MIT
15
+ Permission is hereby granted, free of charge, to any person obtaining a
16
+ copy of this software and associated documentation files (the "Software"),
17
+ to deal in the Software without restriction, including without limitation
18
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
19
+ and/or sell copies of the Software, and to permit persons to whom the
20
+ Software is furnished to do so, subject to the following conditions:
21
+ .
22
+ The above copyright notice and this permission notice shall be included
23
+ in all copies or substantial portions of the Software.
24
+ .
25
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
26
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
28
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
29
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
30
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
31
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1 @@
1
+ README.md
@@ -0,0 +1,2 @@
1
+ /usr/include/*
2
+ /usr/lib/*/cmake/*
@@ -0,0 +1 @@
1
+ /usr/lib/python3/dist-packages/*
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/make -f
2
+
3
+ export CLINGO_BUILD_REVISION =
4
+
5
+ %:
6
+ dh $@ --with python3
7
+
8
+ override_dh_auto_configure:
9
+ dh_auto_configure -- \
10
+ -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) \
11
+ -DCLINGO_BUILD_REVISION=$(CLINGO_BUILD_REVISION) \
12
+ -DCLINGO_BUILD_TESTS=Off \
13
+ -DCLINGO_MANAGE_RPATH=Off \
14
+ -DCLINGO_BUILD_EXAMPLES=Off
@@ -0,0 +1,8 @@
1
+ CMakeLists.txt
2
+ DEVELOP.md
3
+ LICENSE.md
4
+ README.md
5
+ app/
6
+ cmake/
7
+ lib/
8
+ third_party/
@@ -0,0 +1,5 @@
1
+ clingo (6.0.0.3) trixie; urgency=medium
2
+
3
+ * initial version
4
+
5
+ -- Roland Kaminski <kaminski@cs.uni-potsdam.de> Tue, 23 Sep 2025 15:00:00 +0200
@@ -0,0 +1,43 @@
1
+ Source: clingo
2
+ Section: devel
3
+ Priority: optional
4
+ Maintainer: Roland Kaminski <kaminski@cs.uni-potsdam.de>
5
+ Build-Depends: debhelper-compat (= 13), dh-python, cmake, python3-dev, bison, re2c
6
+ Standards-Version: 4.4.1
7
+ Homepage: https://potassco.org/clingo
8
+ Vcs-Browser: https://github.com/potassco/clingo
9
+ Vcs-Git: https://github.com/potassco/clingo.git
10
+
11
+ Package: clingo
12
+ Architecture: any
13
+ Section: devel
14
+ Depends: ${shlibs:Depends}, ${misc:Depends}, libclingo (= ${binary:Version}), python3-clingo
15
+ Description: A solver for logic programs
16
+ Clingo is part of the Potassco project for Answer Set Programming (ASP). ASP
17
+ offers a simple and powerful modeling language to describe combinatorial
18
+ problems as logic programs. The clingo system then takes such a logic program
19
+ and computes answer sets representing solutions to the given problem. To get
20
+ an idea, check our Getting Started page and the online version of clingo.
21
+ .
22
+ This package contains the executables.
23
+
24
+ Package: python3-clingo
25
+ Section: python
26
+ Architecture: any
27
+ Depends: ${shlibs:Depends}, ${misc:Depends}, ${python3:Depends}, libclingo (= ${binary:Version}), python3-cffi-backend
28
+ Description: A solver for logic programs
29
+ This package contains python bindings for clingo.
30
+
31
+ Package: libclingo
32
+ Section: libs
33
+ Architecture: any
34
+ Depends: ${shlibs:Depends}, ${misc:Depends}
35
+ Description: A solver for logic programs
36
+ This package contains the shared library.
37
+
38
+ Package: libclingo-dev
39
+ Section: libdevel
40
+ Architecture: any
41
+ Depends: ${misc:Depends}, libclingo (= ${binary:Version})
42
+ Description: A solver for logic programs
43
+ This package contains the development files.
@@ -0,0 +1,31 @@
1
+ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2
+ Upstream-Name: clingo
3
+ Upstream-Contact: https://github.com/potassco/clingo/issues
4
+ Source: https://github.com/potassco/clingo
5
+
6
+ Files: *
7
+ Copyright: 2025 Roland Kaminski <kaminski@cs.uni-potsdam.de>
8
+ License: MIT
9
+
10
+ Files: debian/*
11
+ Copyright: 2024 Roland Kaminski <kaminski@cs.uni-potsdam.de>
12
+ License: MIT
13
+
14
+ License: MIT
15
+ Permission is hereby granted, free of charge, to any person obtaining a
16
+ copy of this software and associated documentation files (the "Software"),
17
+ to deal in the Software without restriction, including without limitation
18
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
19
+ and/or sell copies of the Software, and to permit persons to whom the
20
+ Software is furnished to do so, subject to the following conditions:
21
+ .
22
+ The above copyright notice and this permission notice shall be included
23
+ in all copies or substantial portions of the Software.
24
+ .
25
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
26
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
28
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
29
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
30
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
31
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1 @@
1
+ README.md
@@ -0,0 +1,2 @@
1
+ /usr/include/*
2
+ /usr/lib/*/cmake/*
@@ -0,0 +1 @@
1
+ /usr/lib/python3/dist-packages/*
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/make -f
2
+
3
+ export CLINGO_BUILD_REVISION =
4
+
5
+ %:
6
+ dh $@ --with python3
7
+
8
+ override_dh_auto_configure:
9
+ dh_auto_configure -- \
10
+ -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) \
11
+ -DCLINGO_BUILD_REVISION=$(CLINGO_BUILD_REVISION) \
12
+ -DCLINGO_BUILD_TESTS=Off \
13
+ -DCLINGO_MANAGE_RPATH=Off \
14
+ -DCLINGO_BUILD_EXAMPLES=Off