passagemath-gap-pkg-semigroups 10.6.29__cp312-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of passagemath-gap-pkg-semigroups might be problematic. Click here for more details.
- gap/pkg/semigroups/CHANGELOG.md +1699 -0
- gap/pkg/semigroups/CONTRIBUTING.md +91 -0
- gap/pkg/semigroups/GNUmakefile +110 -0
- gap/pkg/semigroups/GNUmakefile.in +110 -0
- gap/pkg/semigroups/GPL +674 -0
- gap/pkg/semigroups/LICENSE +16 -0
- gap/pkg/semigroups/Makefile +26 -0
- gap/pkg/semigroups/Makefile.gappkg +225 -0
- gap/pkg/semigroups/PackageInfo.g +529 -0
- gap/pkg/semigroups/README.md +102 -0
- gap/pkg/semigroups/VERSIONS +112 -0
- gap/pkg/semigroups/aclocal.m4 +375 -0
- gap/pkg/semigroups/autogen.sh +25 -0
- gap/pkg/semigroups/bin/x86_64-pc-linux-gnu-default64-kv10/semigroups.so +0 -0
- gap/pkg/semigroups/config.guess +1807 -0
- gap/pkg/semigroups/config.log +1069 -0
- gap/pkg/semigroups/config.status +1133 -0
- gap/pkg/semigroups/config.sub +1960 -0
- gap/pkg/semigroups/configure +9742 -0
- gap/pkg/semigroups/configure.ac +71 -0
- gap/pkg/semigroups/data/doc/greens.pickle +1 -0
- gap/pkg/semigroups/data/gens/fullbool-8.pickle.gz +0 -0
- gap/pkg/semigroups/data/gens/fullbool.pickle.gz +0 -0
- gap/pkg/semigroups/data/gens/hall.pickle.gz +0 -0
- gap/pkg/semigroups/data/gens/reflex-6.pickle.gz +0 -0
- gap/pkg/semigroups/data/gens/reflex.pickle.gz +0 -0
- gap/pkg/semigroups/data/tst/bipart4 +10 -0
- gap/pkg/semigroups/data/tst/pperm10 +1 -0
- gap/pkg/semigroups/data/tst/tables.gz +0 -0
- gap/pkg/semigroups/data/tst/testdata +1 -0
- gap/pkg/semigroups/data/tst/testinstall.pickle +1 -0
- gap/pkg/semigroups/data/tst/trans3 +7 -0
- gap/pkg/semigroups/data/tst/trans3-old +7 -0
- gap/pkg/semigroups/environment.yml +7 -0
- gap/pkg/semigroups/gap/attributes/acting.gd +15 -0
- gap/pkg/semigroups/gap/attributes/acting.gi +297 -0
- gap/pkg/semigroups/gap/attributes/attr.gd +91 -0
- gap/pkg/semigroups/gap/attributes/attr.gi +1214 -0
- gap/pkg/semigroups/gap/attributes/dual.gd +25 -0
- gap/pkg/semigroups/gap/attributes/dual.gi +209 -0
- gap/pkg/semigroups/gap/attributes/factor.gd +17 -0
- gap/pkg/semigroups/gap/attributes/factor.gi +453 -0
- gap/pkg/semigroups/gap/attributes/homomorph.gd +84 -0
- gap/pkg/semigroups/gap/attributes/homomorph.gi +591 -0
- gap/pkg/semigroups/gap/attributes/inverse.gd +38 -0
- gap/pkg/semigroups/gap/attributes/inverse.gi +708 -0
- gap/pkg/semigroups/gap/attributes/isomorph.gd +16 -0
- gap/pkg/semigroups/gap/attributes/isomorph.gi +377 -0
- gap/pkg/semigroups/gap/attributes/isorms.gd +49 -0
- gap/pkg/semigroups/gap/attributes/isorms.gi +1383 -0
- gap/pkg/semigroups/gap/attributes/maximal.gd +16 -0
- gap/pkg/semigroups/gap/attributes/maximal.gi +1876 -0
- gap/pkg/semigroups/gap/attributes/properties.gd +109 -0
- gap/pkg/semigroups/gap/attributes/properties.gi +1658 -0
- gap/pkg/semigroups/gap/attributes/rms-translat.gd +39 -0
- gap/pkg/semigroups/gap/attributes/rms-translat.gi +1078 -0
- gap/pkg/semigroups/gap/attributes/semifp.gd +12 -0
- gap/pkg/semigroups/gap/attributes/semifp.gi +84 -0
- gap/pkg/semigroups/gap/attributes/translat.gd +474 -0
- gap/pkg/semigroups/gap/attributes/translat.gi +1779 -0
- gap/pkg/semigroups/gap/congruences/cong.gd +154 -0
- gap/pkg/semigroups/gap/congruences/cong.gi +351 -0
- gap/pkg/semigroups/gap/congruences/conginv.gd +38 -0
- gap/pkg/semigroups/gap/congruences/conginv.gi +589 -0
- gap/pkg/semigroups/gap/congruences/conglatt.gd +101 -0
- gap/pkg/semigroups/gap/congruences/conglatt.gi +886 -0
- gap/pkg/semigroups/gap/congruences/congpairs.gd +21 -0
- gap/pkg/semigroups/gap/congruences/congpairs.gi +272 -0
- gap/pkg/semigroups/gap/congruences/congpart.gd +90 -0
- gap/pkg/semigroups/gap/congruences/congpart.gi +449 -0
- gap/pkg/semigroups/gap/congruences/congrees.gd +20 -0
- gap/pkg/semigroups/gap/congruences/congrees.gi +313 -0
- gap/pkg/semigroups/gap/congruences/congrms.gd +54 -0
- gap/pkg/semigroups/gap/congruences/congrms.gi +1467 -0
- gap/pkg/semigroups/gap/congruences/congsemigraph.gd +28 -0
- gap/pkg/semigroups/gap/congruences/congsemigraph.gi +289 -0
- gap/pkg/semigroups/gap/congruences/congsimple.gd +27 -0
- gap/pkg/semigroups/gap/congruences/congsimple.gi +236 -0
- gap/pkg/semigroups/gap/congruences/conguniv.gd +20 -0
- gap/pkg/semigroups/gap/congruences/conguniv.gi +271 -0
- gap/pkg/semigroups/gap/congruences/congwordgraph.gd +21 -0
- gap/pkg/semigroups/gap/congruences/congwordgraph.gi +250 -0
- gap/pkg/semigroups/gap/elements/bipart.gd +71 -0
- gap/pkg/semigroups/gap/elements/bipart.gi +995 -0
- gap/pkg/semigroups/gap/elements/blocks.gd +31 -0
- gap/pkg/semigroups/gap/elements/blocks.gi +134 -0
- gap/pkg/semigroups/gap/elements/boolmat.gd +74 -0
- gap/pkg/semigroups/gap/elements/boolmat.gi +726 -0
- gap/pkg/semigroups/gap/elements/elements.gd +11 -0
- gap/pkg/semigroups/gap/elements/elements.gi +121 -0
- gap/pkg/semigroups/gap/elements/ffmat.gd +71 -0
- gap/pkg/semigroups/gap/elements/ffmat.gi +311 -0
- gap/pkg/semigroups/gap/elements/maxplusmat.gd +131 -0
- gap/pkg/semigroups/gap/elements/maxplusmat.gi +782 -0
- gap/pkg/semigroups/gap/elements/pbr.gd +51 -0
- gap/pkg/semigroups/gap/elements/pbr.gi +740 -0
- gap/pkg/semigroups/gap/elements/pperm.gd +11 -0
- gap/pkg/semigroups/gap/elements/pperm.gi +14 -0
- gap/pkg/semigroups/gap/elements/semiringmat.gd +136 -0
- gap/pkg/semigroups/gap/elements/semiringmat.gi +717 -0
- gap/pkg/semigroups/gap/elements/star.gd +21 -0
- gap/pkg/semigroups/gap/elements/star.gi +21 -0
- gap/pkg/semigroups/gap/elements/trans.gd +13 -0
- gap/pkg/semigroups/gap/elements/trans.gi +50 -0
- gap/pkg/semigroups/gap/fp/freeband.gd +22 -0
- gap/pkg/semigroups/gap/fp/freeband.gi +502 -0
- gap/pkg/semigroups/gap/fp/freeinverse.gd +30 -0
- gap/pkg/semigroups/gap/fp/freeinverse.gi +465 -0
- gap/pkg/semigroups/gap/fp/tietze.gd +89 -0
- gap/pkg/semigroups/gap/fp/tietze.gi +1578 -0
- gap/pkg/semigroups/gap/fp/word.gd +15 -0
- gap/pkg/semigroups/gap/fp/word.gi +67 -0
- gap/pkg/semigroups/gap/greens/acting-inverse.gi +774 -0
- gap/pkg/semigroups/gap/greens/acting-regular.gi +553 -0
- gap/pkg/semigroups/gap/greens/acting.gd +81 -0
- gap/pkg/semigroups/gap/greens/acting.gi +2433 -0
- gap/pkg/semigroups/gap/greens/froidure-pin.gd +25 -0
- gap/pkg/semigroups/gap/greens/froidure-pin.gi +741 -0
- gap/pkg/semigroups/gap/greens/generic.gd +117 -0
- gap/pkg/semigroups/gap/greens/generic.gi +630 -0
- gap/pkg/semigroups/gap/ideals/acting.gd +17 -0
- gap/pkg/semigroups/gap/ideals/acting.gi +1155 -0
- gap/pkg/semigroups/gap/ideals/froidure-pin.gd +11 -0
- gap/pkg/semigroups/gap/ideals/froidure-pin.gi +105 -0
- gap/pkg/semigroups/gap/ideals/ideals.gd +45 -0
- gap/pkg/semigroups/gap/ideals/ideals.gi +442 -0
- gap/pkg/semigroups/gap/ideals/lambda-rho.gd +16 -0
- gap/pkg/semigroups/gap/ideals/lambda-rho.gi +614 -0
- gap/pkg/semigroups/gap/libsemigroups/cong.gd +24 -0
- gap/pkg/semigroups/gap/libsemigroups/cong.gi +431 -0
- gap/pkg/semigroups/gap/libsemigroups/fpsemi.gd +16 -0
- gap/pkg/semigroups/gap/libsemigroups/fpsemi.gi +53 -0
- gap/pkg/semigroups/gap/libsemigroups/froidure-pin.gd +17 -0
- gap/pkg/semigroups/gap/libsemigroups/froidure-pin.gi +945 -0
- gap/pkg/semigroups/gap/libsemigroups/sims1.gd +38 -0
- gap/pkg/semigroups/gap/libsemigroups/sims1.gi +308 -0
- gap/pkg/semigroups/gap/main/acting.gd +36 -0
- gap/pkg/semigroups/gap/main/acting.gi +779 -0
- gap/pkg/semigroups/gap/main/froidure-pin.gd +72 -0
- gap/pkg/semigroups/gap/main/froidure-pin.gi +655 -0
- gap/pkg/semigroups/gap/main/graded.gd +26 -0
- gap/pkg/semigroups/gap/main/graded.gi +355 -0
- gap/pkg/semigroups/gap/main/lambda-rho.gd +29 -0
- gap/pkg/semigroups/gap/main/lambda-rho.gi +514 -0
- gap/pkg/semigroups/gap/main/orbits.gd +24 -0
- gap/pkg/semigroups/gap/main/orbits.gi +512 -0
- gap/pkg/semigroups/gap/main/semiact.gd +20 -0
- gap/pkg/semigroups/gap/main/semiact.gi +821 -0
- gap/pkg/semigroups/gap/main/setup.gd +61 -0
- gap/pkg/semigroups/gap/main/setup.gi +1094 -0
- gap/pkg/semigroups/gap/obsolete.gd +9 -0
- gap/pkg/semigroups/gap/obsolete.gi +14 -0
- gap/pkg/semigroups/gap/options.g +55 -0
- gap/pkg/semigroups/gap/semigroups/grpperm.gd +12 -0
- gap/pkg/semigroups/gap/semigroups/grpperm.gi +177 -0
- gap/pkg/semigroups/gap/semigroups/semibipart.gd +28 -0
- gap/pkg/semigroups/gap/semigroups/semibipart.gi +570 -0
- gap/pkg/semigroups/gap/semigroups/semiboolmat.gd +20 -0
- gap/pkg/semigroups/gap/semigroups/semiboolmat.gi +104 -0
- gap/pkg/semigroups/gap/semigroups/semicons.gd +52 -0
- gap/pkg/semigroups/gap/semigroups/semicons.gi +1194 -0
- gap/pkg/semigroups/gap/semigroups/semidp.gd +13 -0
- gap/pkg/semigroups/gap/semigroups/semidp.gi +509 -0
- gap/pkg/semigroups/gap/semigroups/semieunit.gd +126 -0
- gap/pkg/semigroups/gap/semigroups/semieunit.gi +889 -0
- gap/pkg/semigroups/gap/semigroups/semiex.gd +104 -0
- gap/pkg/semigroups/gap/semigroups/semiex.gi +1590 -0
- gap/pkg/semigroups/gap/semigroups/semiffmat.gd +37 -0
- gap/pkg/semigroups/gap/semigroups/semiffmat.gi +565 -0
- gap/pkg/semigroups/gap/semigroups/semifp.gd +28 -0
- gap/pkg/semigroups/gap/semigroups/semifp.gi +1364 -0
- gap/pkg/semigroups/gap/semigroups/semigraph.gd +40 -0
- gap/pkg/semigroups/gap/semigroups/semigraph.gi +292 -0
- gap/pkg/semigroups/gap/semigroups/semigrp.gd +165 -0
- gap/pkg/semigroups/gap/semigroups/semigrp.gi +1225 -0
- gap/pkg/semigroups/gap/semigroups/semimaxplus.gd +72 -0
- gap/pkg/semigroups/gap/semigroups/semimaxplus.gi +710 -0
- gap/pkg/semigroups/gap/semigroups/semintmat.gd +13 -0
- gap/pkg/semigroups/gap/semigroups/semintmat.gi +74 -0
- gap/pkg/semigroups/gap/semigroups/semipbr.gd +19 -0
- gap/pkg/semigroups/gap/semigroups/semipbr.gi +139 -0
- gap/pkg/semigroups/gap/semigroups/semipperm.gd +27 -0
- gap/pkg/semigroups/gap/semigroups/semipperm.gi +711 -0
- gap/pkg/semigroups/gap/semigroups/semiquo.gd +14 -0
- gap/pkg/semigroups/gap/semigroups/semiquo.gi +97 -0
- gap/pkg/semigroups/gap/semigroups/semiringmat.gd +16 -0
- gap/pkg/semigroups/gap/semigroups/semiringmat.gi +21 -0
- gap/pkg/semigroups/gap/semigroups/semirms.gd +19 -0
- gap/pkg/semigroups/gap/semigroups/semirms.gi +977 -0
- gap/pkg/semigroups/gap/semigroups/semitrans.gd +49 -0
- gap/pkg/semigroups/gap/semigroups/semitrans.gi +909 -0
- gap/pkg/semigroups/gap/tools/display.gd +24 -0
- gap/pkg/semigroups/gap/tools/display.gi +749 -0
- gap/pkg/semigroups/gap/tools/io.gd +17 -0
- gap/pkg/semigroups/gap/tools/io.gi +543 -0
- gap/pkg/semigroups/gap/tools/iterators.gd +16 -0
- gap/pkg/semigroups/gap/tools/iterators.gi +253 -0
- gap/pkg/semigroups/gap/tools/utils.gd +19 -0
- gap/pkg/semigroups/gap/tools/utils.gi +756 -0
- gap/pkg/semigroups/gapbind14/.ccls +18 -0
- gap/pkg/semigroups/gapbind14/.clang-format +104 -0
- gap/pkg/semigroups/gapbind14/CPPLINT.cfg +5 -0
- gap/pkg/semigroups/gapbind14/LICENSE +674 -0
- gap/pkg/semigroups/gapbind14/README.md +76 -0
- gap/pkg/semigroups/gapbind14/demo/.gitignore +4 -0
- gap/pkg/semigroups/gapbind14/demo/LICENSE +293 -0
- gap/pkg/semigroups/gapbind14/demo/Makefile.gappkg +220 -0
- gap/pkg/semigroups/gapbind14/demo/Makefile.in +19 -0
- gap/pkg/semigroups/gapbind14/demo/PackageInfo.g +87 -0
- gap/pkg/semigroups/gapbind14/demo/README.md +17 -0
- gap/pkg/semigroups/gapbind14/demo/configure +34 -0
- gap/pkg/semigroups/gapbind14/demo/gap/gapbind_demo.gd +19 -0
- gap/pkg/semigroups/gapbind14/demo/gap/gapbind_demo.gi +10 -0
- gap/pkg/semigroups/gapbind14/demo/init.g +16 -0
- gap/pkg/semigroups/gapbind14/demo/makedoc.g +10 -0
- gap/pkg/semigroups/gapbind14/demo/read.g +6 -0
- gap/pkg/semigroups/gapbind14/demo/src/gapbind_demo.cc +142 -0
- gap/pkg/semigroups/gapbind14/demo/tst/testall.g +12 -0
- gap/pkg/semigroups/gapbind14/include/gapbind14/cpp_fn.hpp +223 -0
- gap/pkg/semigroups/gapbind14/include/gapbind14/gap_include.hpp +26 -0
- gap/pkg/semigroups/gapbind14/include/gapbind14/gapbind14.hpp +445 -0
- gap/pkg/semigroups/gapbind14/include/gapbind14/tame_free_fn.hpp +420 -0
- gap/pkg/semigroups/gapbind14/include/gapbind14/tame_mem_fn.hpp +556 -0
- gap/pkg/semigroups/gapbind14/include/gapbind14/to_cpp.hpp +162 -0
- gap/pkg/semigroups/gapbind14/include/gapbind14/to_gap.hpp +158 -0
- gap/pkg/semigroups/gapbind14/src/.clang-format +108 -0
- gap/pkg/semigroups/gapbind14/src/gapbind14.cpp +334 -0
- gap/pkg/semigroups/init.g +150 -0
- gap/pkg/semigroups/m4/ax_append_flag.m4 +50 -0
- gap/pkg/semigroups/m4/ax_check_compile_flag.m4 +53 -0
- gap/pkg/semigroups/m4/ax_check_hpcombi.m4 +121 -0
- gap/pkg/semigroups/m4/ax_check_libsemigroup.m4 +68 -0
- gap/pkg/semigroups/m4/ax_compare_version.m4 +177 -0
- gap/pkg/semigroups/m4/ax_cxx_compile_stdcxx.m4 +1009 -0
- gap/pkg/semigroups/m4/ax_cxx_compile_stdcxx_14.m4 +34 -0
- gap/pkg/semigroups/m4/ax_prefix_config_h.m4 +203 -0
- gap/pkg/semigroups/m4/ax_pthread.m4 +522 -0
- gap/pkg/semigroups/m4/find_gap.m4 +94 -0
- gap/pkg/semigroups/makedoc.g +153 -0
- gap/pkg/semigroups/prerequisites.sh +62 -0
- gap/pkg/semigroups/read.g +105 -0
- gap/pkg/semigroups/release.toml +6 -0
- gap/pkg/semigroups/tst/extreme/README +2 -0
- gap/pkg/semigroups/tst/extreme/attrinv.tst +703 -0
- gap/pkg/semigroups/tst/extreme/bipart.tst +2803 -0
- gap/pkg/semigroups/tst/extreme/closure.tst +652 -0
- gap/pkg/semigroups/tst/extreme/cong.tst +286 -0
- gap/pkg/semigroups/tst/extreme/conginv.tst +43 -0
- gap/pkg/semigroups/tst/extreme/examples.tst +2449 -0
- gap/pkg/semigroups/tst/extreme/freeband.tst +37 -0
- gap/pkg/semigroups/tst/extreme/greens-acting-regular.tst +27 -0
- gap/pkg/semigroups/tst/extreme/greens-acting.tst +1999 -0
- gap/pkg/semigroups/tst/extreme/ideals.tst +858 -0
- gap/pkg/semigroups/tst/extreme/inverse.tst +1025 -0
- gap/pkg/semigroups/tst/extreme/maximal.tst +856 -0
- gap/pkg/semigroups/tst/extreme/misc.tst +4236 -0
- gap/pkg/semigroups/tst/extreme/monoid_pkg.tst +1488 -0
- gap/pkg/semigroups/tst/extreme/properties.tst +914 -0
- gap/pkg/semigroups/tst/extreme/semibipart.tst +2837 -0
- gap/pkg/semigroups/tst/extreme/semieunit.tst +49 -0
- gap/pkg/semigroups/tst/extreme/semiffmat.tst +353 -0
- gap/pkg/semigroups/tst/extreme/semigroups.tst +245 -0
- gap/pkg/semigroups/tst/extreme/semiiter.tst +58 -0
- gap/pkg/semigroups/tst/extreme/semirms.tst +1091 -0
- gap/pkg/semigroups/tst/extreme/transform.tst +305 -0
- gap/pkg/semigroups/tst/extreme/translat.tst +44 -0
- gap/pkg/semigroups/tst/standard/README +2 -0
- gap/pkg/semigroups/tst/standard/attributes/acting.tst +388 -0
- gap/pkg/semigroups/tst/standard/attributes/attr.tst +2404 -0
- gap/pkg/semigroups/tst/standard/attributes/dual.tst +308 -0
- gap/pkg/semigroups/tst/standard/attributes/factor.tst +629 -0
- gap/pkg/semigroups/tst/standard/attributes/homomorph.tst +1134 -0
- gap/pkg/semigroups/tst/standard/attributes/inverse.tst +1521 -0
- gap/pkg/semigroups/tst/standard/attributes/isomorph.tst +435 -0
- gap/pkg/semigroups/tst/standard/attributes/isorms.tst +1147 -0
- gap/pkg/semigroups/tst/standard/attributes/maximal.tst +853 -0
- gap/pkg/semigroups/tst/standard/attributes/properties.tst +2028 -0
- gap/pkg/semigroups/tst/standard/attributes/semifp.tst +53 -0
- gap/pkg/semigroups/tst/standard/attributes/translat.tst +796 -0
- gap/pkg/semigroups/tst/standard/congruences/cong.tst +1044 -0
- gap/pkg/semigroups/tst/standard/congruences/conginv.tst +292 -0
- gap/pkg/semigroups/tst/standard/congruences/conglatt.tst +421 -0
- gap/pkg/semigroups/tst/standard/congruences/congpairs.tst +1011 -0
- gap/pkg/semigroups/tst/standard/congruences/congrees.tst +288 -0
- gap/pkg/semigroups/tst/standard/congruences/congrms.tst +701 -0
- gap/pkg/semigroups/tst/standard/congruences/congsemigraph.tst +422 -0
- gap/pkg/semigroups/tst/standard/congruences/congsimple.tst +311 -0
- gap/pkg/semigroups/tst/standard/congruences/conguniv.tst +259 -0
- gap/pkg/semigroups/tst/standard/congruences/congwordgraph.tst +330 -0
- gap/pkg/semigroups/tst/standard/elements/bipart.tst +783 -0
- gap/pkg/semigroups/tst/standard/elements/blocks.tst +166 -0
- gap/pkg/semigroups/tst/standard/elements/boolmat.tst +608 -0
- gap/pkg/semigroups/tst/standard/elements/elements.tst +117 -0
- gap/pkg/semigroups/tst/standard/elements/ffmat.tst +349 -0
- gap/pkg/semigroups/tst/standard/elements/maxplusmat.tst +613 -0
- gap/pkg/semigroups/tst/standard/elements/pbr.tst +506 -0
- gap/pkg/semigroups/tst/standard/elements/pperm.tst +32 -0
- gap/pkg/semigroups/tst/standard/elements/semiringmat.tst +601 -0
- gap/pkg/semigroups/tst/standard/elements/trans.tst +58 -0
- gap/pkg/semigroups/tst/standard/fp/freeband.tst +311 -0
- gap/pkg/semigroups/tst/standard/fp/freeinverse.tst +147 -0
- gap/pkg/semigroups/tst/standard/fp/tietze.tst +780 -0
- gap/pkg/semigroups/tst/standard/fp/word.tst +106 -0
- gap/pkg/semigroups/tst/standard/greens/acting-inverse.tst +545 -0
- gap/pkg/semigroups/tst/standard/greens/acting-regular.tst +396 -0
- gap/pkg/semigroups/tst/standard/greens/acting.tst +2033 -0
- gap/pkg/semigroups/tst/standard/greens/froidure-pin.tst +1831 -0
- gap/pkg/semigroups/tst/standard/greens/generic.tst +1436 -0
- gap/pkg/semigroups/tst/standard/ideals/acting.tst +279 -0
- gap/pkg/semigroups/tst/standard/ideals/froidure-pin.tst +178 -0
- gap/pkg/semigroups/tst/standard/ideals/ideals.tst +380 -0
- gap/pkg/semigroups/tst/standard/libsemigroups/cong.tst +310 -0
- gap/pkg/semigroups/tst/standard/libsemigroups/froidure-pin.tst +778 -0
- gap/pkg/semigroups/tst/standard/libsemigroups/sims1.tst +379 -0
- gap/pkg/semigroups/tst/standard/main/acting.tst +411 -0
- gap/pkg/semigroups/tst/standard/main/froidure-pin.tst +392 -0
- gap/pkg/semigroups/tst/standard/main/semiact.tst +203 -0
- gap/pkg/semigroups/tst/standard/main/setup.tst +1144 -0
- gap/pkg/semigroups/tst/standard/obsolete.tst +19 -0
- gap/pkg/semigroups/tst/standard/options.tst +54 -0
- gap/pkg/semigroups/tst/standard/semigroups/grpperm.tst +581 -0
- gap/pkg/semigroups/tst/standard/semigroups/semibipart.tst +2635 -0
- gap/pkg/semigroups/tst/standard/semigroups/semiboolmat.tst +1871 -0
- gap/pkg/semigroups/tst/standard/semigroups/semicons.tst +1173 -0
- gap/pkg/semigroups/tst/standard/semigroups/semidp.tst +739 -0
- gap/pkg/semigroups/tst/standard/semigroups/semieunit.tst +339 -0
- gap/pkg/semigroups/tst/standard/semigroups/semiex.tst +2055 -0
- gap/pkg/semigroups/tst/standard/semigroups/semiffmat.tst +746 -0
- gap/pkg/semigroups/tst/standard/semigroups/semifp.tst +2702 -0
- gap/pkg/semigroups/tst/standard/semigroups/semigraph.tst +133 -0
- gap/pkg/semigroups/tst/standard/semigroups/semigrp.tst +1112 -0
- gap/pkg/semigroups/tst/standard/semigroups/semimaxplus.tst +654 -0
- gap/pkg/semigroups/tst/standard/semigroups/semipbr.tst +2142 -0
- gap/pkg/semigroups/tst/standard/semigroups/semipperm.tst +2169 -0
- gap/pkg/semigroups/tst/standard/semigroups/semiquo.tst +278 -0
- gap/pkg/semigroups/tst/standard/semigroups/semirms.tst +3010 -0
- gap/pkg/semigroups/tst/standard/semigroups/semitrans.tst +2758 -0
- gap/pkg/semigroups/tst/standard/tools/display.tst +1040 -0
- gap/pkg/semigroups/tst/standard/tools/io.tst +363 -0
- gap/pkg/semigroups/tst/testinstall.tst +1815 -0
- gap/pkg/semigroups/tst/teststandard.g +22 -0
- gap/pkg/semigroups/tst/workspaces/load-workspace.tst +142 -0
- gap/pkg/semigroups/tst/workspaces/load.g +11 -0
- gap/pkg/semigroups/tst/workspaces/save-workspace.tst +166 -0
- gap/pkg/semigroups/tst/workspaces/save.g +14 -0
- passagemath_gap_pkg_semigroups-10.6.29.dist-info/METADATA +93 -0
- passagemath_gap_pkg_semigroups-10.6.29.dist-info/METADATA.bak +94 -0
- passagemath_gap_pkg_semigroups-10.6.29.dist-info/RECORD +354 -0
- passagemath_gap_pkg_semigroups-10.6.29.dist-info/WHEEL +6 -0
- passagemath_gap_pkg_semigroups-10.6.29.dist-info/top_level.txt +1 -0
- passagemath_gap_pkg_semigroups.libs/libsemigroups-6be12ad2.so.2.0.0 +0 -0
- sage/all__sagemath_gap_pkg_semigroups.py +1 -0
- sage/libs/all__sagemath_gap_pkg_semigroups.py +1 -0
- sage/libs/gap_pkg_semigroups.abi3.so +0 -0
|
@@ -0,0 +1,1069 @@
|
|
|
1
|
+
This file contains any messages produced by compilers while
|
|
2
|
+
running configure, to aid debugging if configure makes a mistake.
|
|
3
|
+
|
|
4
|
+
It was created by semigroups configure GAP package, which was
|
|
5
|
+
generated by GNU Autoconf 2.72. Invocation command line was
|
|
6
|
+
|
|
7
|
+
$ ./configure --prefix=/host/sage-manylinux_2_28_x86_64 --libdir=/host/sage-manylinux_2_28_x86_64/lib --disable-static --disable-maintainer-mode --disable-dependency-tracking --with-gaproot=/host/sage-manylinux_2_28_x86_64/lib/gap/ --with-external-libsemigroups
|
|
8
|
+
|
|
9
|
+
## --------- ##
|
|
10
|
+
## Platform. ##
|
|
11
|
+
## --------- ##
|
|
12
|
+
|
|
13
|
+
hostname = aee933eeeeed
|
|
14
|
+
uname -m = x86_64
|
|
15
|
+
uname -r = 6.11.0-1018-azure
|
|
16
|
+
uname -s = Linux
|
|
17
|
+
uname -v = #18~24.04.1-Ubuntu SMP Sat Jun 28 04:46:03 UTC 2025
|
|
18
|
+
|
|
19
|
+
/usr/bin/uname -p = x86_64
|
|
20
|
+
/bin/uname -X = unknown
|
|
21
|
+
|
|
22
|
+
/bin/arch = x86_64
|
|
23
|
+
/usr/bin/arch -k = unknown
|
|
24
|
+
/usr/convex/getsysinfo = unknown
|
|
25
|
+
/usr/bin/hostinfo = unknown
|
|
26
|
+
/bin/machine = unknown
|
|
27
|
+
/usr/bin/oslevel = unknown
|
|
28
|
+
/bin/universe = unknown
|
|
29
|
+
|
|
30
|
+
PATH: /host/sage-manylinux_2_28_x86_64/libexec/ccache/
|
|
31
|
+
PATH: /project/build/bin/
|
|
32
|
+
PATH: /project/tools/
|
|
33
|
+
PATH: /host/sage-manylinux_2_28_x86_64/var/lib/sage/venv-python3.9/bin/
|
|
34
|
+
PATH: /host/sage-manylinux_2_28_x86_64/bin/
|
|
35
|
+
PATH: /host/sage-manylinux_2_28_x86_64/libexec/ccache/
|
|
36
|
+
PATH: /project/build/bin/
|
|
37
|
+
PATH: /project/tools/
|
|
38
|
+
PATH: /host/sage-manylinux_2_28_x86_64/bin/
|
|
39
|
+
PATH: /project/src/bin/
|
|
40
|
+
PATH: /host/sage-manylinux_2_28_x86_64/bin/
|
|
41
|
+
PATH: /project/build/bin/
|
|
42
|
+
PATH: /project/src/bin/
|
|
43
|
+
PATH: /host/sage-manylinux_2_28_x86_64/bin/
|
|
44
|
+
PATH: /project/prefix/bin/
|
|
45
|
+
PATH: /opt/python/cp39-cp39/bin/
|
|
46
|
+
PATH: /opt/rh/gcc-toolset-14/root/usr/bin/
|
|
47
|
+
PATH: /usr/local/sbin/
|
|
48
|
+
PATH: /usr/local/bin/
|
|
49
|
+
PATH: /usr/sbin/
|
|
50
|
+
PATH: /usr/bin/
|
|
51
|
+
PATH: /sbin/
|
|
52
|
+
PATH: /bin/
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
## ----------- ##
|
|
56
|
+
## Core tests. ##
|
|
57
|
+
## ----------- ##
|
|
58
|
+
|
|
59
|
+
configure:2600: looking for aux files: config.guess config.sub
|
|
60
|
+
configure:2613: trying ./
|
|
61
|
+
configure:2642: ./config.guess found
|
|
62
|
+
configure:2642: ./config.sub found
|
|
63
|
+
configure:2895: checking for C++ compiler version
|
|
64
|
+
configure:2904: g++ -std=gnu++11 --version >&5
|
|
65
|
+
g++ (GCC) 14.2.1 20250110 (Red Hat 14.2.1-7)
|
|
66
|
+
Copyright (C) 2024 Free Software Foundation, Inc.
|
|
67
|
+
This is free software; see the source for copying conditions. There is NO
|
|
68
|
+
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
69
|
+
|
|
70
|
+
configure:2915: $? = 0
|
|
71
|
+
configure:2904: g++ -std=gnu++11 -v >&5
|
|
72
|
+
Using built-in specs.
|
|
73
|
+
COLLECT_GCC=/opt/rh/gcc-toolset-14/root/usr/bin/g++
|
|
74
|
+
COLLECT_LTO_WRAPPER=/opt/rh/gcc-toolset-14/root/usr/libexec/gcc/x86_64-redhat-linux/14/lto-wrapper
|
|
75
|
+
OFFLOAD_TARGET_NAMES=nvptx-none
|
|
76
|
+
OFFLOAD_TARGET_DEFAULT=1
|
|
77
|
+
Target: x86_64-redhat-linux
|
|
78
|
+
Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/gcc-toolset-14/root/usr --mandir=/opt/rh/gcc-toolset-14/root/usr/share/man --infodir=/opt/rh/gcc-toolset-14/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --enable-libstdcxx-backtrace --with-libstdcxx-zoneinfo=/usr/share/zoneinfo --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-14.2.1-20250110/obj-x86_64-redhat-linux/isl-install --enable-offload-targets=nvptx-none --without-cuda-driver --enable-offload-defaulted --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
|
|
79
|
+
Thread model: posix
|
|
80
|
+
Supported LTO compression algorithms: zlib zstd
|
|
81
|
+
gcc version 14.2.1 20250110 (Red Hat 14.2.1-7) (GCC)
|
|
82
|
+
... rest of stderr output deleted ...
|
|
83
|
+
configure:2915: $? = 0
|
|
84
|
+
configure:2904: g++ -std=gnu++11 -V >&5
|
|
85
|
+
g++: error: unrecognized command-line option '-V'
|
|
86
|
+
g++: fatal error: no input files
|
|
87
|
+
compilation terminated.
|
|
88
|
+
configure:2915: $? = 1
|
|
89
|
+
configure:2904: g++ -std=gnu++11 -qversion >&5
|
|
90
|
+
g++: error: unrecognized command-line option '-qversion'; did you mean '--version'?
|
|
91
|
+
g++: fatal error: no input files
|
|
92
|
+
compilation terminated.
|
|
93
|
+
configure:2915: $? = 1
|
|
94
|
+
configure:2935: checking whether the C++ compiler works
|
|
95
|
+
configure:2957: g++ -std=gnu++11 -g -O2 -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp >&5
|
|
96
|
+
configure:2961: $? = 0
|
|
97
|
+
configure:3012: result: yes
|
|
98
|
+
configure:3016: checking for C++ compiler default output file name
|
|
99
|
+
configure:3018: result: a.out
|
|
100
|
+
configure:3024: checking for suffix of executables
|
|
101
|
+
configure:3031: g++ -std=gnu++11 -o conftest -g -O2 -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp >&5
|
|
102
|
+
configure:3035: $? = 0
|
|
103
|
+
configure:3059: result:
|
|
104
|
+
configure:3083: checking whether we are cross compiling
|
|
105
|
+
configure:3091: g++ -std=gnu++11 -o conftest -g -O2 -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp >&5
|
|
106
|
+
configure:3095: $? = 0
|
|
107
|
+
configure:3102: ./conftest
|
|
108
|
+
configure:3106: $? = 0
|
|
109
|
+
configure:3121: result: no
|
|
110
|
+
configure:3127: checking for suffix of object files
|
|
111
|
+
configure:3150: g++ -std=gnu++11 -c -g -O2 conftest.cpp >&5
|
|
112
|
+
configure:3154: $? = 0
|
|
113
|
+
configure:3178: result: o
|
|
114
|
+
configure:3182: checking whether the compiler supports GNU C++
|
|
115
|
+
configure:3202: g++ -std=gnu++11 -c -g -O2 conftest.cpp >&5
|
|
116
|
+
configure:3202: $? = 0
|
|
117
|
+
configure:3214: result: yes
|
|
118
|
+
configure:3225: checking whether g++ -std=gnu++11 accepts -g
|
|
119
|
+
configure:3246: g++ -std=gnu++11 -c -g conftest.cpp >&5
|
|
120
|
+
configure:3246: $? = 0
|
|
121
|
+
configure:3293: result: yes
|
|
122
|
+
configure:3313: checking for g++ -std=gnu++11 option to enable C++11 features
|
|
123
|
+
configure:3328: g++ -std=gnu++11 -c -g -O2 conftest.cpp >&5
|
|
124
|
+
conftest.cpp: In function 'int main(int, char**)':
|
|
125
|
+
conftest.cpp:175:25: warning: empty parentheses were disambiguated as a function declaration [-Wvexing-parse]
|
|
126
|
+
175 | cxx11test::delegate d2();
|
|
127
|
+
| ^~
|
|
128
|
+
conftest.cpp:175:25: note: remove parentheses to default-initialize a variable
|
|
129
|
+
175 | cxx11test::delegate d2();
|
|
130
|
+
| ^~
|
|
131
|
+
| --
|
|
132
|
+
conftest.cpp:175:25: note: or replace parentheses with braces to value-initialize a variable
|
|
133
|
+
configure:3328: $? = 0
|
|
134
|
+
configure:3347: result: none needed
|
|
135
|
+
configure:3432: checking whether g++ -std=gnu++11 supports C++14 features by default
|
|
136
|
+
configure:3853: g++ -std=gnu++11 -c -g -O2 conftest.cpp >&5
|
|
137
|
+
conftest.cpp:311:2: error: #error "This is not a C++14 compiler"
|
|
138
|
+
311 | #error "This is not a C++14 compiler"
|
|
139
|
+
| ^~~~~
|
|
140
|
+
configure:3853: $? = 1
|
|
141
|
+
configure: failed program was:
|
|
142
|
+
| /* confdefs.h */
|
|
143
|
+
| #define PACKAGE_NAME "semigroups"
|
|
144
|
+
| #define PACKAGE_TARNAME "semigroups"
|
|
145
|
+
| #define PACKAGE_VERSION "GAP package"
|
|
146
|
+
| #define PACKAGE_STRING "semigroups GAP package"
|
|
147
|
+
| #define PACKAGE_BUGREPORT ""
|
|
148
|
+
| #define PACKAGE_URL ""
|
|
149
|
+
| /* end confdefs.h. */
|
|
150
|
+
|
|
|
151
|
+
|
|
|
152
|
+
| // If the compiler admits that it is not ready for C++11, why torture it?
|
|
153
|
+
| // Hopefully, this will speed up the test.
|
|
154
|
+
|
|
|
155
|
+
| #ifndef __cplusplus
|
|
156
|
+
|
|
|
157
|
+
| #error "This is not a C++ compiler"
|
|
158
|
+
|
|
|
159
|
+
| // MSVC always sets __cplusplus to 199711L in older versions; newer versions
|
|
160
|
+
| // only set it correctly if /Zc:__cplusplus is specified as well as a
|
|
161
|
+
| // /std:c++NN switch:
|
|
162
|
+
| // https://devblogs.microsoft.com/cppblog/msvc-now-correctly-reports-__cplusplus/
|
|
163
|
+
| #elif __cplusplus < 201103L && !defined _MSC_VER
|
|
164
|
+
|
|
|
165
|
+
| #error "This is not a C++11 compiler"
|
|
166
|
+
|
|
|
167
|
+
| #else
|
|
168
|
+
|
|
|
169
|
+
| namespace cxx11
|
|
170
|
+
| {
|
|
171
|
+
|
|
|
172
|
+
| namespace test_static_assert
|
|
173
|
+
| {
|
|
174
|
+
|
|
|
175
|
+
| template <typename T>
|
|
176
|
+
| struct check
|
|
177
|
+
| {
|
|
178
|
+
| static_assert(sizeof(int) <= sizeof(T), "not big enough");
|
|
179
|
+
| };
|
|
180
|
+
|
|
|
181
|
+
| }
|
|
182
|
+
|
|
|
183
|
+
| namespace test_final_override
|
|
184
|
+
| {
|
|
185
|
+
|
|
|
186
|
+
| struct Base
|
|
187
|
+
| {
|
|
188
|
+
| virtual ~Base() {}
|
|
189
|
+
| virtual void f() {}
|
|
190
|
+
| };
|
|
191
|
+
|
|
|
192
|
+
| struct Derived : public Base
|
|
193
|
+
| {
|
|
194
|
+
| virtual ~Derived() override {}
|
|
195
|
+
| virtual void f() override {}
|
|
196
|
+
| };
|
|
197
|
+
|
|
|
198
|
+
| }
|
|
199
|
+
|
|
|
200
|
+
| namespace test_double_right_angle_brackets
|
|
201
|
+
| {
|
|
202
|
+
|
|
|
203
|
+
| template < typename T >
|
|
204
|
+
| struct check {};
|
|
205
|
+
|
|
|
206
|
+
| typedef check<void> single_type;
|
|
207
|
+
| typedef check<check<void>> double_type;
|
|
208
|
+
| typedef check<check<check<void>>> triple_type;
|
|
209
|
+
| typedef check<check<check<check<void>>>> quadruple_type;
|
|
210
|
+
|
|
|
211
|
+
| }
|
|
212
|
+
|
|
|
213
|
+
| namespace test_decltype
|
|
214
|
+
| {
|
|
215
|
+
|
|
|
216
|
+
| int
|
|
217
|
+
| f()
|
|
218
|
+
| {
|
|
219
|
+
| int a = 1;
|
|
220
|
+
| decltype(a) b = 2;
|
|
221
|
+
| return a + b;
|
|
222
|
+
| }
|
|
223
|
+
|
|
|
224
|
+
| }
|
|
225
|
+
|
|
|
226
|
+
| namespace test_type_deduction
|
|
227
|
+
| {
|
|
228
|
+
|
|
|
229
|
+
| template < typename T1, typename T2 >
|
|
230
|
+
| struct is_same
|
|
231
|
+
| {
|
|
232
|
+
| static const bool value = false;
|
|
233
|
+
| };
|
|
234
|
+
|
|
|
235
|
+
| template < typename T >
|
|
236
|
+
| struct is_same<T, T>
|
|
237
|
+
| {
|
|
238
|
+
| static const bool value = true;
|
|
239
|
+
| };
|
|
240
|
+
|
|
|
241
|
+
| template < typename T1, typename T2 >
|
|
242
|
+
| auto
|
|
243
|
+
| add(T1 a1, T2 a2) -> decltype(a1 + a2)
|
|
244
|
+
| {
|
|
245
|
+
| return a1 + a2;
|
|
246
|
+
| }
|
|
247
|
+
|
|
|
248
|
+
| int
|
|
249
|
+
| test(const int c, volatile int v)
|
|
250
|
+
| {
|
|
251
|
+
| static_assert(is_same<int, decltype(0)>::value == true, "");
|
|
252
|
+
| static_assert(is_same<int, decltype(c)>::value == false, "");
|
|
253
|
+
| static_assert(is_same<int, decltype(v)>::value == false, "");
|
|
254
|
+
| auto ac = c;
|
|
255
|
+
| auto av = v;
|
|
256
|
+
| auto sumi = ac + av + 'x';
|
|
257
|
+
| auto sumf = ac + av + 1.0;
|
|
258
|
+
| static_assert(is_same<int, decltype(ac)>::value == true, "");
|
|
259
|
+
| static_assert(is_same<int, decltype(av)>::value == true, "");
|
|
260
|
+
| static_assert(is_same<int, decltype(sumi)>::value == true, "");
|
|
261
|
+
| static_assert(is_same<int, decltype(sumf)>::value == false, "");
|
|
262
|
+
| static_assert(is_same<int, decltype(add(c, v))>::value == true, "");
|
|
263
|
+
| return (sumf > 0.0) ? sumi : add(c, v);
|
|
264
|
+
| }
|
|
265
|
+
|
|
|
266
|
+
| }
|
|
267
|
+
|
|
|
268
|
+
| namespace test_noexcept
|
|
269
|
+
| {
|
|
270
|
+
|
|
|
271
|
+
| int f() { return 0; }
|
|
272
|
+
| int g() noexcept { return 0; }
|
|
273
|
+
|
|
|
274
|
+
| static_assert(noexcept(f()) == false, "");
|
|
275
|
+
| static_assert(noexcept(g()) == true, "");
|
|
276
|
+
|
|
|
277
|
+
| }
|
|
278
|
+
|
|
|
279
|
+
| namespace test_constexpr
|
|
280
|
+
| {
|
|
281
|
+
|
|
|
282
|
+
| template < typename CharT >
|
|
283
|
+
| unsigned long constexpr
|
|
284
|
+
| strlen_c_r(const CharT *const s, const unsigned long acc) noexcept
|
|
285
|
+
| {
|
|
286
|
+
| return *s ? strlen_c_r(s + 1, acc + 1) : acc;
|
|
287
|
+
| }
|
|
288
|
+
|
|
|
289
|
+
| template < typename CharT >
|
|
290
|
+
| unsigned long constexpr
|
|
291
|
+
| strlen_c(const CharT *const s) noexcept
|
|
292
|
+
| {
|
|
293
|
+
| return strlen_c_r(s, 0UL);
|
|
294
|
+
| }
|
|
295
|
+
|
|
|
296
|
+
| static_assert(strlen_c("") == 0UL, "");
|
|
297
|
+
| static_assert(strlen_c("1") == 1UL, "");
|
|
298
|
+
| static_assert(strlen_c("example") == 7UL, "");
|
|
299
|
+
| static_assert(strlen_c("another\0example") == 7UL, "");
|
|
300
|
+
|
|
|
301
|
+
| }
|
|
302
|
+
|
|
|
303
|
+
| namespace test_rvalue_references
|
|
304
|
+
| {
|
|
305
|
+
|
|
|
306
|
+
| template < int N >
|
|
307
|
+
| struct answer
|
|
308
|
+
| {
|
|
309
|
+
| static constexpr int value = N;
|
|
310
|
+
| };
|
|
311
|
+
|
|
|
312
|
+
| answer<1> f(int&) { return answer<1>(); }
|
|
313
|
+
| answer<2> f(const int&) { return answer<2>(); }
|
|
314
|
+
| answer<3> f(int&&) { return answer<3>(); }
|
|
315
|
+
|
|
|
316
|
+
| void
|
|
317
|
+
| test()
|
|
318
|
+
| {
|
|
319
|
+
| int i = 0;
|
|
320
|
+
| const int c = 0;
|
|
321
|
+
| static_assert(decltype(f(i))::value == 1, "");
|
|
322
|
+
| static_assert(decltype(f(c))::value == 2, "");
|
|
323
|
+
| static_assert(decltype(f(0))::value == 3, "");
|
|
324
|
+
| }
|
|
325
|
+
|
|
|
326
|
+
| }
|
|
327
|
+
|
|
|
328
|
+
| namespace test_uniform_initialization
|
|
329
|
+
| {
|
|
330
|
+
|
|
|
331
|
+
| struct test
|
|
332
|
+
| {
|
|
333
|
+
| static const int zero {};
|
|
334
|
+
| static const int one {1};
|
|
335
|
+
| };
|
|
336
|
+
|
|
|
337
|
+
| static_assert(test::zero == 0, "");
|
|
338
|
+
| static_assert(test::one == 1, "");
|
|
339
|
+
|
|
|
340
|
+
| }
|
|
341
|
+
|
|
|
342
|
+
| namespace test_lambdas
|
|
343
|
+
| {
|
|
344
|
+
|
|
|
345
|
+
| void
|
|
346
|
+
| test1()
|
|
347
|
+
| {
|
|
348
|
+
| auto lambda1 = [](){};
|
|
349
|
+
| auto lambda2 = lambda1;
|
|
350
|
+
| lambda1();
|
|
351
|
+
| lambda2();
|
|
352
|
+
| }
|
|
353
|
+
|
|
|
354
|
+
| int
|
|
355
|
+
| test2()
|
|
356
|
+
| {
|
|
357
|
+
| auto a = [](int i, int j){ return i + j; }(1, 2);
|
|
358
|
+
| auto b = []() -> int { return '0'; }();
|
|
359
|
+
| auto c = [=](){ return a + b; }();
|
|
360
|
+
| auto d = [&](){ return c; }();
|
|
361
|
+
| auto e = [a, &b](int x) mutable {
|
|
362
|
+
| const auto identity = [](int y){ return y; };
|
|
363
|
+
| for (auto i = 0; i < a; ++i)
|
|
364
|
+
| a += b--;
|
|
365
|
+
| return x + identity(a + b);
|
|
366
|
+
| }(0);
|
|
367
|
+
| return a + b + c + d + e;
|
|
368
|
+
| }
|
|
369
|
+
|
|
|
370
|
+
| int
|
|
371
|
+
| test3()
|
|
372
|
+
| {
|
|
373
|
+
| const auto nullary = [](){ return 0; };
|
|
374
|
+
| const auto unary = [](int x){ return x; };
|
|
375
|
+
| using nullary_t = decltype(nullary);
|
|
376
|
+
| using unary_t = decltype(unary);
|
|
377
|
+
| const auto higher1st = [](nullary_t f){ return f(); };
|
|
378
|
+
| const auto higher2nd = [unary](nullary_t f1){
|
|
379
|
+
| return [unary, f1](unary_t f2){ return f2(unary(f1())); };
|
|
380
|
+
| };
|
|
381
|
+
| return higher1st(nullary) + higher2nd(nullary)(unary);
|
|
382
|
+
| }
|
|
383
|
+
|
|
|
384
|
+
| }
|
|
385
|
+
|
|
|
386
|
+
| namespace test_variadic_templates
|
|
387
|
+
| {
|
|
388
|
+
|
|
|
389
|
+
| template <int...>
|
|
390
|
+
| struct sum;
|
|
391
|
+
|
|
|
392
|
+
| template <int N0, int... N1toN>
|
|
393
|
+
| struct sum<N0, N1toN...>
|
|
394
|
+
| {
|
|
395
|
+
| static constexpr auto value = N0 + sum<N1toN...>::value;
|
|
396
|
+
| };
|
|
397
|
+
|
|
|
398
|
+
| template <>
|
|
399
|
+
| struct sum<>
|
|
400
|
+
| {
|
|
401
|
+
| static constexpr auto value = 0;
|
|
402
|
+
| };
|
|
403
|
+
|
|
|
404
|
+
| static_assert(sum<>::value == 0, "");
|
|
405
|
+
| static_assert(sum<1>::value == 1, "");
|
|
406
|
+
| static_assert(sum<23>::value == 23, "");
|
|
407
|
+
| static_assert(sum<1, 2>::value == 3, "");
|
|
408
|
+
| static_assert(sum<5, 5, 11>::value == 21, "");
|
|
409
|
+
| static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, "");
|
|
410
|
+
|
|
|
411
|
+
| }
|
|
412
|
+
|
|
|
413
|
+
| // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae
|
|
414
|
+
| // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function
|
|
415
|
+
| // because of this.
|
|
416
|
+
| namespace test_template_alias_sfinae
|
|
417
|
+
| {
|
|
418
|
+
|
|
|
419
|
+
| struct foo {};
|
|
420
|
+
|
|
|
421
|
+
| template<typename T>
|
|
422
|
+
| using member = typename T::member_type;
|
|
423
|
+
|
|
|
424
|
+
| template<typename T>
|
|
425
|
+
| void func(...) {}
|
|
426
|
+
|
|
|
427
|
+
| template<typename T>
|
|
428
|
+
| void func(member<T>*) {}
|
|
429
|
+
|
|
|
430
|
+
| void test();
|
|
431
|
+
|
|
|
432
|
+
| void test() { func<foo>(0); }
|
|
433
|
+
|
|
|
434
|
+
| }
|
|
435
|
+
|
|
|
436
|
+
| } // namespace cxx11
|
|
437
|
+
|
|
|
438
|
+
| #endif // __cplusplus >= 201103L
|
|
439
|
+
|
|
|
440
|
+
|
|
|
441
|
+
|
|
|
442
|
+
|
|
|
443
|
+
| // If the compiler admits that it is not ready for C++14, why torture it?
|
|
444
|
+
| // Hopefully, this will speed up the test.
|
|
445
|
+
|
|
|
446
|
+
| #ifndef __cplusplus
|
|
447
|
+
|
|
|
448
|
+
| #error "This is not a C++ compiler"
|
|
449
|
+
|
|
|
450
|
+
| #elif __cplusplus < 201402L && !defined _MSC_VER
|
|
451
|
+
|
|
|
452
|
+
| #error "This is not a C++14 compiler"
|
|
453
|
+
|
|
|
454
|
+
| #else
|
|
455
|
+
|
|
|
456
|
+
| namespace cxx14
|
|
457
|
+
| {
|
|
458
|
+
|
|
|
459
|
+
| namespace test_polymorphic_lambdas
|
|
460
|
+
| {
|
|
461
|
+
|
|
|
462
|
+
| int
|
|
463
|
+
| test()
|
|
464
|
+
| {
|
|
465
|
+
| const auto lambda = [](auto&&... args){
|
|
466
|
+
| const auto istiny = [](auto x){
|
|
467
|
+
| return (sizeof(x) == 1UL) ? 1 : 0;
|
|
468
|
+
| };
|
|
469
|
+
| const int aretiny[] = { istiny(args)... };
|
|
470
|
+
| return aretiny[0];
|
|
471
|
+
| };
|
|
472
|
+
| return lambda(1, 1L, 1.0f, '1');
|
|
473
|
+
| }
|
|
474
|
+
|
|
|
475
|
+
| }
|
|
476
|
+
|
|
|
477
|
+
| namespace test_binary_literals
|
|
478
|
+
| {
|
|
479
|
+
|
|
|
480
|
+
| constexpr auto ivii = 0b0000000000101010;
|
|
481
|
+
| static_assert(ivii == 42, "wrong value");
|
|
482
|
+
|
|
|
483
|
+
| }
|
|
484
|
+
|
|
|
485
|
+
| namespace test_generalized_constexpr
|
|
486
|
+
| {
|
|
487
|
+
|
|
|
488
|
+
| template < typename CharT >
|
|
489
|
+
| constexpr unsigned long
|
|
490
|
+
| strlen_c(const CharT *const s) noexcept
|
|
491
|
+
| {
|
|
492
|
+
| auto length = 0UL;
|
|
493
|
+
| for (auto p = s; *p; ++p)
|
|
494
|
+
| ++length;
|
|
495
|
+
| return length;
|
|
496
|
+
| }
|
|
497
|
+
|
|
|
498
|
+
| static_assert(strlen_c("") == 0UL, "");
|
|
499
|
+
| static_assert(strlen_c("x") == 1UL, "");
|
|
500
|
+
| static_assert(strlen_c("test") == 4UL, "");
|
|
501
|
+
| static_assert(strlen_c("another\0test") == 7UL, "");
|
|
502
|
+
|
|
|
503
|
+
| }
|
|
504
|
+
|
|
|
505
|
+
| namespace test_lambda_init_capture
|
|
506
|
+
| {
|
|
507
|
+
|
|
|
508
|
+
| int
|
|
509
|
+
| test()
|
|
510
|
+
| {
|
|
511
|
+
| auto x = 0;
|
|
512
|
+
| const auto lambda1 = [a = x](int b){ return a + b; };
|
|
513
|
+
| const auto lambda2 = [a = lambda1(x)](){ return a; };
|
|
514
|
+
| return lambda2();
|
|
515
|
+
| }
|
|
516
|
+
|
|
|
517
|
+
| }
|
|
518
|
+
|
|
|
519
|
+
| namespace test_digit_separators
|
|
520
|
+
| {
|
|
521
|
+
|
|
|
522
|
+
| constexpr auto ten_million = 100'000'000;
|
|
523
|
+
| static_assert(ten_million == 100000000, "");
|
|
524
|
+
|
|
|
525
|
+
| }
|
|
526
|
+
|
|
|
527
|
+
| namespace test_return_type_deduction
|
|
528
|
+
| {
|
|
529
|
+
|
|
|
530
|
+
| auto f(int& x) { return x; }
|
|
531
|
+
| decltype(auto) g(int& x) { return x; }
|
|
532
|
+
|
|
|
533
|
+
| template < typename T1, typename T2 >
|
|
534
|
+
| struct is_same
|
|
535
|
+
| {
|
|
536
|
+
| static constexpr auto value = false;
|
|
537
|
+
| };
|
|
538
|
+
|
|
|
539
|
+
| template < typename T >
|
|
540
|
+
| struct is_same<T, T>
|
|
541
|
+
| {
|
|
542
|
+
| static constexpr auto value = true;
|
|
543
|
+
| };
|
|
544
|
+
|
|
|
545
|
+
| int
|
|
546
|
+
| test()
|
|
547
|
+
| {
|
|
548
|
+
| auto x = 0;
|
|
549
|
+
| static_assert(is_same<int, decltype(f(x))>::value, "");
|
|
550
|
+
| static_assert(is_same<int&, decltype(g(x))>::value, "");
|
|
551
|
+
| return x;
|
|
552
|
+
| }
|
|
553
|
+
|
|
|
554
|
+
| }
|
|
555
|
+
|
|
|
556
|
+
| } // namespace cxx14
|
|
557
|
+
|
|
|
558
|
+
| #endif // __cplusplus >= 201402L
|
|
559
|
+
|
|
|
560
|
+
|
|
|
561
|
+
|
|
|
562
|
+
configure:3863: result: no
|
|
563
|
+
configure:3873: checking whether g++ -std=gnu++11 supports C++14 features with -std=gnu++14
|
|
564
|
+
configure:4296: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
565
|
+
configure:4296: $? = 0
|
|
566
|
+
configure:4308: result: yes
|
|
567
|
+
configure:4816: checking for GAP root directory
|
|
568
|
+
configure:4833: result: /host/sage-manylinux_2_28_x86_64/lib/gap
|
|
569
|
+
configure:4857: checking for GAP architecture
|
|
570
|
+
configure:4864: result: x86_64-pc-linux-gnu-default64-kv10
|
|
571
|
+
configure:4915: checking build system type
|
|
572
|
+
configure:4931: result: x86_64-pc-linux-gnu
|
|
573
|
+
configure:4951: checking host system type
|
|
574
|
+
configure:4966: result: x86_64-pc-linux-gnu
|
|
575
|
+
configure:5049: checking for gcc
|
|
576
|
+
configure:5082: result: gcc
|
|
577
|
+
configure:5441: checking for C compiler version
|
|
578
|
+
configure:5450: gcc --version >&5
|
|
579
|
+
gcc (GCC) 14.2.1 20250110 (Red Hat 14.2.1-7)
|
|
580
|
+
Copyright (C) 2024 Free Software Foundation, Inc.
|
|
581
|
+
This is free software; see the source for copying conditions. There is NO
|
|
582
|
+
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
583
|
+
|
|
584
|
+
configure:5461: $? = 0
|
|
585
|
+
configure:5450: gcc -v >&5
|
|
586
|
+
Using built-in specs.
|
|
587
|
+
COLLECT_GCC=/opt/rh/gcc-toolset-14/root/usr/bin/gcc
|
|
588
|
+
COLLECT_LTO_WRAPPER=/opt/rh/gcc-toolset-14/root/usr/libexec/gcc/x86_64-redhat-linux/14/lto-wrapper
|
|
589
|
+
OFFLOAD_TARGET_NAMES=nvptx-none
|
|
590
|
+
OFFLOAD_TARGET_DEFAULT=1
|
|
591
|
+
Target: x86_64-redhat-linux
|
|
592
|
+
Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/gcc-toolset-14/root/usr --mandir=/opt/rh/gcc-toolset-14/root/usr/share/man --infodir=/opt/rh/gcc-toolset-14/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --enable-libstdcxx-backtrace --with-libstdcxx-zoneinfo=/usr/share/zoneinfo --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-14.2.1-20250110/obj-x86_64-redhat-linux/isl-install --enable-offload-targets=nvptx-none --without-cuda-driver --enable-offload-defaulted --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
|
|
593
|
+
Thread model: posix
|
|
594
|
+
Supported LTO compression algorithms: zlib zstd
|
|
595
|
+
gcc version 14.2.1 20250110 (Red Hat 14.2.1-7) (GCC)
|
|
596
|
+
... rest of stderr output deleted ...
|
|
597
|
+
configure:5461: $? = 0
|
|
598
|
+
configure:5450: gcc -V >&5
|
|
599
|
+
gcc: error: unrecognized command-line option '-V'
|
|
600
|
+
gcc: fatal error: no input files
|
|
601
|
+
compilation terminated.
|
|
602
|
+
configure:5461: $? = 1
|
|
603
|
+
configure:5450: gcc -qversion >&5
|
|
604
|
+
gcc: error: unrecognized command-line option '-qversion'; did you mean '--version'?
|
|
605
|
+
gcc: fatal error: no input files
|
|
606
|
+
compilation terminated.
|
|
607
|
+
configure:5461: $? = 1
|
|
608
|
+
configure:5450: gcc -version >&5
|
|
609
|
+
gcc: error: unrecognized command-line option '-version'
|
|
610
|
+
gcc: fatal error: no input files
|
|
611
|
+
compilation terminated.
|
|
612
|
+
configure:5461: $? = 1
|
|
613
|
+
configure:5465: checking whether the compiler supports GNU C
|
|
614
|
+
configure:5485: gcc -c -g -O2 conftest.c >&5
|
|
615
|
+
configure:5485: $? = 0
|
|
616
|
+
configure:5497: result: yes
|
|
617
|
+
configure:5508: checking whether gcc accepts -g
|
|
618
|
+
configure:5529: gcc -c -g conftest.c >&5
|
|
619
|
+
configure:5529: $? = 0
|
|
620
|
+
configure:5576: result: yes
|
|
621
|
+
configure:5596: checking for gcc option to enable C11 features
|
|
622
|
+
configure:5611: gcc -c -g -O2 conftest.c >&5
|
|
623
|
+
configure:5611: $? = 0
|
|
624
|
+
configure:5630: result: none needed
|
|
625
|
+
configure:5748: checking for a sed that does not truncate output
|
|
626
|
+
configure:5820: result: /usr/bin/sed
|
|
627
|
+
configure:5831: checking how to run the C preprocessor
|
|
628
|
+
configure:5857: gcc -E conftest.c
|
|
629
|
+
configure:5857: $? = 0
|
|
630
|
+
configure:5873: gcc -E conftest.c
|
|
631
|
+
conftest.c:10:10: fatal error: ac_nonexistent.h: No such file or directory
|
|
632
|
+
10 | #include <ac_nonexistent.h>
|
|
633
|
+
| ^~~~~~~~~~~~~~~~~~
|
|
634
|
+
compilation terminated.
|
|
635
|
+
configure:5873: $? = 1
|
|
636
|
+
configure: failed program was:
|
|
637
|
+
| /* confdefs.h */
|
|
638
|
+
| #define PACKAGE_NAME "semigroups"
|
|
639
|
+
| #define PACKAGE_TARNAME "semigroups"
|
|
640
|
+
| #define PACKAGE_VERSION "GAP package"
|
|
641
|
+
| #define PACKAGE_STRING "semigroups GAP package"
|
|
642
|
+
| #define PACKAGE_BUGREPORT ""
|
|
643
|
+
| #define PACKAGE_URL ""
|
|
644
|
+
| #define HAVE_CXX14 1
|
|
645
|
+
| /* end confdefs.h. */
|
|
646
|
+
| #include <ac_nonexistent.h>
|
|
647
|
+
configure:5902: result: gcc -E
|
|
648
|
+
configure:5916: gcc -E conftest.c
|
|
649
|
+
configure:5916: $? = 0
|
|
650
|
+
configure:5932: gcc -E conftest.c
|
|
651
|
+
conftest.c:10:10: fatal error: ac_nonexistent.h: No such file or directory
|
|
652
|
+
10 | #include <ac_nonexistent.h>
|
|
653
|
+
| ^~~~~~~~~~~~~~~~~~
|
|
654
|
+
compilation terminated.
|
|
655
|
+
configure:5932: $? = 1
|
|
656
|
+
configure: failed program was:
|
|
657
|
+
| /* confdefs.h */
|
|
658
|
+
| #define PACKAGE_NAME "semigroups"
|
|
659
|
+
| #define PACKAGE_TARNAME "semigroups"
|
|
660
|
+
| #define PACKAGE_VERSION "GAP package"
|
|
661
|
+
| #define PACKAGE_STRING "semigroups GAP package"
|
|
662
|
+
| #define PACKAGE_BUGREPORT ""
|
|
663
|
+
| #define PACKAGE_URL ""
|
|
664
|
+
| #define HAVE_CXX14 1
|
|
665
|
+
| /* end confdefs.h. */
|
|
666
|
+
| #include <ac_nonexistent.h>
|
|
667
|
+
configure:5965: checking for egrep -e
|
|
668
|
+
configure:6095: result: /usr/bin/grep -E
|
|
669
|
+
configure:6265: checking whether gcc is Clang
|
|
670
|
+
configure:6293: result: no
|
|
671
|
+
configure:6359: checking whether pthreads work with "-pthread" and "-lpthread"
|
|
672
|
+
configure:6471: gcc -o conftest -g -O2 -pthread -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.c -lpthread >&5
|
|
673
|
+
configure:6471: $? = 0
|
|
674
|
+
configure:6481: result: yes
|
|
675
|
+
configure:6605: checking for joinable pthread attribute
|
|
676
|
+
configure:6624: gcc -o conftest -g -O2 -pthread -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.c -lpthread >&5
|
|
677
|
+
configure:6624: $? = 0
|
|
678
|
+
configure:6634: result: PTHREAD_CREATE_JOINABLE
|
|
679
|
+
configure:6647: checking whether more special flags are required for pthreads
|
|
680
|
+
configure:6662: result: no
|
|
681
|
+
configure:6671: checking for PTHREAD_PRIO_INHERIT
|
|
682
|
+
configure:6689: gcc -o conftest -g -O2 -pthread -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.c -lpthread >&5
|
|
683
|
+
configure:6689: $? = 0
|
|
684
|
+
configure:6701: result: yes
|
|
685
|
+
configure:6878: checking for pthread_create in -lpthread
|
|
686
|
+
configure:6900: g++ -std=gnu++11 -std=gnu++14 -o conftest -g -O2 -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
687
|
+
configure:6900: $? = 0
|
|
688
|
+
configure:6912: result: yes
|
|
689
|
+
configure:6989: checking for pkg-config
|
|
690
|
+
configure:7012: found /usr/bin/pkg-config
|
|
691
|
+
configure:7025: result: /usr/bin/pkg-config
|
|
692
|
+
configure:7050: checking pkg-config is at least version 0.9.0
|
|
693
|
+
configure:7053: result: yes
|
|
694
|
+
configure:7068: checking for gawk
|
|
695
|
+
configure:7089: found /usr/bin/gawk
|
|
696
|
+
configure:7101: result: gawk
|
|
697
|
+
configure:7128: checking for libsemigroups >= 2.7.4
|
|
698
|
+
configure:7135: $PKG_CONFIG --exists --print-errors "libsemigroups >= $REQUI_LIBSEMIGROUPS_VERSION"
|
|
699
|
+
configure:7138: $? = 0
|
|
700
|
+
configure:7152: $PKG_CONFIG --exists --print-errors "libsemigroups >= $REQUI_LIBSEMIGROUPS_VERSION"
|
|
701
|
+
configure:7155: $? = 0
|
|
702
|
+
configure:7193: result: yes
|
|
703
|
+
configure:7282: using external libsemigroups 2.7.4
|
|
704
|
+
configure:7289: $PKG_CONFIG --exists --print-errors "libsemigroups"
|
|
705
|
+
configure:7292: $? = 0
|
|
706
|
+
configure:7333: checking whether to enable debug mode
|
|
707
|
+
configure:7335: result: no
|
|
708
|
+
configure:7345: checking for stdio.h
|
|
709
|
+
configure:7345: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
710
|
+
configure:7345: $? = 0
|
|
711
|
+
configure:7345: result: yes
|
|
712
|
+
configure:7345: checking for stdlib.h
|
|
713
|
+
configure:7345: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
714
|
+
configure:7345: $? = 0
|
|
715
|
+
configure:7345: result: yes
|
|
716
|
+
configure:7345: checking for string.h
|
|
717
|
+
configure:7345: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
718
|
+
configure:7345: $? = 0
|
|
719
|
+
configure:7345: result: yes
|
|
720
|
+
configure:7345: checking for inttypes.h
|
|
721
|
+
configure:7345: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
722
|
+
configure:7345: $? = 0
|
|
723
|
+
configure:7345: result: yes
|
|
724
|
+
configure:7345: checking for stdint.h
|
|
725
|
+
configure:7345: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
726
|
+
configure:7345: $? = 0
|
|
727
|
+
configure:7345: result: yes
|
|
728
|
+
configure:7345: checking for strings.h
|
|
729
|
+
configure:7345: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
730
|
+
configure:7345: $? = 0
|
|
731
|
+
configure:7345: result: yes
|
|
732
|
+
configure:7345: checking for sys/stat.h
|
|
733
|
+
configure:7345: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
734
|
+
configure:7345: $? = 0
|
|
735
|
+
configure:7345: result: yes
|
|
736
|
+
configure:7345: checking for sys/types.h
|
|
737
|
+
configure:7345: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
738
|
+
configure:7345: $? = 0
|
|
739
|
+
configure:7345: result: yes
|
|
740
|
+
configure:7345: checking for unistd.h
|
|
741
|
+
configure:7345: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
742
|
+
configure:7345: $? = 0
|
|
743
|
+
configure:7345: result: yes
|
|
744
|
+
configure:7382: checking whether to enable HPCombi
|
|
745
|
+
configure:7384: result: yes
|
|
746
|
+
configure:7402: checking the required version of HPCombi
|
|
747
|
+
configure:7405: result: 0.0.6
|
|
748
|
+
configure:7411: checking the version of HPCombi that's present
|
|
749
|
+
configure:7414: result: 0.0.6
|
|
750
|
+
configure:7462: checking whether C++ compiler accepts -mavx
|
|
751
|
+
configure:7482: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 -mavx conftest.cpp >&5
|
|
752
|
+
configure:7482: $? = 0
|
|
753
|
+
configure:7493: result: yes
|
|
754
|
+
configure:7522: : HPCOMBI_CXXFLAGS="$HPCOMBI_CXXFLAGS"
|
|
755
|
+
configure:7525: $? = 0
|
|
756
|
+
configure:7542: checking whether C++ compiler accepts -flax-vector-conversions
|
|
757
|
+
configure:7562: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 -flax-vector-conversions conftest.cpp >&5
|
|
758
|
+
configure:7562: $? = 0
|
|
759
|
+
configure:7573: result: yes
|
|
760
|
+
configure:7591: : HPCOMBI_CXXFLAGS="$HPCOMBI_CXXFLAGS"
|
|
761
|
+
configure:7594: $? = 0
|
|
762
|
+
configure:7624: checking for x86intrin.h
|
|
763
|
+
configure:7624: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
764
|
+
configure:7624: $? = 0
|
|
765
|
+
configure:7624: result: yes
|
|
766
|
+
configure:7646: checking for _mm_blendv_epi8
|
|
767
|
+
configure:7663: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
768
|
+
configure:7663: $? = 0
|
|
769
|
+
configure:7673: result: yes
|
|
770
|
+
configure:7680: checking for _mm_cmpeq_epi8
|
|
771
|
+
configure:7697: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
772
|
+
configure:7697: $? = 0
|
|
773
|
+
configure:7707: result: yes
|
|
774
|
+
configure:7714: checking for _mm_cmpestri
|
|
775
|
+
configure:7731: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
776
|
+
configure:7731: $? = 0
|
|
777
|
+
configure:7741: result: yes
|
|
778
|
+
configure:7748: checking for _mm_cmpestrm
|
|
779
|
+
configure:7765: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
780
|
+
configure:7765: $? = 0
|
|
781
|
+
configure:7775: result: yes
|
|
782
|
+
configure:7782: checking for _mm_cmplt_epi8
|
|
783
|
+
configure:7799: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
784
|
+
configure:7799: $? = 0
|
|
785
|
+
configure:7809: result: yes
|
|
786
|
+
configure:7816: checking for _mm_extract_epi64
|
|
787
|
+
configure:7833: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
788
|
+
configure:7833: $? = 0
|
|
789
|
+
configure:7843: result: yes
|
|
790
|
+
configure:7850: checking for _mm_max_epi8
|
|
791
|
+
configure:7867: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
792
|
+
configure:7867: $? = 0
|
|
793
|
+
configure:7877: result: yes
|
|
794
|
+
configure:7884: checking for _mm_max_epu8
|
|
795
|
+
configure:7901: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
796
|
+
configure:7901: $? = 0
|
|
797
|
+
configure:7911: result: yes
|
|
798
|
+
configure:7918: checking for _mm_min_epi8
|
|
799
|
+
configure:7935: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
800
|
+
configure:7935: $? = 0
|
|
801
|
+
configure:7945: result: yes
|
|
802
|
+
configure:7952: checking for _mm_min_epu8
|
|
803
|
+
configure:7969: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
804
|
+
configure:7969: $? = 0
|
|
805
|
+
configure:7979: result: yes
|
|
806
|
+
configure:7986: checking for _mm_movemask_epi8
|
|
807
|
+
configure:8003: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
808
|
+
configure:8003: $? = 0
|
|
809
|
+
configure:8013: result: yes
|
|
810
|
+
configure:8020: checking for _mm_popcnt_u32
|
|
811
|
+
configure:8037: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
812
|
+
configure:8037: $? = 0
|
|
813
|
+
configure:8047: result: yes
|
|
814
|
+
configure:8054: checking for _mm_set_epi64x
|
|
815
|
+
configure:8071: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
816
|
+
configure:8071: $? = 0
|
|
817
|
+
configure:8081: result: yes
|
|
818
|
+
configure:8088: checking for _mm_shuffle_epi8
|
|
819
|
+
configure:8105: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
820
|
+
configure:8105: $? = 0
|
|
821
|
+
configure:8115: result: yes
|
|
822
|
+
configure:8122: checking for _mm_slli_epi32
|
|
823
|
+
configure:8139: g++ -std=gnu++11 -std=gnu++14 -o conftest -mavx -flax-vector-conversions -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib conftest.cpp -lpthread >&5
|
|
824
|
+
configure:8139: $? = 0
|
|
825
|
+
configure:8149: result: yes
|
|
826
|
+
configure:8179: checking for HPCOMBI_CONSTEXPR_FUN_ARGS
|
|
827
|
+
configure:8195: g++ -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
|
|
828
|
+
configure:8195: $? = 0
|
|
829
|
+
configure:8204: result: yes
|
|
830
|
+
configure:8336: creating ./config.status
|
|
831
|
+
|
|
832
|
+
## ---------------------- ##
|
|
833
|
+
## Running config.status. ##
|
|
834
|
+
## ---------------------- ##
|
|
835
|
+
|
|
836
|
+
This file was extended by semigroups config.status GAP package, which was
|
|
837
|
+
generated by GNU Autoconf 2.72. Invocation command line was
|
|
838
|
+
|
|
839
|
+
CONFIG_FILES =
|
|
840
|
+
CONFIG_HEADERS =
|
|
841
|
+
CONFIG_LINKS =
|
|
842
|
+
CONFIG_COMMANDS =
|
|
843
|
+
$ ./config.status
|
|
844
|
+
|
|
845
|
+
on aee933eeeeed
|
|
846
|
+
|
|
847
|
+
config.status:848: creating GNUmakefile
|
|
848
|
+
config.status:848: creating gen/pkgconfig.h
|
|
849
|
+
config.status:1032: executing src/semigroups-config.hpp commands
|
|
850
|
+
config.status:1070: creating src/semigroups-config.hpp - prefix SEMIGROUPS for gen/pkgconfig.h defines
|
|
851
|
+
|
|
852
|
+
## ---------------- ##
|
|
853
|
+
## Cache variables. ##
|
|
854
|
+
## ---------------- ##
|
|
855
|
+
|
|
856
|
+
ac_cv_build=x86_64-pc-linux-gnu
|
|
857
|
+
ac_cv_c_compiler_gnu=yes
|
|
858
|
+
ac_cv_cxx_compiler_gnu=yes
|
|
859
|
+
ac_cv_env_CCC_set=
|
|
860
|
+
ac_cv_env_CCC_value=
|
|
861
|
+
ac_cv_env_CC_set=set
|
|
862
|
+
ac_cv_env_CC_value=gcc
|
|
863
|
+
ac_cv_env_CFLAGS_set=set
|
|
864
|
+
ac_cv_env_CFLAGS_value='-g -O2'
|
|
865
|
+
ac_cv_env_CPPFLAGS_set=
|
|
866
|
+
ac_cv_env_CPPFLAGS_value=
|
|
867
|
+
ac_cv_env_CPP_set=
|
|
868
|
+
ac_cv_env_CPP_value=
|
|
869
|
+
ac_cv_env_CXXFLAGS_set=set
|
|
870
|
+
ac_cv_env_CXXFLAGS_value='-g -O2'
|
|
871
|
+
ac_cv_env_CXX_set=set
|
|
872
|
+
ac_cv_env_CXX_value='g++ -std=gnu++11'
|
|
873
|
+
ac_cv_env_LDFLAGS_set=set
|
|
874
|
+
ac_cv_env_LDFLAGS_value='-Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib '
|
|
875
|
+
ac_cv_env_LIBSEMIGROUPS_CFLAGS_set=
|
|
876
|
+
ac_cv_env_LIBSEMIGROUPS_CFLAGS_value=
|
|
877
|
+
ac_cv_env_LIBSEMIGROUPS_LIBS_set=
|
|
878
|
+
ac_cv_env_LIBSEMIGROUPS_LIBS_value=
|
|
879
|
+
ac_cv_env_LIBSEMIGROUPS_RPATH_set=
|
|
880
|
+
ac_cv_env_LIBSEMIGROUPS_RPATH_value=
|
|
881
|
+
ac_cv_env_LIBS_set=
|
|
882
|
+
ac_cv_env_LIBS_value=
|
|
883
|
+
ac_cv_env_PKG_CONFIG_LIBDIR_set=
|
|
884
|
+
ac_cv_env_PKG_CONFIG_LIBDIR_value=
|
|
885
|
+
ac_cv_env_PKG_CONFIG_PATH_set=set
|
|
886
|
+
ac_cv_env_PKG_CONFIG_PATH_value=/host/sage-manylinux_2_28_x86_64/lib/pkgconfig:/host/sage-manylinux_2_28_x86_64/lib/pkgconfig:/project/prefix/lib/pkgconfig:/usr/local/lib/pkgconfig
|
|
887
|
+
ac_cv_env_PKG_CONFIG_set=
|
|
888
|
+
ac_cv_env_PKG_CONFIG_value=
|
|
889
|
+
ac_cv_env_build_alias_set=
|
|
890
|
+
ac_cv_env_build_alias_value=
|
|
891
|
+
ac_cv_env_host_alias_set=
|
|
892
|
+
ac_cv_env_host_alias_value=
|
|
893
|
+
ac_cv_env_target_alias_set=
|
|
894
|
+
ac_cv_env_target_alias_value=
|
|
895
|
+
ac_cv_header_inttypes_h=yes
|
|
896
|
+
ac_cv_header_stdint_h=yes
|
|
897
|
+
ac_cv_header_stdio_h=yes
|
|
898
|
+
ac_cv_header_stdlib_h=yes
|
|
899
|
+
ac_cv_header_string_h=yes
|
|
900
|
+
ac_cv_header_strings_h=yes
|
|
901
|
+
ac_cv_header_sys_stat_h=yes
|
|
902
|
+
ac_cv_header_sys_types_h=yes
|
|
903
|
+
ac_cv_header_unistd_h=yes
|
|
904
|
+
ac_cv_header_x86intrin_h=yes
|
|
905
|
+
ac_cv_host=x86_64-pc-linux-gnu
|
|
906
|
+
ac_cv_lib_pthread_pthread_create=yes
|
|
907
|
+
ac_cv_objext=o
|
|
908
|
+
ac_cv_path_EGREP_TRADITIONAL='/usr/bin/grep -E'
|
|
909
|
+
ac_cv_path_SED=/usr/bin/sed
|
|
910
|
+
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
|
|
911
|
+
ac_cv_prog_AWK=gawk
|
|
912
|
+
ac_cv_prog_CPP='gcc -E'
|
|
913
|
+
ac_cv_prog_ac_ct_CC=gcc
|
|
914
|
+
ac_cv_prog_cc_c11=
|
|
915
|
+
ac_cv_prog_cc_g=yes
|
|
916
|
+
ac_cv_prog_cc_stdc=
|
|
917
|
+
ac_cv_prog_cxx_cxx11=
|
|
918
|
+
ac_cv_prog_cxx_g=yes
|
|
919
|
+
ac_cv_prog_cxx_stdcxx=
|
|
920
|
+
ax_cv_PTHREAD_CLANG=no
|
|
921
|
+
ax_cv_PTHREAD_JOINABLE_ATTR=PTHREAD_CREATE_JOINABLE
|
|
922
|
+
ax_cv_PTHREAD_PRIO_INHERIT=yes
|
|
923
|
+
ax_cv_PTHREAD_SPECIAL_FLAGS=no
|
|
924
|
+
ax_cv_check_cxxflags___flax_vector_conversions=yes
|
|
925
|
+
ax_cv_check_cxxflags___mavx=yes
|
|
926
|
+
ax_cv_cxx_compile_cxx14=no
|
|
927
|
+
ax_cv_cxx_compile_cxx14__std_gnupp14=yes
|
|
928
|
+
pkg_cv_LIBSEMIGROUPS_CFLAGS=
|
|
929
|
+
pkg_cv_LIBSEMIGROUPS_LIBS='-lsemigroups '
|
|
930
|
+
pkg_cv_LIBSEMIGROUPS_RPATH=/host/sage-manylinux_2_28_x86_64/lib
|
|
931
|
+
|
|
932
|
+
## ----------------- ##
|
|
933
|
+
## Output variables. ##
|
|
934
|
+
## ----------------- ##
|
|
935
|
+
|
|
936
|
+
AWK='gawk'
|
|
937
|
+
CC='gcc'
|
|
938
|
+
CFLAGS='-g -O2'
|
|
939
|
+
CPP='gcc -E'
|
|
940
|
+
CPPFLAGS=''
|
|
941
|
+
CXX='g++ -std=gnu++11 -std=gnu++14'
|
|
942
|
+
CXXFLAGS='-g -O2'
|
|
943
|
+
DEFS='-DHAVE_CONFIG_H'
|
|
944
|
+
ECHO_C=''
|
|
945
|
+
ECHO_N='-n'
|
|
946
|
+
ECHO_T=''
|
|
947
|
+
EXEEXT=''
|
|
948
|
+
GAPARCH='x86_64-pc-linux-gnu-default64-kv10'
|
|
949
|
+
GAPROOT='/host/sage-manylinux_2_28_x86_64/lib/gap'
|
|
950
|
+
GAP_CFLAGS=' -pthread -g -O2'
|
|
951
|
+
GAP_CPPFLAGS='-I/host/sage-manylinux_2_28_x86_64/include/gap/extra -DUSE_GASMAN=1'
|
|
952
|
+
GAP_LDFLAGS=''
|
|
953
|
+
HAVE_CXX14='1'
|
|
954
|
+
HPCOMBI_CONSTEXPR_FUN_ARGS='yes'
|
|
955
|
+
HPCOMBI_CXXFLAGS='-mavx -flax-vector-conversions'
|
|
956
|
+
KERNEL_DEBUG='no'
|
|
957
|
+
LDFLAGS='-Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib '
|
|
958
|
+
LIBOBJS=''
|
|
959
|
+
LIBS='-lpthread '
|
|
960
|
+
LIBSEMIGROUPS_CFLAGS=''
|
|
961
|
+
LIBSEMIGROUPS_HPCOMBI_ENABLED='yes'
|
|
962
|
+
LIBSEMIGROUPS_LIBS='-lsemigroups '
|
|
963
|
+
LIBSEMIGROUPS_RPATH='-Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib'
|
|
964
|
+
LTLIBOBJS=''
|
|
965
|
+
OBJEXT='o'
|
|
966
|
+
PACKAGE_BUGREPORT=''
|
|
967
|
+
PACKAGE_NAME='semigroups'
|
|
968
|
+
PACKAGE_STRING='semigroups GAP package'
|
|
969
|
+
PACKAGE_TARNAME='semigroups'
|
|
970
|
+
PACKAGE_URL=''
|
|
971
|
+
PACKAGE_VERSION='GAP package'
|
|
972
|
+
PATH_SEPARATOR=':'
|
|
973
|
+
PKG_CONFIG='/usr/bin/pkg-config'
|
|
974
|
+
PKG_CONFIG_LIBDIR=''
|
|
975
|
+
PKG_CONFIG_PATH='/host/sage-manylinux_2_28_x86_64/lib/pkgconfig:/host/sage-manylinux_2_28_x86_64/lib/pkgconfig:/project/prefix/lib/pkgconfig:/usr/local/lib/pkgconfig'
|
|
976
|
+
PTHREAD_CC='gcc'
|
|
977
|
+
PTHREAD_CFLAGS='-pthread'
|
|
978
|
+
PTHREAD_CXX='g++ -std=gnu++11 -std=gnu++14'
|
|
979
|
+
PTHREAD_LIBS='-lpthread'
|
|
980
|
+
SED='/usr/bin/sed'
|
|
981
|
+
SHELL='/usr/bin/bash'
|
|
982
|
+
SYS_IS_CYGWIN=''
|
|
983
|
+
WITH_INCLUDED_LIBSEMIGROUPS=''
|
|
984
|
+
ac_ct_CC='gcc'
|
|
985
|
+
ac_ct_CXX=''
|
|
986
|
+
ax_pthread_config=''
|
|
987
|
+
bindir='${exec_prefix}/bin'
|
|
988
|
+
build='x86_64-pc-linux-gnu'
|
|
989
|
+
build_alias=''
|
|
990
|
+
build_cpu='x86_64'
|
|
991
|
+
build_os='linux-gnu'
|
|
992
|
+
build_vendor='pc'
|
|
993
|
+
datadir='${datarootdir}'
|
|
994
|
+
datarootdir='${prefix}/share'
|
|
995
|
+
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
|
|
996
|
+
dvidir='${docdir}'
|
|
997
|
+
exec_prefix='${prefix}'
|
|
998
|
+
host='x86_64-pc-linux-gnu'
|
|
999
|
+
host_alias=''
|
|
1000
|
+
host_cpu='x86_64'
|
|
1001
|
+
host_os='linux-gnu'
|
|
1002
|
+
host_vendor='pc'
|
|
1003
|
+
htmldir='${docdir}'
|
|
1004
|
+
includedir='${prefix}/include'
|
|
1005
|
+
infodir='${datarootdir}/info'
|
|
1006
|
+
libdir='/host/sage-manylinux_2_28_x86_64/lib'
|
|
1007
|
+
libexecdir='${exec_prefix}/libexec'
|
|
1008
|
+
localedir='${datarootdir}/locale'
|
|
1009
|
+
localstatedir='${prefix}/var'
|
|
1010
|
+
mandir='${datarootdir}/man'
|
|
1011
|
+
oldincludedir='/usr/include'
|
|
1012
|
+
pdfdir='${docdir}'
|
|
1013
|
+
prefix='/host/sage-manylinux_2_28_x86_64'
|
|
1014
|
+
program_transform_name='s,x,x,'
|
|
1015
|
+
psdir='${docdir}'
|
|
1016
|
+
runstatedir='${localstatedir}/run'
|
|
1017
|
+
sbindir='${exec_prefix}/sbin'
|
|
1018
|
+
sharedstatedir='${prefix}/com'
|
|
1019
|
+
subdirs=''
|
|
1020
|
+
sysconfdir='${prefix}/etc'
|
|
1021
|
+
target_alias=''
|
|
1022
|
+
|
|
1023
|
+
## ----------- ##
|
|
1024
|
+
## confdefs.h. ##
|
|
1025
|
+
## ----------- ##
|
|
1026
|
+
|
|
1027
|
+
/* confdefs.h */
|
|
1028
|
+
#define PACKAGE_NAME "semigroups"
|
|
1029
|
+
#define PACKAGE_TARNAME "semigroups"
|
|
1030
|
+
#define PACKAGE_VERSION "GAP package"
|
|
1031
|
+
#define PACKAGE_STRING "semigroups GAP package"
|
|
1032
|
+
#define PACKAGE_BUGREPORT ""
|
|
1033
|
+
#define PACKAGE_URL ""
|
|
1034
|
+
#define HAVE_CXX14 1
|
|
1035
|
+
#define HAVE_PTHREAD_PRIO_INHERIT 1
|
|
1036
|
+
#define HAVE_PTHREAD 1
|
|
1037
|
+
#define HAVE_LIBPTHREAD 1
|
|
1038
|
+
#define HAVE_STDIO_H 1
|
|
1039
|
+
#define HAVE_STDLIB_H 1
|
|
1040
|
+
#define HAVE_STRING_H 1
|
|
1041
|
+
#define HAVE_INTTYPES_H 1
|
|
1042
|
+
#define HAVE_STDINT_H 1
|
|
1043
|
+
#define HAVE_STRINGS_H 1
|
|
1044
|
+
#define HAVE_SYS_STAT_H 1
|
|
1045
|
+
#define HAVE_SYS_TYPES_H 1
|
|
1046
|
+
#define HAVE_UNISTD_H 1
|
|
1047
|
+
#define STDC_HEADERS 1
|
|
1048
|
+
#define HAVE_X86INTRIN_H 1
|
|
1049
|
+
#define HPCOMBI_ENABLED 1
|
|
1050
|
+
|
|
1051
|
+
configure: exit 0
|
|
1052
|
+
|
|
1053
|
+
## ---------------------- ##
|
|
1054
|
+
## Running config.status. ##
|
|
1055
|
+
## ---------------------- ##
|
|
1056
|
+
|
|
1057
|
+
This file was extended by semigroups config.status GAP package, which was
|
|
1058
|
+
generated by GNU Autoconf 2.72. Invocation command line was
|
|
1059
|
+
|
|
1060
|
+
CONFIG_FILES =
|
|
1061
|
+
CONFIG_HEADERS =
|
|
1062
|
+
CONFIG_LINKS =
|
|
1063
|
+
CONFIG_COMMANDS =
|
|
1064
|
+
$ ./config.status gen/pkgconfig.h
|
|
1065
|
+
|
|
1066
|
+
on aee933eeeeed
|
|
1067
|
+
|
|
1068
|
+
config.status:848: creating gen/pkgconfig.h
|
|
1069
|
+
config.status:1018: gen/pkgconfig.h is unchanged
|