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