passagemath-gap-pkg-semigroups 10.6.29__cp312-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.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.

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