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.
- clingo_funasp-6.0.0.post10/.clang-format +5 -0
- clingo_funasp-6.0.0.post10/.clang-tidy +28 -0
- clingo_funasp-6.0.0.post10/.clangd +3 -0
- clingo_funasp-6.0.0.post10/.cmakelintrc +1 -0
- clingo_funasp-6.0.0.post10/.envrc +24 -0
- clingo_funasp-6.0.0.post10/.github/adjust_version.py +53 -0
- clingo_funasp-6.0.0.post10/.github/conda/bld.bat +12 -0
- clingo_funasp-6.0.0.post10/.github/conda/build.sh +23 -0
- clingo_funasp-6.0.0.post10/.github/conda/conda_build_config.yaml +6 -0
- clingo_funasp-6.0.0.post10/.github/conda/meta.yaml +40 -0
- clingo_funasp-6.0.0.post10/.github/ppa/.gitignore +9 -0
- clingo_funasp-6.0.0.post10/.github/ppa/build.sh +194 -0
- clingo_funasp-6.0.0.post10/.github/ppa/noble/.gitignore +8 -0
- clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/changelog +5 -0
- clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/clingo.install +1 -0
- clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/control +43 -0
- clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/copyright +31 -0
- clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/docs +1 -0
- clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/libclingo-dev.install +2 -0
- clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/libclingo.install +1 -0
- clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/python3-clingo.install +1 -0
- clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/rules +14 -0
- clingo_funasp-6.0.0.post10/.github/ppa/noble/debian/source/format +1 -0
- clingo_funasp-6.0.0.post10/.github/ppa/trixie/.gitignore +8 -0
- clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/changelog +5 -0
- clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/clingo.install +1 -0
- clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/control +43 -0
- clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/copyright +31 -0
- clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/docs +1 -0
- clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/libclingo-dev.install +2 -0
- clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/libclingo.install +1 -0
- clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/python3-clingo.install +1 -0
- clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/rules +14 -0
- clingo_funasp-6.0.0.post10/.github/ppa/trixie/debian/source/format +1 -0
- clingo_funasp-6.0.0.post10/.github/trigger.py +143 -0
- clingo_funasp-6.0.0.post10/.github/workflows/cibw.yml +167 -0
- clingo_funasp-6.0.0.post10/.github/workflows/conda.yaml +161 -0
- clingo_funasp-6.0.0.post10/.github/workflows/deb.yml +72 -0
- clingo_funasp-6.0.0.post10/.github/workflows/ppa.yml +51 -0
- clingo_funasp-6.0.0.post10/.github/workflows/test.yml +97 -0
- clingo_funasp-6.0.0.post10/.github/workflows/test_pypi.yml +52 -0
- clingo_funasp-6.0.0.post10/.gitignore +31 -0
- clingo_funasp-6.0.0.post10/.gitmodules +21 -0
- clingo_funasp-6.0.0.post10/.ignore +1 -0
- clingo_funasp-6.0.0.post10/.pre-commit-config.yaml +33 -0
- clingo_funasp-6.0.0.post10/.pylintrc +14 -0
- clingo_funasp-6.0.0.post10/.rgignore +1 -0
- clingo_funasp-6.0.0.post10/CMakeLists.txt +147 -0
- clingo_funasp-6.0.0.post10/DEVELOP.md +60 -0
- clingo_funasp-6.0.0.post10/LICENSE.md +21 -0
- clingo_funasp-6.0.0.post10/Makefile +133 -0
- clingo_funasp-6.0.0.post10/PKG-INFO +203 -0
- clingo_funasp-6.0.0.post10/README.md +185 -0
- clingo_funasp-6.0.0.post10/STYLE.md +69 -0
- clingo_funasp-6.0.0.post10/app/CMakeLists.txt +17 -0
- clingo_funasp-6.0.0.post10/app/main.cc +56 -0
- clingo_funasp-6.0.0.post10/bench/.gitignore +6 -0
- clingo_funasp-6.0.0.post10/bench/README.md +36 -0
- clingo_funasp-6.0.0.post10/bench/dispatch.sh +35 -0
- clingo_funasp-6.0.0.post10/bench/plot-cactus.py +36 -0
- clingo_funasp-6.0.0.post10/bench/plot.py +93 -0
- clingo_funasp-6.0.0.post10/bench/programs/clingo-6.0.0 +104 -0
- clingo_funasp-6.0.0.post10/bench/run.sh +95 -0
- clingo_funasp-6.0.0.post10/bench/runscripts/local.xml +686 -0
- clingo_funasp-6.0.0.post10/bench/templates/seq-generic.sh +12 -0
- clingo_funasp-6.0.0.post10/bench/templates/single.dist +22 -0
- clingo_funasp-6.0.0.post10/build.sh +13 -0
- clingo_funasp-6.0.0.post10/cmake/FindGperftools.cmake +76 -0
- clingo_funasp-6.0.0.post10/cmake/FindRE2C.cmake +112 -0
- clingo_funasp-6.0.0.post10/cmake/clingo-config.cmake.in +3 -0
- clingo_funasp-6.0.0.post10/cmake/clingo.map +4 -0
- clingo_funasp-6.0.0.post10/cmake/glob-paths.py +119 -0
- clingo_funasp-6.0.0.post10/cmake/macros.cmake +78 -0
- clingo_funasp-6.0.0.post10/cmake/pyclingo.map +4 -0
- clingo_funasp-6.0.0.post10/cmake/python-site.py +69 -0
- clingo_funasp-6.0.0.post10/doc/Doxyfile +2858 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/.github/workflows/publish.yaml +22 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/.gitignore +6 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/.npmignore +3 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/Doxyfile +2932 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/LICENSE +21 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/Makefile +39 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/README.md +207 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/customization.md +121 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/extensions.md +284 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/darkmode_toggle.png +0 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/fancy_scrollbars_firefox.png +0 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/fancy_scrollbars_webkit.gif +0 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/fragment_copy_button.png +0 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/interactive_toc_mobile.png +0 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/img/paragraph_link.png +0 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/docs/tricks.md +127 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js +157 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-fragment-copy-button.js +85 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-interactive-toc.js +91 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-paragraph-link.js +51 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-sidebar-only-darkmode-toggle.css +40 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-sidebar-only.css +116 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome-tabs.js +90 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-awesome.css +2683 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-custom/custom-alternative.css +54 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-custom/custom.css +57 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-custom/header.html +90 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/doxygen-custom/toggle-alternative-theme.js +12 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/img/screenshot.png +0 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/img/testimage.png +0 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/img/theme-variants-base.drawio.svg +117 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/img/theme-variants-sidebar-only.drawio.svg +102 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/include/MyLibrary/example.hpp +169 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/include/MyLibrary/subclass-example.hpp +46 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/logo.drawio.svg +1 -0
- clingo_funasp-6.0.0.post10/doc/doxygen-awesome-css/package.json +34 -0
- clingo_funasp-6.0.0.post10/doc/header.html +82 -0
- clingo_funasp-6.0.0.post10/doc/mainpage.hh +387 -0
- clingo_funasp-6.0.0.post10/examples/c-api/.clang-tidy +29 -0
- clingo_funasp-6.0.0.post10/examples/c-api/CMakeLists.txt +31 -0
- clingo_funasp-6.0.0.post10/examples/c-api/app.c +119 -0
- clingo_funasp-6.0.0.post10/examples/c-api/ast.c +149 -0
- clingo_funasp-6.0.0.post10/examples/c-api/backend.c +174 -0
- clingo_funasp-6.0.0.post10/examples/c-api/base-atoms.c +10 -0
- clingo_funasp-6.0.0.post10/examples/c-api/base-theory.c +10 -0
- clingo_funasp-6.0.0.post10/examples/c-api/config.c +10 -0
- clingo_funasp-6.0.0.post10/examples/c-api/control.c +92 -0
- clingo_funasp-6.0.0.post10/examples/c-api/ground.c +10 -0
- clingo_funasp-6.0.0.post10/examples/c-api/model.c +10 -0
- clingo_funasp-6.0.0.post10/examples/c-api/profile.c +10 -0
- clingo_funasp-6.0.0.post10/examples/c-api/propagate.c +8 -0
- clingo_funasp-6.0.0.post10/examples/c-api/solve.c +10 -0
- clingo_funasp-6.0.0.post10/examples/c-api/stats.c +10 -0
- clingo_funasp-6.0.0.post10/examples/c-api/symbol.c +129 -0
- clingo_funasp-6.0.0.post10/examples/c-api/theory.c +10 -0
- clingo_funasp-6.0.0.post10/examples/c-api/version.c +14 -0
- clingo_funasp-6.0.0.post10/examples/html/.envrc +1 -0
- clingo_funasp-6.0.0.post10/examples/html/LICENSE.md +21 -0
- clingo_funasp-6.0.0.post10/examples/html/css/main.css +475 -0
- clingo_funasp-6.0.0.post10/examples/html/examples/blocksworld-planning.lp +53 -0
- clingo_funasp-6.0.0.post10/examples/html/examples/flying-birds.lp +9 -0
- clingo_funasp-6.0.0.post10/examples/html/examples/graph-coloring.lp +16 -0
- clingo_funasp-6.0.0.post10/examples/html/examples/harry-and-sally.lp +6 -0
- clingo_funasp-6.0.0.post10/examples/html/examples/n-queens.lp +8 -0
- clingo_funasp-6.0.0.post10/examples/html/examples/pigeonator-propagator.lp +60 -0
- clingo_funasp-6.0.0.post10/examples/html/examples/traveling-salesperson.lp +27 -0
- clingo_funasp-6.0.0.post10/examples/html/index.html +87 -0
- clingo_funasp-6.0.0.post10/examples/html/js/ace.js +22 -0
- clingo_funasp-6.0.0.post10/examples/html/js/clingo.js +1 -0
- clingo_funasp-6.0.0.post10/examples/html/js/clingo.wasm +1 -0
- clingo_funasp-6.0.0.post10/examples/html/js/mode-clingo.js +631 -0
- clingo_funasp-6.0.0.post10/examples/html/js/module.js +94 -0
- clingo_funasp-6.0.0.post10/examples/html/js/worker.js +67 -0
- clingo_funasp-6.0.0.post10/examples/js/example.js +39 -0
- clingo_funasp-6.0.0.post10/examples/python-api/dependency/README.md +29 -0
- clingo_funasp-6.0.0.post10/examples/python-api/dependency/example.lp +6 -0
- clingo_funasp-6.0.0.post10/examples/python-api/dependency/example.py +421 -0
- clingo_funasp-6.0.0.post10/examples/python-api/dl/README.md +56 -0
- clingo_funasp-6.0.0.post10/examples/python-api/dl/app.py +524 -0
- clingo_funasp-6.0.0.post10/examples/python-api/dl/fsE.lp +19 -0
- clingo_funasp-6.0.0.post10/examples/python-api/dl/fsI.lp +4 -0
- clingo_funasp-6.0.0.post10/examples/python-api/match/README.md +23 -0
- clingo_funasp-6.0.0.post10/examples/python-api/match/example.py +489 -0
- clingo_funasp-6.0.0.post10/examples/python-api/order/README.md +16 -0
- clingo_funasp-6.0.0.post10/examples/python-api/order/example.lp +3 -0
- clingo_funasp-6.0.0.post10/examples/python-api/order/example.py +52 -0
- clingo_funasp-6.0.0.post10/examples/python-api/tmode/README.md +31 -0
- clingo_funasp-6.0.0.post10/examples/python-api/tmode/example.lp +16 -0
- clingo_funasp-6.0.0.post10/examples/python-api/tmode/example2.lp +8 -0
- clingo_funasp-6.0.0.post10/examples/python-api/tmode/tmode.py +246 -0
- clingo_funasp-6.0.0.post10/examples/python-api/variables/README.md +16 -0
- clingo_funasp-6.0.0.post10/examples/python-api/variables/example.py +75 -0
- clingo_funasp-6.0.0.post10/lib/CMakeLists.txt +13 -0
- clingo_funasp-6.0.0.post10/lib/c-api/CMakeLists.txt +130 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/.clang-tidy +25 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/app.h +178 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/ast.h +544 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/backend.h +244 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/base.h +489 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/config.h +249 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/control.h +244 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/core.h +423 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/ground.h +177 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/model.h +212 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/observe.h +175 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/profile.h +90 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/propagate.h +623 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/script.h +73 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/shared.h +40 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/solve.h +205 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/stats.h +219 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/symbol.h +274 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo/theory.h +176 -0
- clingo_funasp-6.0.0.post10/lib/c-api/include/clingo.h +17 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/.clang-tidy +24 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/ast.cc +2988 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/ast.hh +14 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/ast_yaml.cc +1248 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/backend.cc +301 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/base.cc +645 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/config.cc +303 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/control.cc +264 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/control.hh +90 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/core.cc +347 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/core.hh +29 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/ground.cc +125 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/lib.cc +138 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/lib.hh +143 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/main.cc +328 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/model.cc +154 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/observe.cc +253 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/opts.hh +256 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/profile.cc +33 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/propagate.cc +535 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/script.cc +74 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/solve.cc +153 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/stats.cc +276 -0
- clingo_funasp-6.0.0.post10/lib/c-api/src/symbol.cc +208 -0
- clingo_funasp-6.0.0.post10/lib/control/CMakeLists.txt +60 -0
- clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/aggregate.hh +21 -0
- clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/condlit.hh +20 -0
- clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/config.hh +370 -0
- clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/context.hh +234 -0
- clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/grounder.hh +77 -0
- clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/literal.hh +109 -0
- clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/parse.hh +216 -0
- clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/solver.hh +864 -0
- clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/statement.hh +15 -0
- clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/term.hh +32 -0
- clingo_funasp-6.0.0.post10/lib/control/include/clingo/control/theory.hh +20 -0
- clingo_funasp-6.0.0.post10/lib/control/src/aggregate.cc +385 -0
- clingo_funasp-6.0.0.post10/lib/control/src/condlit.cc +230 -0
- clingo_funasp-6.0.0.post10/lib/control/src/config.cc +403 -0
- clingo_funasp-6.0.0.post10/lib/control/src/context.cc +41 -0
- clingo_funasp-6.0.0.post10/lib/control/src/grounder.cc +479 -0
- clingo_funasp-6.0.0.post10/lib/control/src/solver.cc +1441 -0
- clingo_funasp-6.0.0.post10/lib/control/src/statement.cc +197 -0
- clingo_funasp-6.0.0.post10/lib/control/src/term.cc +220 -0
- clingo_funasp-6.0.0.post10/lib/control/src/theory.cc +125 -0
- clingo_funasp-6.0.0.post10/lib/control/tests/logger.cc +70 -0
- clingo_funasp-6.0.0.post10/lib/control/tests/text.cc +774 -0
- clingo_funasp-6.0.0.post10/lib/core/CMakeLists.txt +51 -0
- clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/backend.hh +305 -0
- clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/core.hh +205 -0
- clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/fstring.hh +117 -0
- clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/location.hh +136 -0
- clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/logger.hh +237 -0
- clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/number.hh +291 -0
- clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/output.hh +257 -0
- clingo_funasp-6.0.0.post10/lib/core/include/clingo/core/symbol.hh +620 -0
- clingo_funasp-6.0.0.post10/lib/core/src/core.cc +250 -0
- clingo_funasp-6.0.0.post10/lib/core/src/fstring.cc +300 -0
- clingo_funasp-6.0.0.post10/lib/core/src/number.cc +1101 -0
- clingo_funasp-6.0.0.post10/lib/core/src/symbol.cc +1182 -0
- clingo_funasp-6.0.0.post10/lib/core/tests/number.cc +166 -0
- clingo_funasp-6.0.0.post10/lib/core/tests/symbol.cc +287 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/.clang-tidy +26 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/CMakeLists.txt +114 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/app.hh +255 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/ast.hh +913 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/backend.hh +254 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/base.hh +824 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/config.hh +565 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/control.hh +737 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/core.hh +833 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/detail/ast.hh +295 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/ground.hh +140 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/observe.hh +195 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/profile.hh +66 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/propagate.hh +619 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/script.hh +146 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/solve.hh +564 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/stats.hh +485 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/symbol.hh +373 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/include/clingo/theory.hh +287 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/.clang-tidy +28 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/app.cc +74 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/app_error.cc +84 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/asp.cc +40 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/aspif.cc +447 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/ast.cc +966 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/backend.cc +218 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/base.cc +198 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/cbs.hh +35 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/config.cc +128 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/control.cc +192 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/core.cc +12 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/error.cc +158 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/incremental.cc +72 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/lp.hh +164 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/observe.cc +233 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/profile.cc +69 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/propagate.cc +436 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/script.cc +85 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/solve.cc +199 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/stats.cc +92 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/symbol.cc +103 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/tempfile.hh +86 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/theory.cc +204 -0
- clingo_funasp-6.0.0.post10/lib/cxx-api/tests/write_aspif.cc +140 -0
- clingo_funasp-6.0.0.post10/lib/ground/CMakeLists.txt +72 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/assignment_aggregate.hh +398 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/base.hh +465 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/body_aggregate.hh +448 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/condlit.hh +500 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/disjunction.hh +292 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/head_aggregate.hh +388 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/instantiator.hh +252 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/literal.hh +407 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/matcher.hh +627 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/profile.hh +311 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/program.hh +33 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/script.hh +46 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/statement.hh +348 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/term.hh +421 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/theory_atom.hh +334 -0
- clingo_funasp-6.0.0.post10/lib/ground/include/clingo/ground/theory_term.hh +137 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/assignment_aggregate.cc +751 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/base.cc +102 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/body_aggregate.cc +850 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/condlit.cc +696 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/disjunction.cc +478 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/head_aggregate.cc +716 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/instantiator.cc +236 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/literal.cc +928 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/matcher.cc +149 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/profile.cc +17 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/statement.cc +954 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/term.cc +1126 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/theory_atom.cc +471 -0
- clingo_funasp-6.0.0.post10/lib/ground/src/theory_term.cc +173 -0
- clingo_funasp-6.0.0.post10/lib/ground/tests/matcher.cc +300 -0
- clingo_funasp-6.0.0.post10/lib/input/CMakeLists.txt +133 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/aggregate.hh +129 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/attributes.hh +70 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/body_literal.hh +122 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/head_literal.hh +136 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/literal.hh +160 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/parser.hh +79 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/print.hh +405 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/program.hh +283 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/analyze.hh +192 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/check_syntax.hh +25 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/compute_bounds.hh +19 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/dependency.hh +71 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/evaluate.hh +29 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/iesolver.hh +137 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/project.hh +56 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/project_anonymous.hh +27 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/rewrite_anonymous.hh +30 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/rewrite_context.hh +195 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/rewrite_theory.hh +17 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/safety.hh +20 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/simplify.hh +83 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/substitute.hh +42 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/unpool.hh +27 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/unpool_relations.hh +24 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite/visit_variables.hh +71 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/rewrite.hh +20 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/statement.hh +837 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/term.hh +485 -0
- clingo_funasp-6.0.0.post10/lib/input/include/clingo/input/theory.hh +337 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/aspif.cc +731 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/assignment.cc +202 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/body_literal.cc +244 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/head_literal.cc +263 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/lexer_impl.xch +203 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/lexer_state.hh +202 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/literal.cc +101 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/parser_state.cc +2 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/parser_state.hh +945 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/statement.cc +1077 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/term.cc +984 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parse/theory.cc +346 -0
- clingo_funasp-6.0.0.post10/lib/input/src/parser.cc +123 -0
- clingo_funasp-6.0.0.post10/lib/input/src/print.cc +1500 -0
- clingo_funasp-6.0.0.post10/lib/input/src/program.cc +303 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/add_sign.cc +57 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/add_sign.hh +15 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/analyze.cc +580 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/check_syntax.cc +311 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/compute_bounds.cc +646 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/dependency.cc +898 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/evaluate.cc +485 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/iesolver.cc +279 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/project.cc +307 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/project_anonymous.cc +135 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/rewrite_anonymous.cc +67 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/rewrite_context.cc +251 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/rewrite_theory.cc +36 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/safety.cc +495 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/simplify.cc +1966 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/substitute.cc +660 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/transform.hh +302 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/unpool.cc +632 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/unpool.hh +147 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/unpool_relations.cc +412 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/visit.hh +190 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite/visit_variables.cc +136 -0
- clingo_funasp-6.0.0.post10/lib/input/src/rewrite.cc +101 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/aspif.cc +442 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/compute_bounds.cc +57 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/dependency.cc +213 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/evaluate.cc +129 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/iesolver.cc +48 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/parser.cc +489 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/program.cc +61 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/project.cc +112 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/project_anonymous.cc +93 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/rewrite_anonymous.cc +95 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/safety.cc +96 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/simplify.cc +391 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/test.hh +174 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/theory.cc +57 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/unpool.cc +209 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/unpool_relations.cc +108 -0
- clingo_funasp-6.0.0.post10/lib/input/tests/variables.cc +44 -0
- clingo_funasp-6.0.0.post10/lib/output/CMakeLists.txt +25 -0
- clingo_funasp-6.0.0.post10/lib/output/include/clingo/output/backend.hh +159 -0
- clingo_funasp-6.0.0.post10/lib/output/include/clingo/output/text.hh +15 -0
- clingo_funasp-6.0.0.post10/lib/output/src/backend.cc +1811 -0
- clingo_funasp-6.0.0.post10/lib/output/src/text.cc +566 -0
- clingo_funasp-6.0.0.post10/lib/python-api/CMakeLists.txt +123 -0
- clingo_funasp-6.0.0.post10/lib/python-api/include/embed.h +20 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/app.cc +444 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/app.hh +15 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/ast.cc +9891 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/ast.hh +36 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/backend.cc +654 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/backend.hh +74 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/base.cc +516 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/base.hh +184 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/clingo.cc +144 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/clingo.hh +9 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/config.cc +373 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/config.hh +57 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/control.cc +704 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/control.hh +211 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/core.cc +407 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/core.hh +192 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/embed.cc +13 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/ground.cc +151 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/ground.hh +39 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/iterable.hh +169 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/iterator.hh +194 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/module.cc +5 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/propagate.cc +918 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/propagate.hh +42 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/script.cc +435 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/script.hh +13 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/solve.cc +483 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/solve.hh +111 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/stats.cc +515 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/stats.hh +109 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/symbol.cc +393 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/symbol.hh +77 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/theory.cc +426 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/theory.hh +9 -0
- clingo_funasp-6.0.0.post10/lib/python-api/src/util.hh +441 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/__init__.pyi +142 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/app.pyi +269 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/ast.pyi +7467 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/backend.pyi +558 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/base.pyi +529 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/config.pyi +245 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/control.pyi +454 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/core.pyi +221 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/ground.pyi +137 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/propagate.pyi +763 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/script.pyi +164 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/solve.pyi +398 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/stats.pyi +329 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/symbol.pyi +237 -0
- clingo_funasp-6.0.0.post10/lib/python-api/stubs/theory.pyi +263 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-01.lp +8 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-02.lp +9 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-03.lp +7 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-04.lp +3 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-05.lp +3 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-06.lp +3 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-07.lp +3 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-08.lp +5 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-09.lp +6 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-10.lp +13 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-11.lp +11 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-12.lp +16 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-13.lp +10 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/aggr-14.lp +27 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/bug-01.lp +10 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-01.lp +7 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-02.lp +11 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-03.lp +65 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-04.lp +13 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-05.lp +13 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-06.lp +13 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-07.lp +5 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-08.lp +6 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/cond-09.lp +8 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-01.lp +7 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-02.lp +6 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-03.lp +8 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-04.lp +10 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-05.lp +4 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-06.lp +7 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-07.lp +30 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-08.lp +6 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/disj-09.lp +5 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/edge-01.lp +8 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/neg-01.lp +4 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/neg-02.lp +3 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-01.lp +115 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-02.lp +7 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-03.lp +5 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-04.lp +65 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-05.lp +7 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-06.lp +19 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-07.lp +23 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-08.lp +7 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-09.lp +10 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-10.lp +34 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-11.lp +21 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-12.lp +9 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-13.lp +12 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-14.lp +12 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/prg-15.lp +12 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/project-01.lp +16 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/project-02.lp +9 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/project-03.lp +4 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/project-04.lp +7 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/rewrite-01.lp +4 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/show-01.lp +17 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/resources/show-02.lp +5 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_app.py +163 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_asp.py +48 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_aspif.py +542 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_ast.py +1080 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_backend.py +206 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_base.py +198 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_config.py +195 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_control.py +198 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_core.py +24 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_error.py +329 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_incremental.py +97 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_observe.py +254 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_parse_assignments.py +39 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_profile.py +85 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_propagate.py +549 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_script.py +156 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_solve.py +272 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_stats.py +193 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_symbol.py +129 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/test_write_aspif.py +215 -0
- clingo_funasp-6.0.0.post10/lib/python-api/tests/util.py +31 -0
- clingo_funasp-6.0.0.post10/lib/util/CMakeLists.txt +55 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/algorithm.hh +107 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/checked_math.hh +216 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/debug.hh +51 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/enum.hh +58 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/enumerate.hh +159 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/graph.hh +134 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/hash.hh +373 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/immutable_array.hh +171 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/immutable_value.hh +163 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/index_sequence.hh +130 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/interval_set.hh +319 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/macro.hh +42 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/optional.hh +278 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/ordered_map.hh +20 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/ordered_set.hh +19 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/print.hh +341 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/record.hh +222 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/small_vector.hh +366 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/string.hh +80 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/sync.hh +33 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/type_traits.hh +18 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/unordered_map.hh +21 -0
- clingo_funasp-6.0.0.post10/lib/util/include/clingo/util/unordered_set.hh +20 -0
- clingo_funasp-6.0.0.post10/lib/util/tests/interval_set.cc +259 -0
- clingo_funasp-6.0.0.post10/lib/util/tests/record.cc +41 -0
- clingo_funasp-6.0.0.post10/pyproject.toml +61 -0
- clingo_funasp-6.0.0.post10/pyrightconfig.json +4 -0
- clingo_funasp-6.0.0.post10/rebase.sh +9 -0
- clingo_funasp-6.0.0.post10/scripts/_record_declare_cpp.j2 +41 -0
- clingo_funasp-6.0.0.post10/scripts/_record_define_cpp.j2 +148 -0
- clingo_funasp-6.0.0.post10/scripts/ast_module.j2 +819 -0
- clingo_funasp-6.0.0.post10/scripts/compdb-cpp-headers.py +15 -0
- clingo_funasp-6.0.0.post10/scripts/cpp_yaml.py +79 -0
- clingo_funasp-6.0.0.post10/scripts/format_yaml.py +12 -0
- clingo_funasp-6.0.0.post10/scripts/generate.py +238 -0
- clingo_funasp-6.0.0.post10/scripts/pgo.py +282 -0
- clingo_funasp-6.0.0.post10/scripts/reduce.py +105 -0
- clingo_funasp-6.0.0.post10/scripts/stubs.py +356 -0
- clingo_funasp-6.0.0.post10/scripts/watch.sh +45 -0
- clingo_funasp-6.0.0.post10/third_party/.clang-tidy +6 -0
- clingo_funasp-6.0.0.post10/third_party/CMakeLists.txt +41 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/.clang-format +36 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/.git +1 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/.github/workflows/test.yml +108 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/.github/workflows/vcpkg_deps.txt +1 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/.gitignore +5 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/.gitmodules +3 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/.pre-commit-config.yaml +25 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/CHANGES +799 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/CMakeLists.txt +186 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/LICENSE +21 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/README.md +127 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/app/CMakeLists.txt +20 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/app/main.cpp +46 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/asp_preprocessor.h +118 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cb_enumerator.h +66 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/clasp_facade.h +520 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/claspfwd.h +60 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/clause.h +558 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cli/clasp_app.h +253 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cli/clasp_cli_configs.inl +94 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cli/clasp_cli_options.inl +629 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cli/clasp_options.h +270 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/cli/clasp_output.h +553 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/clingo.h +244 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/config.h.in +118 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/constraint.h +653 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/dependency_graph.h +531 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/enumerator.h +424 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/heuristics.h +401 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/literal.h +270 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/logic_program.h +851 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/logic_program_types.h +774 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/lookahead.h +267 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/minimize_constraint.h +623 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/model_enumerators.h +123 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/mt/parallel_solve.h +341 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/mt/thread.h +46 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/parser.h +201 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/pod_vector.h +136 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/program_builder.h +259 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/satelite.h +168 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/shared_context.h +1079 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/solve_algorithms.h +309 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/solver.h +1207 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/solver_strategies.h +768 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/solver_types.h +846 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/statistics.h +326 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/unfounded_check.h +251 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/indexed_priority_queue.h +350 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/left_right_sequence.h +352 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/misc_types.h +486 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/multi_queue.h +254 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/pod_vector.h +626 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/util/timer.h +88 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/clasp/weight_constraint.h +230 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/cmake/ClaspConfig.cmake.in +11 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/create-archive.sh +13 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/doc/api/clasp.doxy +2363 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/doc/api/clasp.txt +33 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/doc/api/layout.css +74 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/doc/api/layout.xml +194 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/doc/api/potassco-logo.png +0 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/doc/output.md +277 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/examples/CMakeLists.txt +10 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/examples/example.h +40 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/examples/example1.cpp +122 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/examples/example2.cpp +87 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/examples/example3.cpp +67 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/examples/example4.cpp +60 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/examples/main.cpp +56 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.clang-format +36 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.git +1 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.github/workflows/test.yml +62 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.gitignore +5 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.gitmodules +6 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/.pre-commit-config.yaml +25 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/CMakeLists.txt +135 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/LICENSE +21 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/README.md +66 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/app/CMakeLists.txt +14 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/app/lpconvert.cpp +186 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/cmake/PotasscoConfig.cmake.in +5 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/doc/Doxyfile +2406 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/doc/layout.css +74 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/doc/layout.xml +194 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/doc/potassco-logo.png +0 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/application.h +232 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/aspif.h +198 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/aspif_text.h +118 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/basic_types.h +264 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/bits.h +235 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/clingo.h +403 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/convert.h +101 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/enum.h +407 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/error.h +207 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/format.h +532 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/graph.h +137 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/match_basic_types.h +224 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/platform.h +200 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/errors.h +97 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/intrusive_ptr.h +73 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/program_options.h +578 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/string_convert.h +210 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/typed_value.h +235 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/program_opts/value.h +240 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/reify.h +132 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/rule_utils.h +169 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/smodels.h +198 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/theory_data.h +324 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/potassco/utils.h +340 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/CMakeLists.txt +73 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/application.cpp +495 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/aspif.cpp +503 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/aspif_text.cpp +835 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/clingo.cpp +67 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/convert.cpp +399 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/error.cpp +117 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/match_basic_types.cpp +357 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/platform.cpp +312 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/program_options.cpp +904 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/reify.cpp +323 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/rule_utils.cpp +259 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/smodels.cpp +474 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/string_convert.cpp +336 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/theory_data.cpp +297 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/src/utils.cpp +210 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/CMakeLists.txt +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_application.cpp +426 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_aspif.cpp +1787 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_common.h +98 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_error.cpp +353 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_graph.cpp +151 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_options.cpp +1010 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_reify.cpp +236 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_smodels.cpp +745 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_string_convert.cpp +544 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/tests/test_text.cpp +846 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/.clang-format +5 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.bazelrc +12 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.clang-format +45 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.clang-tidy +82 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.conan/build.py +94 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.conan/test_package/CMakeLists.txt +7 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.conan/test_package/conanfile.py +40 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.conan/test_package/test_package.cpp +13 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.git +1 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.gitattributes +22 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/FUNDING.yml +2 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/ISSUE_TEMPLATE/bug_report.md +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/ISSUE_TEMPLATE/feature_request.md +14 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/pull_request_template.md +28 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/linux-bazel-builds.yml +24 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/linux-meson-builds.yml +44 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/linux-other-builds.yml +125 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/linux-simple-builds.yml +105 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/mac-builds.yml +30 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/package-manager-builds.yaml +31 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/validate-header-guards.yml +36 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.github/workflows/windows-simple-builds.yml +31 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/.gitignore +40 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/BUILD.bazel +117 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/Catch2Config.cmake.in +9 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/CatchConfigOptions.cmake +91 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/CatchMiscFunctions.cmake +121 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/FindGcov.cmake +157 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/FindLcov.cmake +354 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/Findcodecov.cmake +258 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/catch2-with-main.pc.in +10 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/catch2.pc.in +11 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMake/llvm-cov-wrapper +56 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMakeLists.txt +230 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CMakePresets.json +40 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/CODE_OF_CONDUCT.md +46 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/Doxyfile +2650 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/LICENSE.txt +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/MAINTAINERS.md +11 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/MODULE.bazel +5 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/README.md +114 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/SECURITY.md +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/appveyor.yml +83 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/benchmarks/CMakeLists.txt +16 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/benchmarks/assertion_listener.cpp +28 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/benchmarks/runtime_assertion_benches.cpp +27 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/codecov.yml +22 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/conanfile.py +129 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/data/artwork/catch2-c-logo.svg +105 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/data/artwork/catch2-hand-logo.svg +83 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/data/artwork/catch2-logo-full-with-background.svg +104 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/data/artwork/catch2-logo-full.svg +88 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/data/sponsors/github_repo_sponsorship.png +0 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/Readme.md +44 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/assertions.md +182 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/benchmarks.md +251 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/ci-and-misc.md +117 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/cmake-integration.md +442 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/command-line.md +670 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/commercial-users.md +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/comparing-floating-point-numbers.md +192 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/configuration.md +341 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/contributing.md +342 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/deprecations.md +53 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/event-listeners.md +44 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/faq.md +113 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/generators.md +284 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/limitations.md +157 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/list-of-examples.md +47 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/logging.md +161 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/matchers.md +476 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/migrate-v2-to-v3.md +98 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/opensource-users.md +159 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/other-macros.md +131 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/own-main.md +133 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/release-notes.md +2018 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/release-process.md +66 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/reporter-events.md +175 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/reporters.md +218 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/skipping-passing-failing.md +149 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/test-cases-and-sections.md +346 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/test-fixtures.md +291 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/thread-safety.md +229 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/tostring.md +132 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/tutorial.md +228 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/usage-tips.md +100 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/docs/why-catch.md +59 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/010-TestCase.cpp +41 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/020-TestCase-1.cpp +37 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/020-TestCase-2.cpp +41 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/030-Asn-Require-Check.cpp +82 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/100-Fix-Section.cpp +78 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/110-Fix-ClassFixture.cpp +74 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/111-Fix-PersistentFixture.cpp +74 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/120-Bdd-ScenarioGivenWhenThen.cpp +81 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/210-Evt-EventListeners.cpp +436 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/231-Cfg-OutputStreams.cpp +63 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/232-Cfg-CustomMain.cpp +41 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/300-Gen-OwnGenerator.cpp +77 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/301-Gen-MapTypeConversion.cpp +69 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/302-Gen-Table.cpp +63 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/310-Gen-VariablesInGenerators.cpp +43 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/311-Gen-CustomCapture.cpp +51 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/examples/CMakeLists.txt +58 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/Catch.cmake +318 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/CatchAddTests.cmake +253 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/CatchShardTests.cmake +72 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/CatchShardTestsImpl.cmake +52 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/ParseAndAddCatchTests.cmake +250 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/catch_amalgamated.cpp +12180 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/catch_amalgamated.hpp +14341 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/gdbinit +16 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/extras/lldbinit +16 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/CMakeLists.txt +20 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/NullOStream.cpp +18 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/NullOStream.h +28 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/build_fuzzers.sh +33 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/fuzz_TestSpecParser.cpp +22 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/fuzz_XmlWriter.cpp +22 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/fuzzing/fuzz_textflow.cpp +53 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/mdsnippets.json +9 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/meson.build +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/meson_options.txt +2 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/CMakeLists.txt +480 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_benchmark.hpp +146 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_benchmark_all.hpp +46 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_chronometer.cpp +17 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_chronometer.hpp +77 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_clock.hpp +27 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_constructor.hpp +82 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_environment.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_estimate.hpp +25 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_execution_plan.hpp +58 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_optimizer.hpp +78 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_outlier_classification.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/catch_sample_analysis.hpp +31 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_analyse.cpp +85 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_analyse.hpp +27 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_benchmark_function.cpp +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_benchmark_function.hpp +87 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_benchmark_stats.hpp +48 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_benchmark_stats_fwd.hpp +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_complete_invoke.hpp +58 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_estimate_clock.hpp +126 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_measure.hpp +32 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_repeat.hpp +36 -0
- 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
- 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
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_stats.cpp +393 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_stats.hpp +60 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/benchmark/detail/catch_timing.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_all.hpp +140 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_approx.cpp +85 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_approx.hpp +128 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_assertion_info.hpp +28 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_assertion_result.cpp +105 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_assertion_result.hpp +60 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_case_sensitive.hpp +17 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_config.cpp +273 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_config.hpp +157 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_get_random_seed.cpp +18 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_get_random_seed.hpp +18 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_message.cpp +114 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_message.hpp +149 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_registry_hub.cpp +105 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_section_info.hpp +42 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_session.cpp +413 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_session.hpp +70 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_tag_alias.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_tag_alias_autoregistrar.cpp +24 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_tag_alias_autoregistrar.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_template_test_macros.hpp +124 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_case_info.cpp +262 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_case_info.hpp +142 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_macros.hpp +243 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_run_info.hpp +22 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_spec.cpp +141 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_test_spec.hpp +119 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_timer.cpp +37 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_timer.hpp +27 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_tostring.cpp +294 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_tostring.hpp +651 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_totals.cpp +65 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_totals.hpp +41 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_translate_exception.cpp +20 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_translate_exception.hpp +88 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_user_config.hpp.in +247 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_version.cpp +43 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_version.hpp +39 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/catch_version_macros.hpp +15 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generator_exception.cpp +17 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generator_exception.hpp +31 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators.cpp +42 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators.hpp +244 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators_adapters.hpp +242 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators_all.hpp +30 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators_random.cpp +41 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators_random.hpp +107 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/generators/catch_generators_range.hpp +111 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_all.hpp +37 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_capture.cpp +20 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_capture.hpp +118 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_config.cpp +13 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_config.hpp +99 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_enum_values_registry.hpp +47 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_exception.cpp +14 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_exception.hpp +36 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_generatortracker.cpp +32 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_generatortracker.hpp +90 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_registry_hub.cpp +14 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_registry_hub.hpp +66 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_reporter.cpp +93 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_reporter.hpp +227 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.cpp +14 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_reporter_factory.hpp +45 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_tag_alias_registry.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_test_invoker.hpp +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_testcase.cpp +13 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/interfaces/catch_interfaces_testcase.hpp +30 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_assertion_handler.cpp +82 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_assertion_handler.hpp +68 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_case_insensitive_comparisons.cpp +35 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_case_insensitive_comparisons.hpp +30 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_clara.cpp +464 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_clara.hpp +748 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_commandline.cpp +317 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_commandline.hpp +21 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_compare_traits.hpp +75 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_compiler_capabilities.hpp +467 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_android_logwrite.hpp +33 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_counter.hpp +34 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_prefix_messages.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_static_analysis_support.hpp +34 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_uncaught_exceptions.hpp +46 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_config_wchar.hpp +35 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_console_colour.cpp +288 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_console_colour.hpp +141 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_console_width.hpp +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_container_nonmembers.hpp +73 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_context.cpp +24 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_context.hpp +47 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_debug_console.cpp +45 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_debug_console.hpp +17 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_debugger.cpp +120 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_debugger.hpp +78 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_decomposer.cpp +28 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_decomposer.hpp +467 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_deprecation_macro.hpp +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_enforce.cpp +41 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_enforce.hpp +54 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_enum_values_registry.cpp +73 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_enum_values_registry.hpp +36 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_errno_guard.cpp +16 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_errno_guard.hpp +27 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_exception_translator_registry.cpp +87 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_exception_translator_registry.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_fatal_condition_handler.cpp +248 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_fatal_condition_handler.hpp +66 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_floating_point_helpers.cpp +43 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_floating_point_helpers.hpp +108 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_getenv.cpp +37 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_getenv.hpp +20 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_is_permutation.hpp +141 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_istream.cpp +152 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_istream.hpp +52 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_jsonwriter.cpp +165 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_jsonwriter.hpp +121 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_lazy_expr.cpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_lazy_expr.hpp +40 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_leak_detector.cpp +38 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_leak_detector.hpp +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_lifetimebound.hpp +24 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_list.cpp +120 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_list.hpp +43 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_logical_traits.hpp +44 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_main.cpp +39 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_message_info.cpp +30 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_message_info.hpp +44 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_meta.hpp +47 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_move_and_forward.hpp +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_noncopyable.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_optional.hpp +117 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_output_redirect.cpp +339 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_output_redirect.hpp +77 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_parse_numbers.cpp +52 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_parse_numbers.hpp +26 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_platform.hpp +43 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_polyfills.cpp +42 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_polyfills.hpp +21 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_preprocessor.hpp +247 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_preprocessor_internal_stringify.hpp +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_preprocessor_remove_parens.hpp +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_floating_point_helpers.hpp +94 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_integer_helpers.hpp +224 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_number_generator.cpp +78 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_number_generator.hpp +59 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_seed_generation.cpp +35 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_random_seed_generation.hpp +26 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reporter_registry.cpp +91 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reporter_registry.hpp +55 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reporter_spec_parser.cpp +173 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reporter_spec_parser.hpp +85 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_result_type.hpp +66 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reusable_string_stream.cpp +70 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_reusable_string_stream.hpp +57 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_run_context.cpp +905 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_run_context.hpp +167 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_section.cpp +60 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_section.hpp +104 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_sharding.hpp +40 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_singletons.cpp +36 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_singletons.hpp +45 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_source_line_info.cpp +33 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_source_line_info.hpp +37 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_startup_exception_registry.cpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_startup_exception_registry.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_stdstreams.cpp +24 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_stdstreams.hpp +22 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_stream_end_stop.hpp +30 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_string_manip.cpp +116 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_string_manip.hpp +62 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_stringref.cpp +65 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_stringref.hpp +126 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_tag_alias_registry.cpp +54 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_tag_alias_registry.hpp +33 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_template_test_registry.hpp +337 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_info_hasher.cpp +39 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_info_hasher.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_registry_impl.cpp +153 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_registry_impl.hpp +59 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_tracker.cpp +239 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_case_tracker.hpp +245 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_failure_exception.cpp +31 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_failure_exception.hpp +34 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_macro_impl.hpp +155 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_registry.cpp +84 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_registry.hpp +222 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_spec_parser.cpp +239 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_test_spec_parser.hpp +81 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_textflow.cpp +379 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_textflow.hpp +298 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_thread_local.hpp +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_thread_support.hpp +49 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_to_string.hpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_uncaught_exceptions.cpp +25 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_uncaught_exceptions.hpp +15 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_uniform_floating_point_distribution.hpp +131 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_uniform_integer_distribution.hpp +108 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_unique_name.hpp +20 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_unique_ptr.hpp +118 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_unreachable.hpp +56 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_void_type.hpp +25 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_wildcard_pattern.cpp +47 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_wildcard_pattern.hpp +38 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_windows_h_proxy.hpp +28 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_xmlwriter.cpp +344 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/internal/catch_xmlwriter.hpp +164 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers.cpp +25 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers.hpp +253 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_all.hpp +36 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_container_properties.cpp +34 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_container_properties.hpp +90 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_contains.hpp +102 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_exception.cpp +26 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_exception.hpp +61 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_floating_point.cpp +226 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_floating_point.hpp +94 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_predicate.cpp +17 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_predicate.hpp +59 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_quantifiers.cpp +24 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_quantifiers.hpp +165 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_range_equals.hpp +160 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_string.cpp +114 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_string.hpp +85 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_templated.cpp +41 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_templated.hpp +308 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/catch_matchers_vector.hpp +194 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/internal/catch_matchers_impl.cpp +25 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/matchers/internal/catch_matchers_impl.hpp +109 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/meson.build +404 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_automake.cpp +37 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_automake.hpp +40 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_common_base.cpp +49 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_common_base.hpp +79 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_compact.cpp +255 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_compact.hpp +42 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_console.cpp +670 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_console.hpp +65 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_cumulative_base.cpp +158 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_cumulative_base.hpp +151 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_event_listener.cpp +40 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_event_listener.hpp +60 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_helpers.cpp +364 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_helpers.hpp +95 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_json.cpp +373 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_json.hpp +94 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_junit.cpp +310 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_junit.hpp +56 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_multi.cpp +199 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_multi.hpp +77 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_registrars.cpp +36 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_registrars.hpp +133 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_sonarqube.cpp +162 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_sonarqube.hpp +60 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_streaming_base.cpp +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_streaming_base.hpp +73 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_tap.cpp +229 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_tap.hpp +43 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_teamcity.cpp +177 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_teamcity.hpp +67 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_xml.cpp +332 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporter_xml.hpp +64 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/src/catch2/reporters/catch_reporters_all.hpp +41 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/BUILD.bazel +86 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/CMakeLists.txt +692 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/CMakeLists.txt +591 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/ToDo.txt +10 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X01-PrefixedMacros.cpp +97 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X02-DisabledMacros.cpp +79 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X03-DisabledExceptions-DefaultHandler.cpp +39 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X04-DisabledExceptions-CustomHandler.cpp +40 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X05-DeferredStaticChecks.cpp +21 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X06-MixingClearedAndUnclearedMessages.cpp +27 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X10-FallbackStringifier.cpp +35 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X11-DisableStringification.cpp +27 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X12-CustomDebugBreakMacro.cpp +26 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X20-AssertionStartingEventGoesBeforeAssertionIsEvaluated.cpp +77 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X21-PartialTestCaseEvents.cpp +74 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X22-BenchmarksInCumulativeReporter.cpp +79 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X23-CasingInReporterNames.cpp +41 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X24-ListenerStdoutCaptureInMultireporter.cpp +40 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X25-ListenerCanAskForCapturedStdout.cpp +47 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X26-ReporterPreferencesForPassingAssertionsIsRespected.cpp +52 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X27-CapturedStdoutInTestCaseEvents.cpp +82 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X28-ListenersGetEventsBeforeReporters.cpp +99 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X29-CustomArgumentsForReporters.cpp +60 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X30-BazelReporter.cpp +17 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X31-DuplicatedTestCases.cpp +16 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X32-DuplicatedTestCasesDifferentTags.cpp +17 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X33-DuplicatedTestCaseMethods.cpp +22 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X34-DuplicatedTestCaseMethodsDifferentFixtures.cpp +27 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X35-DuplicatedReporterNames.cpp +31 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X36-ReportingCrashWithJunitReporter.cpp +32 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X40-QuickExit.cpp +28 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X90-WindowsHeaderInclusion.cpp +21 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X91-AmalgamatedCatch.cpp +38 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X92-NoTests.cpp +11 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X93-AllSkipped.cpp +16 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/ExtraTests/X94-ThreadSafetyTests.cpp +64 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/automake.std.approved.txt +168 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/automake.sw.approved.txt +447 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/automake.sw.multi.approved.txt +436 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/compact.sw.approved.txt +2896 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/compact.sw.multi.approved.txt +2885 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/console.std.approved.txt +1735 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/console.sw.approved.txt +19316 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/console.sw.multi.approved.txt +19305 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/console.swa4.approved.txt +973 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/default.sw.multi.approved.txt +11 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/junit.sw.approved.txt +2419 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/junit.sw.multi.approved.txt +2418 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/sonarqube.sw.approved.txt +2427 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt +2426 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/tap.sw.approved.txt +4635 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/tap.sw.multi.approved.txt +4624 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/teamcity.sw.approved.txt +1071 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt +1070 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/xml.sw.approved.txt +22354 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Baselines/xml.sw.multi.approved.txt +22353 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Algorithms.tests.cpp +94 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/AssertionHandler.tests.cpp +42 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Clara.tests.cpp +88 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/CmdLine.tests.cpp +467 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/CmdLineHelpers.tests.cpp +111 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/ColourImpl.tests.cpp +64 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Details.tests.cpp +234 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/FloatingPoint.tests.cpp +139 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp +588 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Integer.tests.cpp +224 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/InternalBenchmark.tests.cpp +455 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Json.tests.cpp +178 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Parse.tests.cpp +38 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/PartTracker.tests.cpp +254 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/RandomNumberGeneration.tests.cpp +609 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Reporters.tests.cpp +330 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Sharding.tests.cpp +45 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Stream.tests.cpp +32 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/String.tests.cpp +212 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/StringManip.tests.cpp +94 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Tag.tests.cpp +117 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/TestCaseInfoHasher.tests.cpp +72 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/TestSpec.tests.cpp +365 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/TestSpecParser.tests.cpp +55 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/TextFlow.tests.cpp +400 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/ToString.tests.cpp +166 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Traits.tests.cpp +45 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/UniquePtr.tests.cpp +141 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/IntrospectiveTests/Xml.tests.cpp +203 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Misc/invalid-test-names.input +1 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Misc/plain-old-tests.input +2 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/Misc/special-characters-in-file.input +1 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/TestRegistrations.cpp +181 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/TimingTests/Sleep.tests.cpp +24 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Approx.tests.cpp +218 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/BDD.tests.cpp +106 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Benchmark.tests.cpp +173 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Class.tests.cpp +159 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Compilation.tests.cpp +542 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Condition.tests.cpp +334 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Decomposition.tests.cpp +41 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/EnumToString.tests.cpp +108 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Exception.tests.cpp +204 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Generators.tests.cpp +323 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Matchers.tests.cpp +1144 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/MatchersRanges.tests.cpp +936 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Message.tests.cpp +371 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Misc.tests.cpp +576 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Skip.tests.cpp +100 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringByte.tests.cpp +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringChrono.tests.cpp +57 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringGeneral.tests.cpp +200 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringOptional.tests.cpp +35 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringPair.tests.cpp +38 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringTuple.tests.cpp +54 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringVariant.tests.cpp +99 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringVector.tests.cpp +94 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/ToStringWhich.tests.cpp +186 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/Tricky.tests.cpp +362 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/UsageTests/VariadicMacros.tests.cpp +29 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/helpers/parse_test_spec.cpp +22 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/helpers/parse_test_spec.hpp +20 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/helpers/range_test_helpers.hpp +210 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/SelfTest/helpers/type_with_lit_0_comparisons.hpp +55 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/ConfigureTestsCommon.py +75 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/DiscoverTests/CMakeLists.txt +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/DiscoverTests/VerifyRegistration.py +175 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/DiscoverTests/register-tests.cpp +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testBazelExitGuardFile.py +88 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testBazelReporter.py +104 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testBazelSharding.py +80 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testConfigureDefaultReporter.py +50 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testConfigureDisable.py +48 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testConfigureDisableStringification.py +44 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testConfigureExperimentalRedirect.py +49 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testPartialTestCaseEvent.py +79 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testRandomOrder.py +77 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testSectionFiltering.py +128 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/TestScripts/testSharding.py +165 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tests/meson.build +77 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/third_party/clara.hpp +1267 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/CMakeLists.txt +8 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/SelfTest.vcxproj.user +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/appveyorBuildConfigurationScript.bat +21 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/appveyorMergeCoverageScript.py +9 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/appveyorTestRunScript.bat +17 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/coverage-helper.cpp +142 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/misc/installOpenCppCoverage.ps1 +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/approvalTests.py +243 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/approve.py +31 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/buildAndTest.cmd +16 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/buildAndTest.sh +18 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/checkConvenienceHeaders.py +151 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/checkDuplicateFilenames.py +14 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/checkLicense.py +46 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/developBuild.py +9 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/extractFeaturesFromReleaseNotes.py +92 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/fixWhitespace.py +51 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/generateAmalgamatedFiles.py +139 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/majorRelease.py +9 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/minorRelease.py +9 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/patchRelease.py +9 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/releaseCommon.py +143 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/scriptCommon.py +4 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/updateDocumentSnippets.py +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/Catch2/tools/scripts/updateDocumentToC.py +447 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.clang-format +2 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.git +1 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/workflows/clang-format-check.yml +25 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/workflows/codeql-analysis.yml +67 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/workflows/macos.yml +23 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/workflows/ubuntu.yml +114 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.github/workflows/windows.yml +55 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/.gitignore +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/CMakeLists.txt +113 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/CODE_OF_CONDUCT.md +128 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/LICENSE +21 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/README.md +325 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/benchmark/CMakeLists.txt +45 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/benchmark/benchhelpers.hpp +27 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/benchmark/sets_benchmark.cpp +158 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/benchmark/vectors_benchmark.cpp +301 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/cmake/amcConfig.cmake.in +4 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/docs/set_bench_int.svg +66 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/docs/set_bench_reloctype.svg +49 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/docs/vector_bench_reloctype.svg +62 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/algorithm.hpp +49 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/allocator.hpp +173 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/config.hpp +71 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/fixedcapacityvector.hpp +93 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/flatset.hpp +497 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/hasreallocate.hpp +19 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/isdetected.hpp +60 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/istransparent.hpp +15 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/memory.hpp +524 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/smallset.hpp +670 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/smallvector.hpp +143 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/type_traits.hpp +111 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/utility.hpp +18 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/vector.hpp +37 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/include/amc/vectorcommon.hpp +1520 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/CMakeLists.txt +57 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/amc_isdetected_test.cpp +42 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/sets_test.cpp +566 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/testhelpers.hpp +17 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/testtypes.hpp +384 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/libpotassco/third_party/amc/test/vectors_test.cpp +685 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/CMakeLists.txt +155 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/asp_preprocessor.cpp +595 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/cb_enumerator.cpp +378 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/clasp_app.cpp +946 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/clasp_facade.cpp +1318 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/clasp_options.cpp +1412 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/clasp_output.cpp +1810 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/clause.cpp +1263 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/clingo.cpp +667 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/constraint.cpp +123 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/dependency_graph.cpp +1214 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/enumerator.cpp +435 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/heuristics.cpp +1070 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/logic_program.cpp +2686 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/logic_program_types.cpp +1556 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/lookahead.cpp +432 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/minimize_constraint.cpp +1798 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/model_enumerators.cpp +372 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/parallel_solve.cpp +1278 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/parser.cpp +502 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/program_builder.cpp +473 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/satelite.cpp +687 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/shared_context.cpp +1330 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/solve_algorithms.cpp +610 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/solver.cpp +2123 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/solver_strategies.cpp +456 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/solver_types.cpp +199 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/statistics.cpp +363 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/timer.cpp +54 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/unfounded_check.cpp +860 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/src/weight_constraint.cpp +749 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/CMakeLists.txt +26 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/clause_creator_test.cpp +587 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/clause_test.cpp +1039 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/cli_test.cpp +2186 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/decision_heuristic_test.cpp +767 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/dependency_graph_test.cpp +352 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/dlp_builder_test.cpp +454 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/enumerator_test.cpp +556 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/facade_test.cpp +4314 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/literal_test.cpp +211 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/lpcompare.h +101 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/minimize_test.cpp +1145 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/parser_test.cpp +1182 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/program_builder_test.cpp +3198 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/rule_test.cpp +584 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/satelite_test.cpp +271 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/solver_test.cpp +2918 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/unfounded_check_test.cpp +563 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tests/weight_constraint_test.cpp +954 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tools/clasp-option-template.inl +260 -0
- clingo_funasp-6.0.0.post10/third_party/clasp/tools/generate-pcs.sh +67 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/.clang-format +1 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/.codecov.yml +5 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/.git +1 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/.github/workflows/ci.yml +120 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/CMakeLists.txt +77 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/LICENSE +21 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/README.md +342 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/cmake/tsl-hopscotch-mapConfig.cmake.in +9 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/doxygen.conf +2486 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/bhopscotch_map.h +814 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/bhopscotch_set.h +626 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/hopscotch_growth_policy.h +419 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/hopscotch_hash.h +1938 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/hopscotch_map.h +812 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/include/tsl/hopscotch_set.h +629 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/CMakeLists.txt +26 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/custom_allocator_tests.cpp +137 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/hopscotch_map_tests.cpp +1522 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/hopscotch_set_tests.cpp +175 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/main.cpp +26 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/policy_tests.cpp +97 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tests/utils.h +345 -0
- clingo_funasp-6.0.0.post10/third_party/hopscotch-map/tsl-hopscotch-map.natvis +87 -0
- clingo_funasp-6.0.0.post10/third_party/imath/.dockerignore +13 -0
- clingo_funasp-6.0.0.post10/third_party/imath/.git +1 -0
- clingo_funasp-6.0.0.post10/third_party/imath/.gitattributes +1 -0
- clingo_funasp-6.0.0.post10/third_party/imath/.github/workflows/unit-tests.yml +43 -0
- clingo_funasp-6.0.0.post10/third_party/imath/ChangeLog +583 -0
- clingo_funasp-6.0.0.post10/third_party/imath/LICENSE +20 -0
- clingo_funasp-6.0.0.post10/third_party/imath/Makefile +140 -0
- clingo_funasp-6.0.0.post10/third_party/imath/README.md +111 -0
- clingo_funasp-6.0.0.post10/third_party/imath/contrib/Makefile.msvc +84 -0
- clingo_funasp-6.0.0.post10/third_party/imath/contrib/README +3 -0
- clingo_funasp-6.0.0.post10/third_party/imath/doc.md +1199 -0
- clingo_funasp-6.0.0.post10/third_party/imath/doc.md.in +394 -0
- clingo_funasp-6.0.0.post10/third_party/imath/examples/basecvt.c +117 -0
- clingo_funasp-6.0.0.post10/third_party/imath/examples/findprime.c +67 -0
- clingo_funasp-6.0.0.post10/third_party/imath/examples/imcalc.c +1133 -0
- clingo_funasp-6.0.0.post10/third_party/imath/examples/input.c +116 -0
- clingo_funasp-6.0.0.post10/third_party/imath/examples/pi.c +179 -0
- clingo_funasp-6.0.0.post10/third_party/imath/examples/randprime.c +239 -0
- clingo_funasp-6.0.0.post10/third_party/imath/examples/rounding.c +83 -0
- clingo_funasp-6.0.0.post10/third_party/imath/examples/rsakey.c +303 -0
- clingo_funasp-6.0.0.post10/third_party/imath/gmp_compat.c +824 -0
- clingo_funasp-6.0.0.post10/third_party/imath/gmp_compat.h +229 -0
- clingo_funasp-6.0.0.post10/third_party/imath/imath.c +2782 -0
- clingo_funasp-6.0.0.post10/third_party/imath/imath.h +421 -0
- clingo_funasp-6.0.0.post10/third_party/imath/imdrover.c +1463 -0
- clingo_funasp-6.0.0.post10/third_party/imath/imdrover.h +111 -0
- clingo_funasp-6.0.0.post10/third_party/imath/imrat.c +943 -0
- clingo_funasp-6.0.0.post10/third_party/imath/imrat.h +271 -0
- clingo_funasp-6.0.0.post10/third_party/imath/imtest.c +425 -0
- clingo_funasp-6.0.0.post10/third_party/imath/imtimer.c +214 -0
- clingo_funasp-6.0.0.post10/third_party/imath/iprime.c +97 -0
- clingo_funasp-6.0.0.post10/third_party/imath/iprime.h +48 -0
- clingo_funasp-6.0.0.post10/third_party/imath/rsamath.c +148 -0
- clingo_funasp-6.0.0.post10/third_party/imath/rsamath.h +94 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/add.tc +848 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/bigmul.tc +10 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/bigsqr.tc +11 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/bintest.c +104 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/bug-qread.c +38 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/bug-swap.c +23 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/compare.tc +31 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/conv.tc +228 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/div.tc +963 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/egcd.tc +752 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/emod.tc +756 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/emodv.tc +305 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/expt.tc +154 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gcd.tc +761 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/.gitignore +10 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/Makefile +28 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/README +106 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/genctest.py +284 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/gendata.py +393 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/genpytest.py +138 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/gmp_custom_test.c +28 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/gmpapi.py +130 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/imath_custom_test.c +28 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/runtest +7 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/gmp-compat-test/runtest.py +128 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/imath-test.scm +172 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/init.tc +12 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/invmod.tc +452 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/isprime.tc +33 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/lcm.tc +780 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/linux/Dockerfile +14 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/mod.tc +754 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/mul.tc +864 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/neg.tc +9 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/pi1024.txt +1 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/pi1500-10.txt +1 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/pi1698-16.txt +1 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/pi4096-10.txt +1 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/qadd.tc +803 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/qaddz.tc +800 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/qdiv.tc +803 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/qdivz.tc +800 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/qmisc.tc +49 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/qmul.tc +803 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/qmulz.tc +800 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/qsub.tc +803 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/qsubz.tc +800 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/qtodec.tc +1303 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/root.tc +44 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/rtest.c +120 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/set.tc +12 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/sqr.tc +755 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/sub.tc +849 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/test.bc +155 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tests/test.sh +65 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tools/findthreshold.py +97 -0
- clingo_funasp-6.0.0.post10/third_party/imath/tools/mkdoc.py +212 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/.clang-format +1 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/.codecov.yml +5 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/.git +1 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/.github/workflows/ci.yml +120 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/CMakeLists.txt +74 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/LICENSE +21 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/README.md +449 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/cmake/tsl-ordered-mapConfig.cmake.in +9 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/doxygen.conf +2483 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/include/tsl/ordered_hash.h +1701 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/include/tsl/ordered_map.h +996 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/include/tsl/ordered_set.h +831 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/CMakeLists.txt +25 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/custom_allocator_tests.cpp +139 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/main.cpp +26 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/ordered_map_tests.cpp +1709 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/ordered_set_tests.cpp +167 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/tests/utils.h +358 -0
- clingo_funasp-6.0.0.post10/third_party/ordered-map/tsl-ordered-map.natvis +21 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.appveyor.yml +35 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.clang-format +38 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.clang-tidy +83 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.cmake-format.yaml +73 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.codespell-ignore-lines +36 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.git +1 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.gitattributes +1 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/CODEOWNERS +9 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/CONTRIBUTING.md +349 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +61 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/dependabot.yml +11 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/labeler.yml +13 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/labeler_merged.yml +8 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/matchers/pylint.json +32 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/pull_request_template.md +15 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/ci.yml +1357 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/configure.yml +85 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/docs-link.yml +41 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/format.yml +54 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/labeler.yml +25 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/nightlies.yml +59 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/pip.yml +118 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/reusable-standard.yml +98 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/tests-cibw.yml +95 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.github/workflows/upstream.yml +118 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.gitignore +54 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.pre-commit-config.yaml +158 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/.readthedocs.yml +20 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/CMakeLists.txt +425 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/CMakePresets.json +93 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/LICENSE +29 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/README.rst +215 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/SECURITY.md +13 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/Doxyfile +21 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/Makefile +192 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/_static/css/custom.css +3 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/chrono.rst +81 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/custom.rst +137 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/eigen.rst +310 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/functional.rst +109 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/index.rst +43 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/overview.rst +170 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/stl.rst +249 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/cast/strings.rst +296 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/classes.rst +1432 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/deadlock.md +391 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/deprecated.rst +179 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/embedding.rst +499 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/exceptions.rst +422 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/functions.rst +616 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/misc.rst +615 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/pycpp/index.rst +13 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/pycpp/numpy.rst +493 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/pycpp/object.rst +286 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/advanced/smart_ptrs.rst +179 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/basics.rst +316 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/benchmark.py +89 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/benchmark.rst +95 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/changelog.md +3389 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/classes.rst +652 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/cmake/index.rst +8 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/compiling.rst +731 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/conf.py +369 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/faq.rst +351 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/index.rst +49 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/installing.rst +105 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/limitations.rst +68 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/pybind11-logo.png +0 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/reference.rst +130 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/release.rst +135 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/requirements.in +7 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/requirements.txt +87 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/docs/upgrade.rst +748 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/attr.h +730 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/buffer_info.h +209 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/cast.h +2433 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/chrono.h +228 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/common.h +2 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/complex.h +93 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/conduit/README.txt +15 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +116 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +87 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/conduit/wrap_include_python_h.h +72 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/critical_section.h +56 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/argument_vector.h +417 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/class.h +836 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/common.h +1353 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/cpp_conduit.h +75 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/descr.h +226 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h +39 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/exception_translation.h +71 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/function_record_pyobject.h +192 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/holder_caster_foreign_helpers.h +86 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/init.h +544 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/internals.h +1063 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/native_enum_data.h +227 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/pybind11_namespace_macros.h +82 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/struct_smart_holder.h +398 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/type_caster_base.h +1711 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/typeid.h +65 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/using_smart_holder.h +22 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/detail/value_and_holder.h +92 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/eigen/common.h +9 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/eigen/matrix.h +723 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/eigen/tensor.h +520 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/eigen.h +12 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/embed.h +320 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/eval.h +161 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/functional.h +147 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/gil.h +203 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/gil_safe_call_once.h +273 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/gil_simple.h +37 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/iostream.h +265 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/native_enum.h +76 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/numpy.h +2312 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/operators.h +202 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/options.h +92 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/pybind11.h +3742 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/pytypes.h +2738 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/stl/filesystem.h +114 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/stl.h +666 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/stl_bind.h +858 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/subinterpreter.h +291 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/trampoline_self_life_support.h +65 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/type_caster_pyobject_ptr.h +61 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/typing.h +295 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/include/pybind11/warnings.h +75 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/noxfile.py +151 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/__init__.py +19 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/__main__.py +97 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/_version.py +34 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/commands.py +39 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/py.typed +0 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/pybind11/setup_helpers.py +500 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/pyproject.toml +209 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/CMakeLists.txt +684 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/conftest.py +313 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/constructor_stats.h +330 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/cross_module_gil_utils.cpp +111 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/cross_module_interleaved_error_already_set.cpp +54 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/custom_exceptions.py +10 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +16 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/env.py +59 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/exo_planet_c_api.cpp +76 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/exo_planet_pybind11.cpp +19 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/extra_python_package/pytest.ini +0 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/extra_python_package/test_files.py +385 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/extra_setuptools/test_setuphelper.py +153 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/home_planet_very_lonely_traveler.cpp +13 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/local_bindings.h +93 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/mod_per_interpreter_gil.cpp +20 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/mod_per_interpreter_gil_with_singleton.cpp +147 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/mod_shared_interpreter_gil.cpp +17 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/object.h +205 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pure_cpp/CMakeLists.txt +22 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pure_cpp/smart_holder_poc.h +56 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pure_cpp/smart_holder_poc_test.cpp +427 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pybind11_cross_module_tests.cpp +163 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pybind11_tests.cpp +129 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pybind11_tests.h +119 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pyproject.toml +40 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/pytest.ini +22 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/requirements.txt +20 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_async.cpp +25 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_async.py +31 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_buffers.cpp +442 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_buffers.py +401 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_builtin_casters.cpp +393 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_builtin_casters.py +624 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_call_policies.cpp +113 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_call_policies.py +256 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_callbacks.cpp +302 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_callbacks.py +247 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_chrono.cpp +81 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_chrono.py +207 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class.cpp +694 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class.py +557 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.cpp +23 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.py +43 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.cpp +54 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.py +21 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_basic.cpp +248 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_basic.py +248 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_disowning.cpp +41 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_disowning.py +78 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_disowning_mi.cpp +85 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_disowning_mi.py +246 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_factory_constructors.cpp +156 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_factory_constructors.py +53 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_inheritance.cpp +90 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_inheritance.py +63 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_mi_thunks.cpp +230 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_mi_thunks.py +104 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_property.cpp +94 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_property.py +166 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_property_non_owning.cpp +65 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_property_non_owning.py +30 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_shared_ptr_copy_move.cpp +103 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_shared_ptr_copy_move.py +41 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_basic.cpp +57 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_basic.py +35 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_self_life_support.cpp +86 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_self_life_support.py +38 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_shared_from_this.cpp +137 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_shared_from_this.py +247 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.cpp +92 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.py +154 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_unique_ptr.cpp +63 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_trampoline_unique_ptr.py +31 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.cpp +30 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.py +8 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_unique_ptr_member.cpp +50 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_unique_ptr_member.py +26 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_virtual_py_cpp_mix.cpp +58 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_class_sh_virtual_py_cpp_mix.py +66 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/CMakeLists.txt +91 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/embed.cpp +23 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +19 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +29 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +37 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/main.cpp +6 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +38 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +32 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +38 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cmake_build/test.py +10 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_const_name.cpp +55 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_const_name.py +31 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_constants_and_functions.cpp +158 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_constants_and_functions.py +58 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_copy_move.cpp +546 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_copy_move.py +144 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cpp_conduit.cpp +22 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cpp_conduit.py +183 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cpp_conduit_traveler_bindings.h +47 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cpp_conduit_traveler_types.h +25 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/CMakeLists.txt +70 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/bindings.cpp +20 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/catch.cpp +22 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/lib.cpp +13 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/lib.h +31 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_cross_module_rtti/test_cross_module_rtti.cpp +50 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_custom_type_casters.cpp +217 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_custom_type_casters.py +126 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_custom_type_setup.cpp +104 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_custom_type_setup.py +84 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_docs_advanced_cast_custom.cpp +69 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_docs_advanced_cast_custom.py +40 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_docstring_options.cpp +129 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_docstring_options.py +72 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eigen_matrix.cpp +448 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eigen_matrix.py +839 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eigen_tensor.cpp +18 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eigen_tensor.inl +338 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eigen_tensor.py +316 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_enum.cpp +149 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_enum.py +344 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eval.cpp +118 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eval.py +52 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_eval_call.py +5 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_exceptions.cpp +427 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_exceptions.h +13 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_exceptions.py +439 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_factory_constructors.cpp +434 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_factory_constructors.py +531 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_gil_scoped.cpp +144 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_gil_scoped.py +291 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_iostream.cpp +126 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_iostream.py +304 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_kwargs_and_defaults.cpp +331 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_kwargs_and_defaults.py +473 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_local_bindings.cpp +131 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_local_bindings.py +291 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_methods_and_attributes.cpp +492 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_methods_and_attributes.py +574 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_modules.cpp +124 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_modules.py +146 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_multiple_inheritance.cpp +341 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_multiple_inheritance.py +500 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_multiple_interpreters.py +432 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_native_enum.cpp +262 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_native_enum.py +377 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_array.cpp +599 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_array.py +710 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_dtypes.cpp +745 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_dtypes.py +464 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_scalars.cpp +63 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_scalars.py +54 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_vectorize.cpp +107 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_numpy_vectorize.py +268 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_opaque_types.cpp +77 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_opaque_types.py +64 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_operator_overloading.cpp +281 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_operator_overloading.py +161 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_pickling.cpp +191 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_pickling.py +149 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_potentially_slicing_weak_ptr.cpp +170 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_potentially_slicing_weak_ptr.py +174 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_python_multiple_inheritance.py +36 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_pytypes.cpp +1216 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_pytypes.py +1374 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_scoped_critical_section.cpp +274 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_scoped_critical_section.py +30 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_sequences_and_iterators.py +307 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_smart_ptr.cpp +594 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_smart_ptr.py +357 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_stl.cpp +667 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_stl.py +735 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_stl_binders.cpp +275 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_stl_binders.py +414 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_tagbased_polymorphic.cpp +150 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_tagbased_polymorphic.py +30 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_thread.cpp +108 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_thread.py +80 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_type_caster_pyobject_ptr.cpp +168 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_type_caster_pyobject_ptr.py +125 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_type_caster_std_function_specializations.cpp +46 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_type_caster_std_function_specializations.py +15 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_union.cpp +22 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_union.py +10 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_unnamed_namespace_a.cpp +37 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_unnamed_namespace_a.py +33 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_unnamed_namespace_b.cpp +13 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_unnamed_namespace_b.py +7 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_vector_unique_ptr_member.cpp +54 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_vector_unique_ptr_member.py +16 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_virtual_functions.cpp +592 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_virtual_functions.py +468 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_warnings.cpp +46 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_warnings.py +68 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/CMakeLists.txt +64 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/catch.cpp +175 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/catch_skip.h +16 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/external_module.cpp +39 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_args_convert_vector.cpp +80 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_argument_vector.cpp +94 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_interpreter.cpp +483 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_interpreter.py +16 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_subinterpreter.cpp +579 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/test_with_catch/test_trampoline.py +18 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tests/valgrind-python.supp +117 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/FindCatch.cmake +74 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/FindEigen3.cmake +86 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/FindPythonLibsNew.cmake +320 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/JoinPaths.cmake +23 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/check-style.sh +44 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/cmake_uninstall.cmake.in +23 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/libsize.py +38 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/make_changelog.py +121 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/make_global.py +33 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11.pc.in +7 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11Common.cmake +458 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11Config.cmake.in +240 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +94 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11NewTools.cmake +339 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/pybind11Tools.cmake +217 -0
- clingo_funasp-6.0.0.post10/third_party/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +185 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.git +1 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.github/workflows/docs-deploy.yml +57 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.github/workflows/release.yml +62 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.github/workflows/test.yml +91 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.gitignore +57 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/.versup.json +22 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/LICENSE +21 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/README.md +50 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/build_config.py +32 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/cmake/FindPytest.cmake +181 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/cmake/PytestAddTests.cmake +174 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/_extensions/changelog.py +92 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/_extensions/github_user.py +18 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/_static/style.css +63 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/api_reference.rst +243 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/conf.py +46 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/environment_variables.rst +33 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/favicon.ico +0 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/glossary.rst +68 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/index.rst +20 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/installing.rst +63 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/integration.rst +69 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/introduction.rst +45 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/release/index.rst +14 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/release/migration_notes.rst +15 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/release/release_notes.rst +339 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/requirements.txt +2 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/doc/tutorial.rst +216 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/CMakeLists.txt +21 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/CMakeLists.txt +2 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/foo/CMakeLists.txt +6 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/foo/foo.cpp +40 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/foo/foo.h +18 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/python/CMakeLists.txt +28 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/src/python/main.cpp +24 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/test/CMakeLists.txt +42 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/test/fooTest.cpp +6 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/test/resource/foo.txt +3 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/test/subfolder/test_example2.py +18 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/example/test/test_example.py +39 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/pyproject.toml +61 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/src/pytest_cmake/__init__.py +0 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/src/pytest_cmake/__main__.py +29 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/00-version-fails/CMakeLists.txt +5 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/01-modify-name/CMakeLists.txt +153 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/01-modify-name/data/conftest.py +9 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/01-modify-name/data/test_sample_data.py +18 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/01-modify-name/strings/test_string_methods.py +18 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/01-modify-name/test_math_operations.py +21 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/02-library-path/CMakeLists.txt +33 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/02-library-path/test_path.py +16 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/03-python-path/CMakeLists.txt +33 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/03-python-path/test_path.py +10 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/04-environment/CMakeLists.txt +18 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/04-environment/test_env.py +17 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/05-properties/CMakeLists.txt +59 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/05-properties/check_test_property.cmake +60 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/05-properties/test_property.py +2 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/06-extra-args/CMakeLists.txt +31 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/06-extra-args/conftest.py +4 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/06-extra-args/custom_args/test_custom_args.py +7 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/06-extra-args/test_args.py +7 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/07-working-directory/CMakeLists.txt +18 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/07-working-directory/subdir/test_correct.py +2 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/07-working-directory/test_incorrect.py +1 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/CMakeLists.txt +94 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/pytest.ini +4 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_a/choice.py +4 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_a/math/test_add.py +2 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_a/test_upper.py +2 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_b/math/test_power.py +2 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_b/math/test_subtract.py +2 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_b/test_concat.py +2 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/08-test-paths/test_incorrect.py +1 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/CMakeLists.txt +93 -0
- clingo_funasp-6.0.0.post10/third_party/pytest-cmake/test/utils/compare_discovered_tests.cmake +29 -0
- clingo_funasp-6.0.0.post10/update-pytest.sh +5 -0
- clingo_funasp-6.0.0.post10/web/CMakeLists.txt +20 -0
- clingo_funasp-6.0.0.post10/web/main.cc +72 -0
|
@@ -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 @@
|
|
|
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,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,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 @@
|
|
|
1
|
+
/usr/bin/*
|
|
@@ -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 @@
|
|
|
1
|
+
/usr/lib/*/*.so*
|
|
@@ -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 @@
|
|
|
1
|
+
3.0 (native)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/usr/bin/*
|
|
@@ -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 @@
|
|
|
1
|
+
/usr/lib/*/*.so*
|
|
@@ -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 @@
|
|
|
1
|
+
3.0 (native)
|