passagemath-gap-pkg-semigroups 10.6.30__cp312-abi3-macosx_13_0_arm64.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-apple-darwin23-default64-kv10/semigroups.so +0 -0
  15. gap/pkg/semigroups/config.guess +1807 -0
  16. gap/pkg/semigroups/config.log +1158 -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.30.dist-info/METADATA +93 -0
  347. passagemath_gap_pkg_semigroups-10.6.30.dist-info/METADATA.bak +94 -0
  348. passagemath_gap_pkg_semigroups-10.6.30.dist-info/RECORD +354 -0
  349. passagemath_gap_pkg_semigroups-10.6.30.dist-info/WHEEL +6 -0
  350. passagemath_gap_pkg_semigroups-10.6.30.dist-info/top_level.txt +1 -0
  351. passagemath_gap_pkg_semigroups.dylibs/libsemigroups.2.dylib +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,1158 @@
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=/Users/runner/sage-local --libdir=/Users/runner/sage-local/lib --disable-static --disable-maintainer-mode --disable-dependency-tracking --with-gaproot=/Users/runner/sage-local/lib/gap/ --with-external-libsemigroups
8
+
9
+ ## --------- ##
10
+ ## Platform. ##
11
+ ## --------- ##
12
+
13
+ hostname = sat12-dp149-758c57cb-2498-4f05-ae24-4fa99c72cdb3-06809E18E786.local
14
+ uname -m = arm64
15
+ uname -r = 23.6.0
16
+ uname -s = Darwin
17
+ uname -v = Darwin Kernel Version 23.6.0: Thu Apr 24 20:27:23 PDT 2025; root:xnu-10063.141.1.705.2~1/RELEASE_ARM64_VMAPPLE
18
+
19
+ /usr/bin/uname -p = arm
20
+ /bin/uname -X = unknown
21
+
22
+ /bin/arch = unknown
23
+ /usr/bin/arch -k = unknown
24
+ /usr/convex/getsysinfo = unknown
25
+ /usr/bin/hostinfo = Mach kernel version:
26
+ Darwin Kernel Version 23.6.0: Thu Apr 24 20:27:23 PDT 2025; root:xnu-10063.141.1.705.2~1/RELEASE_ARM64_VMAPPLE
27
+ Kernel configured for up to 3 processors.
28
+ 3 processors are physically available.
29
+ 3 processors are logically available.
30
+ Processor type: arm64e (ARM64E)
31
+ Processors active: 0 1 2
32
+ Primary memory available: 7.00 gigabytes
33
+ Default processor set: 490 tasks, 1503 threads, 3 processors
34
+ Load average: 9.25, Mach factor: 0.32
35
+ /bin/machine = unknown
36
+ /usr/bin/oslevel = unknown
37
+ /bin/universe = unknown
38
+
39
+ PATH: /Users/runner/sage-local/libexec/ccache/
40
+ PATH: /Users/runner/work/passagemath/passagemath/build/bin/
41
+ PATH: /Users/runner/work/passagemath/passagemath/tools/
42
+ PATH: /Users/runner/sage-local/var/lib/sage/venv-python3.13/bin/
43
+ PATH: /Users/runner/sage-local/bin/
44
+ PATH: /Users/runner/sage-local/libexec/ccache/
45
+ PATH: /Users/runner/work/passagemath/passagemath/build/bin/
46
+ PATH: /Users/runner/work/passagemath/passagemath/tools/
47
+ PATH: /Users/runner/sage-local/bin/
48
+ PATH: /Users/runner/work/passagemath/passagemath/src/bin/
49
+ PATH: /Users/runner/sage-local/bin/
50
+ PATH: /Users/runner/work/passagemath/passagemath/build/bin/
51
+ PATH: /Users/runner/work/passagemath/passagemath/src/bin/
52
+ PATH: /Users/runner/sage-local/bin/
53
+ PATH: /opt/homebrew/opt/make/libexec/gnubin/
54
+ PATH: /opt/homebrew/opt/texinfo/bin/
55
+ PATH: /opt/homebrew/opt/bzip2/bin/
56
+ PATH: /Users/runner/work/passagemath/passagemath/prefix/bin/
57
+ PATH: /opt/homebrew/lib/ruby/gems/3.3.0/bin/
58
+ PATH: /opt/homebrew/opt/ruby@3.3/bin/
59
+ PATH: /Users/runner/.local/bin/
60
+ PATH: /opt/homebrew/bin/
61
+ PATH: /opt/homebrew/sbin/
62
+ PATH: /Users/runner/.cargo/bin/
63
+ PATH: /usr/local/opt/curl/bin/
64
+ PATH: /usr/local/bin/
65
+ PATH: /usr/local/sbin/
66
+ PATH: /Users/runner/bin/
67
+ PATH: /Users/runner/.yarn/bin/
68
+ PATH: /Users/runner/Library/Android/sdk/tools/
69
+ PATH: /Users/runner/Library/Android/sdk/platform-tools/
70
+ PATH: /Library/Frameworks/Python.framework/Versions/Current/bin/
71
+ PATH: /Library/Frameworks/Mono.framework/Versions/Current/Commands/
72
+ PATH: /usr/bin/
73
+ PATH: /bin/
74
+ PATH: /usr/sbin/
75
+ PATH: /sbin/
76
+ PATH: /Users/runner/.dotnet/tools/
77
+
78
+
79
+ ## ----------- ##
80
+ ## Core tests. ##
81
+ ## ----------- ##
82
+
83
+ configure:2600: looking for aux files: config.guess config.sub
84
+ configure:2613: trying ./
85
+ configure:2642: ./config.guess found
86
+ configure:2642: ./config.sub found
87
+ configure:2895: checking for C++ compiler version
88
+ configure:2904: g++ -std=gnu++11 -std=gnu++11 --version >&5
89
+ Apple clang version 15.0.0 (clang-1500.3.9.4)
90
+ Target: arm64-apple-darwin23.6.0
91
+ Thread model: posix
92
+ InstalledDir: /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
93
+ configure:2915: $? = 0
94
+ configure:2904: g++ -std=gnu++11 -std=gnu++11 -v >&5
95
+ Apple clang version 15.0.0 (clang-1500.3.9.4)
96
+ Target: arm64-apple-darwin23.6.0
97
+ Thread model: posix
98
+ InstalledDir: /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
99
+ configure:2915: $? = 0
100
+ configure:2904: g++ -std=gnu++11 -std=gnu++11 -V >&5
101
+ clang: error: argument to '-V' is missing (expected 1 value)
102
+ clang: error: no input files
103
+ configure:2915: $? = 1
104
+ configure:2904: g++ -std=gnu++11 -std=gnu++11 -qversion >&5
105
+ clang: error: unknown argument '-qversion'; did you mean '--version'?
106
+ clang: error: no input files
107
+ configure:2915: $? = 1
108
+ configure:2935: checking whether the C++ compiler works
109
+ configure:2957: g++ -std=gnu++11 -std=gnu++11 -g -O2 -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.cpp >&5
110
+ configure:2961: $? = 0
111
+ configure:3012: result: yes
112
+ configure:3016: checking for C++ compiler default output file name
113
+ configure:3018: result: a.out
114
+ configure:3024: checking for suffix of executables
115
+ configure:3031: g++ -std=gnu++11 -std=gnu++11 -o conftest -g -O2 -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.cpp >&5
116
+ configure:3035: $? = 0
117
+ configure:3059: result:
118
+ configure:3083: checking whether we are cross compiling
119
+ configure:3091: g++ -std=gnu++11 -std=gnu++11 -o conftest -g -O2 -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.cpp >&5
120
+ configure:3095: $? = 0
121
+ configure:3102: ./conftest
122
+ configure:3106: $? = 0
123
+ configure:3121: result: no
124
+ configure:3127: checking for suffix of object files
125
+ configure:3150: g++ -std=gnu++11 -std=gnu++11 -c -g -O2 conftest.cpp >&5
126
+ configure:3154: $? = 0
127
+ configure:3178: result: o
128
+ configure:3182: checking whether the compiler supports GNU C++
129
+ configure:3202: g++ -std=gnu++11 -std=gnu++11 -c -g -O2 conftest.cpp >&5
130
+ configure:3202: $? = 0
131
+ configure:3214: result: yes
132
+ configure:3225: checking whether g++ -std=gnu++11 -std=gnu++11 accepts -g
133
+ configure:3246: g++ -std=gnu++11 -std=gnu++11 -c -g conftest.cpp >&5
134
+ configure:3246: $? = 0
135
+ configure:3293: result: yes
136
+ configure:3313: checking for g++ -std=gnu++11 -std=gnu++11 option to enable C++11 features
137
+ configure:3328: g++ -std=gnu++11 -std=gnu++11 -c -g -O2 conftest.cpp >&5
138
+ conftest.cpp:175:25: warning: empty parentheses interpreted as a function declaration [-Wvexing-parse]
139
+ cxx11test::delegate d2();
140
+ ^~
141
+ conftest.cpp:175:25: note: remove parentheses to declare a variable
142
+ cxx11test::delegate d2();
143
+ ^~
144
+ 1 warning generated.
145
+ configure:3328: $? = 0
146
+ configure:3347: result: none needed
147
+ configure:3432: checking whether g++ -std=gnu++11 -std=gnu++11 supports C++14 features by default
148
+ configure:3853: g++ -std=gnu++11 -std=gnu++11 -c -g -O2 conftest.cpp >&5
149
+ conftest.cpp:311:2: error: "This is not a C++14 compiler"
150
+ #error "This is not a C++14 compiler"
151
+ ^
152
+ 1 error generated.
153
+ configure:3853: $? = 1
154
+ configure: failed program was:
155
+ | /* confdefs.h */
156
+ | #define PACKAGE_NAME "semigroups"
157
+ | #define PACKAGE_TARNAME "semigroups"
158
+ | #define PACKAGE_VERSION "GAP package"
159
+ | #define PACKAGE_STRING "semigroups GAP package"
160
+ | #define PACKAGE_BUGREPORT ""
161
+ | #define PACKAGE_URL ""
162
+ | /* end confdefs.h. */
163
+ |
164
+ |
165
+ | // If the compiler admits that it is not ready for C++11, why torture it?
166
+ | // Hopefully, this will speed up the test.
167
+ |
168
+ | #ifndef __cplusplus
169
+ |
170
+ | #error "This is not a C++ compiler"
171
+ |
172
+ | // MSVC always sets __cplusplus to 199711L in older versions; newer versions
173
+ | // only set it correctly if /Zc:__cplusplus is specified as well as a
174
+ | // /std:c++NN switch:
175
+ | // https://devblogs.microsoft.com/cppblog/msvc-now-correctly-reports-__cplusplus/
176
+ | #elif __cplusplus < 201103L && !defined _MSC_VER
177
+ |
178
+ | #error "This is not a C++11 compiler"
179
+ |
180
+ | #else
181
+ |
182
+ | namespace cxx11
183
+ | {
184
+ |
185
+ | namespace test_static_assert
186
+ | {
187
+ |
188
+ | template <typename T>
189
+ | struct check
190
+ | {
191
+ | static_assert(sizeof(int) <= sizeof(T), "not big enough");
192
+ | };
193
+ |
194
+ | }
195
+ |
196
+ | namespace test_final_override
197
+ | {
198
+ |
199
+ | struct Base
200
+ | {
201
+ | virtual ~Base() {}
202
+ | virtual void f() {}
203
+ | };
204
+ |
205
+ | struct Derived : public Base
206
+ | {
207
+ | virtual ~Derived() override {}
208
+ | virtual void f() override {}
209
+ | };
210
+ |
211
+ | }
212
+ |
213
+ | namespace test_double_right_angle_brackets
214
+ | {
215
+ |
216
+ | template < typename T >
217
+ | struct check {};
218
+ |
219
+ | typedef check<void> single_type;
220
+ | typedef check<check<void>> double_type;
221
+ | typedef check<check<check<void>>> triple_type;
222
+ | typedef check<check<check<check<void>>>> quadruple_type;
223
+ |
224
+ | }
225
+ |
226
+ | namespace test_decltype
227
+ | {
228
+ |
229
+ | int
230
+ | f()
231
+ | {
232
+ | int a = 1;
233
+ | decltype(a) b = 2;
234
+ | return a + b;
235
+ | }
236
+ |
237
+ | }
238
+ |
239
+ | namespace test_type_deduction
240
+ | {
241
+ |
242
+ | template < typename T1, typename T2 >
243
+ | struct is_same
244
+ | {
245
+ | static const bool value = false;
246
+ | };
247
+ |
248
+ | template < typename T >
249
+ | struct is_same<T, T>
250
+ | {
251
+ | static const bool value = true;
252
+ | };
253
+ |
254
+ | template < typename T1, typename T2 >
255
+ | auto
256
+ | add(T1 a1, T2 a2) -> decltype(a1 + a2)
257
+ | {
258
+ | return a1 + a2;
259
+ | }
260
+ |
261
+ | int
262
+ | test(const int c, volatile int v)
263
+ | {
264
+ | static_assert(is_same<int, decltype(0)>::value == true, "");
265
+ | static_assert(is_same<int, decltype(c)>::value == false, "");
266
+ | static_assert(is_same<int, decltype(v)>::value == false, "");
267
+ | auto ac = c;
268
+ | auto av = v;
269
+ | auto sumi = ac + av + 'x';
270
+ | auto sumf = ac + av + 1.0;
271
+ | static_assert(is_same<int, decltype(ac)>::value == true, "");
272
+ | static_assert(is_same<int, decltype(av)>::value == true, "");
273
+ | static_assert(is_same<int, decltype(sumi)>::value == true, "");
274
+ | static_assert(is_same<int, decltype(sumf)>::value == false, "");
275
+ | static_assert(is_same<int, decltype(add(c, v))>::value == true, "");
276
+ | return (sumf > 0.0) ? sumi : add(c, v);
277
+ | }
278
+ |
279
+ | }
280
+ |
281
+ | namespace test_noexcept
282
+ | {
283
+ |
284
+ | int f() { return 0; }
285
+ | int g() noexcept { return 0; }
286
+ |
287
+ | static_assert(noexcept(f()) == false, "");
288
+ | static_assert(noexcept(g()) == true, "");
289
+ |
290
+ | }
291
+ |
292
+ | namespace test_constexpr
293
+ | {
294
+ |
295
+ | template < typename CharT >
296
+ | unsigned long constexpr
297
+ | strlen_c_r(const CharT *const s, const unsigned long acc) noexcept
298
+ | {
299
+ | return *s ? strlen_c_r(s + 1, acc + 1) : acc;
300
+ | }
301
+ |
302
+ | template < typename CharT >
303
+ | unsigned long constexpr
304
+ | strlen_c(const CharT *const s) noexcept
305
+ | {
306
+ | return strlen_c_r(s, 0UL);
307
+ | }
308
+ |
309
+ | static_assert(strlen_c("") == 0UL, "");
310
+ | static_assert(strlen_c("1") == 1UL, "");
311
+ | static_assert(strlen_c("example") == 7UL, "");
312
+ | static_assert(strlen_c("another\0example") == 7UL, "");
313
+ |
314
+ | }
315
+ |
316
+ | namespace test_rvalue_references
317
+ | {
318
+ |
319
+ | template < int N >
320
+ | struct answer
321
+ | {
322
+ | static constexpr int value = N;
323
+ | };
324
+ |
325
+ | answer<1> f(int&) { return answer<1>(); }
326
+ | answer<2> f(const int&) { return answer<2>(); }
327
+ | answer<3> f(int&&) { return answer<3>(); }
328
+ |
329
+ | void
330
+ | test()
331
+ | {
332
+ | int i = 0;
333
+ | const int c = 0;
334
+ | static_assert(decltype(f(i))::value == 1, "");
335
+ | static_assert(decltype(f(c))::value == 2, "");
336
+ | static_assert(decltype(f(0))::value == 3, "");
337
+ | }
338
+ |
339
+ | }
340
+ |
341
+ | namespace test_uniform_initialization
342
+ | {
343
+ |
344
+ | struct test
345
+ | {
346
+ | static const int zero {};
347
+ | static const int one {1};
348
+ | };
349
+ |
350
+ | static_assert(test::zero == 0, "");
351
+ | static_assert(test::one == 1, "");
352
+ |
353
+ | }
354
+ |
355
+ | namespace test_lambdas
356
+ | {
357
+ |
358
+ | void
359
+ | test1()
360
+ | {
361
+ | auto lambda1 = [](){};
362
+ | auto lambda2 = lambda1;
363
+ | lambda1();
364
+ | lambda2();
365
+ | }
366
+ |
367
+ | int
368
+ | test2()
369
+ | {
370
+ | auto a = [](int i, int j){ return i + j; }(1, 2);
371
+ | auto b = []() -> int { return '0'; }();
372
+ | auto c = [=](){ return a + b; }();
373
+ | auto d = [&](){ return c; }();
374
+ | auto e = [a, &b](int x) mutable {
375
+ | const auto identity = [](int y){ return y; };
376
+ | for (auto i = 0; i < a; ++i)
377
+ | a += b--;
378
+ | return x + identity(a + b);
379
+ | }(0);
380
+ | return a + b + c + d + e;
381
+ | }
382
+ |
383
+ | int
384
+ | test3()
385
+ | {
386
+ | const auto nullary = [](){ return 0; };
387
+ | const auto unary = [](int x){ return x; };
388
+ | using nullary_t = decltype(nullary);
389
+ | using unary_t = decltype(unary);
390
+ | const auto higher1st = [](nullary_t f){ return f(); };
391
+ | const auto higher2nd = [unary](nullary_t f1){
392
+ | return [unary, f1](unary_t f2){ return f2(unary(f1())); };
393
+ | };
394
+ | return higher1st(nullary) + higher2nd(nullary)(unary);
395
+ | }
396
+ |
397
+ | }
398
+ |
399
+ | namespace test_variadic_templates
400
+ | {
401
+ |
402
+ | template <int...>
403
+ | struct sum;
404
+ |
405
+ | template <int N0, int... N1toN>
406
+ | struct sum<N0, N1toN...>
407
+ | {
408
+ | static constexpr auto value = N0 + sum<N1toN...>::value;
409
+ | };
410
+ |
411
+ | template <>
412
+ | struct sum<>
413
+ | {
414
+ | static constexpr auto value = 0;
415
+ | };
416
+ |
417
+ | static_assert(sum<>::value == 0, "");
418
+ | static_assert(sum<1>::value == 1, "");
419
+ | static_assert(sum<23>::value == 23, "");
420
+ | static_assert(sum<1, 2>::value == 3, "");
421
+ | static_assert(sum<5, 5, 11>::value == 21, "");
422
+ | static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, "");
423
+ |
424
+ | }
425
+ |
426
+ | // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae
427
+ | // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function
428
+ | // because of this.
429
+ | namespace test_template_alias_sfinae
430
+ | {
431
+ |
432
+ | struct foo {};
433
+ |
434
+ | template<typename T>
435
+ | using member = typename T::member_type;
436
+ |
437
+ | template<typename T>
438
+ | void func(...) {}
439
+ |
440
+ | template<typename T>
441
+ | void func(member<T>*) {}
442
+ |
443
+ | void test();
444
+ |
445
+ | void test() { func<foo>(0); }
446
+ |
447
+ | }
448
+ |
449
+ | } // namespace cxx11
450
+ |
451
+ | #endif // __cplusplus >= 201103L
452
+ |
453
+ |
454
+ |
455
+ |
456
+ | // If the compiler admits that it is not ready for C++14, why torture it?
457
+ | // Hopefully, this will speed up the test.
458
+ |
459
+ | #ifndef __cplusplus
460
+ |
461
+ | #error "This is not a C++ compiler"
462
+ |
463
+ | #elif __cplusplus < 201402L && !defined _MSC_VER
464
+ |
465
+ | #error "This is not a C++14 compiler"
466
+ |
467
+ | #else
468
+ |
469
+ | namespace cxx14
470
+ | {
471
+ |
472
+ | namespace test_polymorphic_lambdas
473
+ | {
474
+ |
475
+ | int
476
+ | test()
477
+ | {
478
+ | const auto lambda = [](auto&&... args){
479
+ | const auto istiny = [](auto x){
480
+ | return (sizeof(x) == 1UL) ? 1 : 0;
481
+ | };
482
+ | const int aretiny[] = { istiny(args)... };
483
+ | return aretiny[0];
484
+ | };
485
+ | return lambda(1, 1L, 1.0f, '1');
486
+ | }
487
+ |
488
+ | }
489
+ |
490
+ | namespace test_binary_literals
491
+ | {
492
+ |
493
+ | constexpr auto ivii = 0b0000000000101010;
494
+ | static_assert(ivii == 42, "wrong value");
495
+ |
496
+ | }
497
+ |
498
+ | namespace test_generalized_constexpr
499
+ | {
500
+ |
501
+ | template < typename CharT >
502
+ | constexpr unsigned long
503
+ | strlen_c(const CharT *const s) noexcept
504
+ | {
505
+ | auto length = 0UL;
506
+ | for (auto p = s; *p; ++p)
507
+ | ++length;
508
+ | return length;
509
+ | }
510
+ |
511
+ | static_assert(strlen_c("") == 0UL, "");
512
+ | static_assert(strlen_c("x") == 1UL, "");
513
+ | static_assert(strlen_c("test") == 4UL, "");
514
+ | static_assert(strlen_c("another\0test") == 7UL, "");
515
+ |
516
+ | }
517
+ |
518
+ | namespace test_lambda_init_capture
519
+ | {
520
+ |
521
+ | int
522
+ | test()
523
+ | {
524
+ | auto x = 0;
525
+ | const auto lambda1 = [a = x](int b){ return a + b; };
526
+ | const auto lambda2 = [a = lambda1(x)](){ return a; };
527
+ | return lambda2();
528
+ | }
529
+ |
530
+ | }
531
+ |
532
+ | namespace test_digit_separators
533
+ | {
534
+ |
535
+ | constexpr auto ten_million = 100'000'000;
536
+ | static_assert(ten_million == 100000000, "");
537
+ |
538
+ | }
539
+ |
540
+ | namespace test_return_type_deduction
541
+ | {
542
+ |
543
+ | auto f(int& x) { return x; }
544
+ | decltype(auto) g(int& x) { return x; }
545
+ |
546
+ | template < typename T1, typename T2 >
547
+ | struct is_same
548
+ | {
549
+ | static constexpr auto value = false;
550
+ | };
551
+ |
552
+ | template < typename T >
553
+ | struct is_same<T, T>
554
+ | {
555
+ | static constexpr auto value = true;
556
+ | };
557
+ |
558
+ | int
559
+ | test()
560
+ | {
561
+ | auto x = 0;
562
+ | static_assert(is_same<int, decltype(f(x))>::value, "");
563
+ | static_assert(is_same<int&, decltype(g(x))>::value, "");
564
+ | return x;
565
+ | }
566
+ |
567
+ | }
568
+ |
569
+ | } // namespace cxx14
570
+ |
571
+ | #endif // __cplusplus >= 201402L
572
+ |
573
+ |
574
+ |
575
+ configure:3863: result: no
576
+ configure:3873: checking whether g++ -std=gnu++11 -std=gnu++11 supports C++14 features with -std=gnu++14
577
+ configure:4296: g++ -std=gnu++11 -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
578
+ configure:4296: $? = 0
579
+ configure:4308: result: yes
580
+ configure:4816: checking for GAP root directory
581
+ configure:4833: result: /Users/runner/sage-local/lib/gap
582
+ configure:4857: checking for GAP architecture
583
+ configure:4864: result: aarch64-apple-darwin23-default64-kv10
584
+ configure:4915: checking build system type
585
+ configure:4931: result: aarch64-apple-darwin23.6.0
586
+ configure:4951: checking host system type
587
+ configure:4966: result: aarch64-apple-darwin23.6.0
588
+ configure:5049: checking for gcc
589
+ configure:5082: result: gcc
590
+ configure:5441: checking for C compiler version
591
+ configure:5450: gcc --version >&5
592
+ Apple clang version 15.0.0 (clang-1500.3.9.4)
593
+ Target: arm64-apple-darwin23.6.0
594
+ Thread model: posix
595
+ InstalledDir: /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
596
+ configure:5461: $? = 0
597
+ configure:5450: gcc -v >&5
598
+ Apple clang version 15.0.0 (clang-1500.3.9.4)
599
+ Target: arm64-apple-darwin23.6.0
600
+ Thread model: posix
601
+ InstalledDir: /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
602
+ configure:5461: $? = 0
603
+ configure:5450: gcc -V >&5
604
+ clang: error: argument to '-V' is missing (expected 1 value)
605
+ clang: error: no input files
606
+ configure:5461: $? = 1
607
+ configure:5450: gcc -qversion >&5
608
+ clang: error: unknown argument '-qversion'; did you mean '--version'?
609
+ clang: error: no input files
610
+ configure:5461: $? = 1
611
+ configure:5450: gcc -version >&5
612
+ clang: error: unknown argument '-version'; did you mean '--version'?
613
+ clang: error: no input files
614
+ configure:5461: $? = 1
615
+ configure:5465: checking whether the compiler supports GNU C
616
+ configure:5485: gcc -c -g -O2 conftest.c >&5
617
+ configure:5485: $? = 0
618
+ configure:5497: result: yes
619
+ configure:5508: checking whether gcc accepts -g
620
+ configure:5529: gcc -c -g conftest.c >&5
621
+ configure:5529: $? = 0
622
+ configure:5576: result: yes
623
+ configure:5596: checking for gcc option to enable C11 features
624
+ configure:5611: gcc -c -g -O2 conftest.c >&5
625
+ configure:5611: $? = 0
626
+ configure:5630: result: none needed
627
+ configure:5748: checking for a sed that does not truncate output
628
+ configure:5820: result: /usr/bin/sed
629
+ configure:5831: checking how to run the C preprocessor
630
+ configure:5857: gcc -E conftest.c
631
+ configure:5857: $? = 0
632
+ configure:5873: gcc -E conftest.c
633
+ conftest.c:10:10: fatal error: 'ac_nonexistent.h' file not found
634
+ #include <ac_nonexistent.h>
635
+ ^~~~~~~~~~~~~~~~~~
636
+ 1 error generated.
637
+ configure:5873: $? = 1
638
+ configure: failed program was:
639
+ | /* confdefs.h */
640
+ | #define PACKAGE_NAME "semigroups"
641
+ | #define PACKAGE_TARNAME "semigroups"
642
+ | #define PACKAGE_VERSION "GAP package"
643
+ | #define PACKAGE_STRING "semigroups GAP package"
644
+ | #define PACKAGE_BUGREPORT ""
645
+ | #define PACKAGE_URL ""
646
+ | #define HAVE_CXX14 1
647
+ | /* end confdefs.h. */
648
+ | #include <ac_nonexistent.h>
649
+ configure:5902: result: gcc -E
650
+ configure:5916: gcc -E conftest.c
651
+ configure:5916: $? = 0
652
+ configure:5932: gcc -E conftest.c
653
+ conftest.c:10:10: fatal error: 'ac_nonexistent.h' file not found
654
+ #include <ac_nonexistent.h>
655
+ ^~~~~~~~~~~~~~~~~~
656
+ 1 error generated.
657
+ configure:5932: $? = 1
658
+ configure: failed program was:
659
+ | /* confdefs.h */
660
+ | #define PACKAGE_NAME "semigroups"
661
+ | #define PACKAGE_TARNAME "semigroups"
662
+ | #define PACKAGE_VERSION "GAP package"
663
+ | #define PACKAGE_STRING "semigroups GAP package"
664
+ | #define PACKAGE_BUGREPORT ""
665
+ | #define PACKAGE_URL ""
666
+ | #define HAVE_CXX14 1
667
+ | /* end confdefs.h. */
668
+ | #include <ac_nonexistent.h>
669
+ configure:5965: checking for egrep -e
670
+ configure:6095: result: /usr/bin/grep -E
671
+ configure:6265: checking whether gcc is Clang
672
+ configure:6293: result: yes
673
+ configure:6359: checking whether pthreads work with "-pthread" and "-lpthread"
674
+ configure:6471: gcc -o conftest -g -O2 -pthread -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.c -lpthread >&5
675
+ configure:6471: $? = 0
676
+ configure:6481: result: yes
677
+ configure:6530: checking whether Clang needs flag to prevent "argument unused" warning when linking with -pthread
678
+ configure:6557: gcc -o conftest -Werror -Wunknown-warning-option -pthread -g -O2 -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.c >&5
679
+ configure:6557: $? = 0
680
+ configure:6564: (gcc -c -Werror -Wunknown-warning-option -pthread -g -O2 conftest.c >&5) && (echo ==== >&5) && (gcc -o conftest -Werror -Wunknown-warning-option -pthread -g -O2 -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.o >&5)
681
+ ====
682
+ configure:6564: $? = 0
683
+ configure:6585: result: no
684
+ configure:6605: checking for joinable pthread attribute
685
+ configure:6624: gcc -o conftest -g -O2 -pthread -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.c -lpthread >&5
686
+ configure:6624: $? = 0
687
+ configure:6634: result: PTHREAD_CREATE_JOINABLE
688
+ configure:6647: checking whether more special flags are required for pthreads
689
+ configure:6662: result: no
690
+ configure:6671: checking for PTHREAD_PRIO_INHERIT
691
+ configure:6689: gcc -o conftest -g -O2 -pthread -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.c -lpthread >&5
692
+ configure:6689: $? = 0
693
+ configure:6701: result: yes
694
+ configure:6878: checking for pthread_create in -lpthread
695
+ configure:6900: g++ -std=gnu++11 -std=gnu++11 -std=gnu++14 -o conftest -g -O2 -L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic conftest.cpp -lpthread >&5
696
+ configure:6900: $? = 0
697
+ configure:6912: result: yes
698
+ configure:6989: checking for pkg-config
699
+ configure:7012: found /opt/homebrew/bin/pkg-config
700
+ configure:7025: result: /opt/homebrew/bin/pkg-config
701
+ configure:7050: checking pkg-config is at least version 0.9.0
702
+ configure:7053: result: yes
703
+ configure:7068: checking for gawk
704
+ configure:7104: result: no
705
+ configure:7068: checking for mawk
706
+ configure:7104: result: no
707
+ configure:7068: checking for nawk
708
+ configure:7104: result: no
709
+ configure:7068: checking for awk
710
+ configure:7089: found /usr/bin/awk
711
+ configure:7101: result: awk
712
+ configure:7128: checking for libsemigroups >= 2.7.4
713
+ configure:7135: $PKG_CONFIG --exists --print-errors "libsemigroups >= $REQUI_LIBSEMIGROUPS_VERSION"
714
+ configure:7138: $? = 0
715
+ configure:7152: $PKG_CONFIG --exists --print-errors "libsemigroups >= $REQUI_LIBSEMIGROUPS_VERSION"
716
+ configure:7155: $? = 0
717
+ configure:7193: result: yes
718
+ configure:7282: using external libsemigroups 2.7.4
719
+ configure:7289: $PKG_CONFIG --exists --print-errors "libsemigroups"
720
+ configure:7292: $? = 0
721
+ configure:7333: checking whether to enable debug mode
722
+ configure:7335: result: no
723
+ configure:7345: checking for stdio.h
724
+ configure:7345: g++ -std=gnu++11 -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 stdlib.h
728
+ configure:7345: g++ -std=gnu++11 -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 string.h
732
+ configure:7345: g++ -std=gnu++11 -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 inttypes.h
736
+ configure:7345: g++ -std=gnu++11 -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 stdint.h
740
+ configure:7345: g++ -std=gnu++11 -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
741
+ configure:7345: $? = 0
742
+ configure:7345: result: yes
743
+ configure:7345: checking for strings.h
744
+ configure:7345: g++ -std=gnu++11 -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
745
+ configure:7345: $? = 0
746
+ configure:7345: result: yes
747
+ configure:7345: checking for sys/stat.h
748
+ configure:7345: g++ -std=gnu++11 -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
749
+ configure:7345: $? = 0
750
+ configure:7345: result: yes
751
+ configure:7345: checking for sys/types.h
752
+ configure:7345: g++ -std=gnu++11 -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
753
+ configure:7345: $? = 0
754
+ configure:7345: result: yes
755
+ configure:7345: checking for unistd.h
756
+ configure:7345: g++ -std=gnu++11 -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
757
+ configure:7345: $? = 0
758
+ configure:7345: result: yes
759
+ configure:7382: checking whether to enable HPCombi
760
+ configure:7384: result: yes
761
+ configure:7402: checking the required version of HPCombi
762
+ configure:7405: result: 0.0.6
763
+ configure:7411: checking the version of HPCombi that's present
764
+ configure:7414: result: 0.0.6
765
+ configure:7462: checking whether C++ compiler accepts -mavx
766
+ configure:7482: g++ -std=gnu++11 -std=gnu++11 -std=gnu++14 -c -g -O2 -mavx conftest.cpp >&5
767
+ clang: warning: argument unused during compilation: '-mavx' [-Wunused-command-line-argument]
768
+ configure:7482: $? = 0
769
+ configure:7493: result: yes
770
+ configure:7522: : HPCOMBI_CXXFLAGS="$HPCOMBI_CXXFLAGS"
771
+ configure:7525: $? = 0
772
+ configure:7542: checking whether C++ compiler accepts -flax-vector-conversions
773
+ configure:7562: g++ -std=gnu++11 -std=gnu++11 -std=gnu++14 -c -g -O2 -flax-vector-conversions conftest.cpp >&5
774
+ configure:7562: $? = 0
775
+ configure:7573: result: yes
776
+ configure:7591: : HPCOMBI_CXXFLAGS="$HPCOMBI_CXXFLAGS"
777
+ configure:7594: $? = 0
778
+ configure:7624: checking for x86intrin.h
779
+ configure:7624: g++ -std=gnu++11 -std=gnu++11 -std=gnu++14 -c -g -O2 conftest.cpp >&5
780
+ In file included from conftest.cpp:51:
781
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/x86intrin.h:13:
782
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:200:10: error: use of undeclared identifier '__builtin_ia32_readeflags_u32'
783
+ return __builtin_ia32_readeflags_u32();
784
+ ^
785
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:206:3: error: use of undeclared identifier '__builtin_ia32_writeeflags_u32'
786
+ __builtin_ia32_writeeflags_u32(__f);
787
+ ^
788
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:288:10: error: use of undeclared identifier '__builtin_ia32_crc32qi'
789
+ return __builtin_ia32_crc32qi(__C, __D);
790
+ ^
791
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:309:10: error: use of undeclared identifier '__builtin_ia32_crc32hi'; did you mean '__builtin_arm_crc32h'?
792
+ return __builtin_ia32_crc32hi(__C, __D);
793
+ ^
794
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:309:10: note: '__builtin_arm_crc32h' declared here
795
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:330:10: error: use of undeclared identifier '__builtin_ia32_crc32si'
796
+ return __builtin_ia32_crc32si(__C, __D);
797
+ ^
798
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:358:10: error: use of undeclared identifier '__builtin_ia32_rdpmc'; did you mean '__builtin_arm_dmb'?
799
+ return __builtin_ia32_rdpmc(__A);
800
+ ^
801
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:358:10: note: '__builtin_arm_dmb' declared here
802
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:358:10: error: argument to '__builtin_arm_dmb' must be a constant integer
803
+ return __builtin_ia32_rdpmc(__A);
804
+ ^ ~~~
805
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:364:10: error: use of undeclared identifier '__builtin_ia32_rdtscp'; did you mean '__builtin_arm_rsrp'?
806
+ return __builtin_ia32_rdtscp(__A);
807
+ ^
808
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:364:10: note: '__builtin_arm_rsrp' declared here
809
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:364:32: error: cannot initialize a parameter of type 'const char *' with an lvalue of type 'unsigned int *'
810
+ return __builtin_ia32_rdtscp(__A);
811
+ ^~~
812
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:373:3: error: use of undeclared identifier '__builtin_ia32_wbinvd'
813
+ __builtin_ia32_wbinvd();
814
+ ^
815
+ In file included from conftest.cpp:51:
816
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/x86intrin.h:15:
817
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/immintrin.h:14:2: error: "This header is only meant to be used on x86 and x64 architecture"
818
+ #error "This header is only meant to be used on x86 and x64 architecture"
819
+ ^
820
+ In file included from conftest.cpp:51:
821
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/x86intrin.h:15:
822
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/immintrin.h:17:
823
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/x86gprintrin.h:15:
824
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/hresetintrin.h:42:27: error: invalid input constraint 'a' in asm
825
+ __asm__ ("hreset $0" :: "a"(__eax));
826
+ ^
827
+ In file included from conftest.cpp:51:
828
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/x86intrin.h:15:
829
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/immintrin.h:17:
830
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/x86gprintrin.h:25:
831
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/crc32intrin.h:33:10: error: use of undeclared identifier '__builtin_ia32_crc32qi'
832
+ return __builtin_ia32_crc32qi(__C, __D);
833
+ ^
834
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/crc32intrin.h:53:10: error: use of undeclared identifier '__builtin_ia32_crc32hi'; did you mean '__builtin_arm_crc32h'?
835
+ return __builtin_ia32_crc32hi(__C, __D);
836
+ ^
837
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/ia32intrin.h:309:10: note: '__builtin_arm_crc32h' declared here
838
+ return __builtin_ia32_crc32hi(__C, __D);
839
+ ^
840
+ In file included from conftest.cpp:51:
841
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/x86intrin.h:15:
842
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/immintrin.h:17:
843
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/x86gprintrin.h:25:
844
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/crc32intrin.h:73:10: error: use of undeclared identifier '__builtin_ia32_crc32si'
845
+ return __builtin_ia32_crc32si(__C, __D);
846
+ ^
847
+ In file included from conftest.cpp:51:
848
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/x86intrin.h:15:
849
+ In file included from /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/immintrin.h:21:
850
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/mmintrin.h:14:2: error: "This header is only meant to be used on x86 and x64 architecture"
851
+ #error "This header is only meant to be used on x86 and x64 architecture"
852
+ ^
853
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/mmintrin.h:37:5: error: use of undeclared identifier '__builtin_ia32_emms'; did you mean '__builtin_isless'?
854
+ __builtin_ia32_emms();
855
+ ^
856
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/mmintrin.h:37:5: note: '__builtin_isless' declared here
857
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/mmintrin.h:37:25: error: too few arguments to function call, expected 2, have 0
858
+ __builtin_ia32_emms();
859
+ ~~~~~~~~~~~~~~~~~~~~^
860
+ /Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include/mmintrin.h:54:19: error: use of undeclared identifier '__builtin_ia32_vec_init_v2si'
861
+ return (__m64)__builtin_ia32_vec_init_v2si(__i, 0);
862
+ ^
863
+ fatal error: too many errors emitted, stopping now [-ferror-limit=]
864
+ 20 errors generated.
865
+ configure:7624: $? = 1
866
+ configure: failed program was:
867
+ | /* confdefs.h */
868
+ | #define PACKAGE_NAME "semigroups"
869
+ | #define PACKAGE_TARNAME "semigroups"
870
+ | #define PACKAGE_VERSION "GAP package"
871
+ | #define PACKAGE_STRING "semigroups GAP package"
872
+ | #define PACKAGE_BUGREPORT ""
873
+ | #define PACKAGE_URL ""
874
+ | #define HAVE_CXX14 1
875
+ | #define HAVE_PTHREAD_PRIO_INHERIT 1
876
+ | #define HAVE_PTHREAD 1
877
+ | #define HAVE_LIBPTHREAD 1
878
+ | #define HAVE_STDIO_H 1
879
+ | #define HAVE_STDLIB_H 1
880
+ | #define HAVE_STRING_H 1
881
+ | #define HAVE_INTTYPES_H 1
882
+ | #define HAVE_STDINT_H 1
883
+ | #define HAVE_STRINGS_H 1
884
+ | #define HAVE_SYS_STAT_H 1
885
+ | #define HAVE_SYS_TYPES_H 1
886
+ | #define HAVE_UNISTD_H 1
887
+ | #define STDC_HEADERS 1
888
+ | /* end confdefs.h. */
889
+ | #include <stddef.h>
890
+ | #ifdef HAVE_STDIO_H
891
+ | # include <stdio.h>
892
+ | #endif
893
+ | #ifdef HAVE_STDLIB_H
894
+ | # include <stdlib.h>
895
+ | #endif
896
+ | #ifdef HAVE_STRING_H
897
+ | # include <string.h>
898
+ | #endif
899
+ | #ifdef HAVE_INTTYPES_H
900
+ | # include <inttypes.h>
901
+ | #endif
902
+ | #ifdef HAVE_STDINT_H
903
+ | # include <stdint.h>
904
+ | #endif
905
+ | #ifdef HAVE_STRINGS_H
906
+ | # include <strings.h>
907
+ | #endif
908
+ | #ifdef HAVE_SYS_TYPES_H
909
+ | # include <sys/types.h>
910
+ | #endif
911
+ | #ifdef HAVE_SYS_STAT_H
912
+ | # include <sys/stat.h>
913
+ | #endif
914
+ | #ifdef HAVE_UNISTD_H
915
+ | # include <unistd.h>
916
+ | #endif
917
+ | #include <x86intrin.h>
918
+ configure:7624: result: no
919
+ configure:7630: WARNING: header x86intrin.h is required for HPCombi, HPCombi is disabled
920
+ configure:8336: creating ./config.status
921
+
922
+ ## ---------------------- ##
923
+ ## Running config.status. ##
924
+ ## ---------------------- ##
925
+
926
+ This file was extended by semigroups config.status GAP package, which was
927
+ generated by GNU Autoconf 2.72. Invocation command line was
928
+
929
+ CONFIG_FILES =
930
+ CONFIG_HEADERS =
931
+ CONFIG_LINKS =
932
+ CONFIG_COMMANDS =
933
+ $ ./config.status
934
+
935
+ on sat12-dp149-758c57cb-2498-4f05-ae24-4fa99c72cdb3-06809E18E786.local
936
+
937
+ config.status:846: creating GNUmakefile
938
+ config.status:846: creating gen/pkgconfig.h
939
+ config.status:1030: executing src/semigroups-config.hpp commands
940
+ config.status:1068: creating src/semigroups-config.hpp - prefix SEMIGROUPS for gen/pkgconfig.h defines
941
+
942
+ ## ---------------- ##
943
+ ## Cache variables. ##
944
+ ## ---------------- ##
945
+
946
+ ac_cv_build=aarch64-apple-darwin23.6.0
947
+ ac_cv_c_compiler_gnu=yes
948
+ ac_cv_cxx_compiler_gnu=yes
949
+ ac_cv_env_CCC_set=
950
+ ac_cv_env_CCC_value=
951
+ ac_cv_env_CC_set=set
952
+ ac_cv_env_CC_value=gcc
953
+ ac_cv_env_CFLAGS_set=set
954
+ ac_cv_env_CFLAGS_value='-g -O2'
955
+ ac_cv_env_CPPFLAGS_set=
956
+ ac_cv_env_CPPFLAGS_value=
957
+ ac_cv_env_CPP_set=
958
+ ac_cv_env_CPP_value=
959
+ ac_cv_env_CXXFLAGS_set=set
960
+ ac_cv_env_CXXFLAGS_value='-g -O2'
961
+ ac_cv_env_CXX_set=set
962
+ ac_cv_env_CXX_value='g++ -std=gnu++11 -std=gnu++11'
963
+ ac_cv_env_LDFLAGS_set=set
964
+ ac_cv_env_LDFLAGS_value='-L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic'
965
+ ac_cv_env_LIBSEMIGROUPS_CFLAGS_set=
966
+ ac_cv_env_LIBSEMIGROUPS_CFLAGS_value=
967
+ ac_cv_env_LIBSEMIGROUPS_LIBS_set=
968
+ ac_cv_env_LIBSEMIGROUPS_LIBS_value=
969
+ ac_cv_env_LIBSEMIGROUPS_RPATH_set=
970
+ ac_cv_env_LIBSEMIGROUPS_RPATH_value=
971
+ ac_cv_env_LIBS_set=
972
+ ac_cv_env_LIBS_value=
973
+ ac_cv_env_PKG_CONFIG_LIBDIR_set=
974
+ ac_cv_env_PKG_CONFIG_LIBDIR_value=
975
+ ac_cv_env_PKG_CONFIG_PATH_set=set
976
+ ac_cv_env_PKG_CONFIG_PATH_value=/Users/runner/sage-local/lib/pkgconfig:/Users/runner/sage-local/lib/pkgconfig:/opt/homebrew/opt/sqlite/lib/pkgconfig:/opt/homebrew/opt/readline/lib/pkgconfig:/opt/homebrew/opt/openssl/lib/pkgconfig:/opt/homebrew/lib/pkgconfig:/Users/runner/work/passagemath/passagemath/prefix/lib/pkgconfig:
977
+ ac_cv_env_PKG_CONFIG_set=
978
+ ac_cv_env_PKG_CONFIG_value=
979
+ ac_cv_env_build_alias_set=
980
+ ac_cv_env_build_alias_value=
981
+ ac_cv_env_host_alias_set=
982
+ ac_cv_env_host_alias_value=
983
+ ac_cv_env_target_alias_set=
984
+ ac_cv_env_target_alias_value=
985
+ ac_cv_header_inttypes_h=yes
986
+ ac_cv_header_stdint_h=yes
987
+ ac_cv_header_stdio_h=yes
988
+ ac_cv_header_stdlib_h=yes
989
+ ac_cv_header_string_h=yes
990
+ ac_cv_header_strings_h=yes
991
+ ac_cv_header_sys_stat_h=yes
992
+ ac_cv_header_sys_types_h=yes
993
+ ac_cv_header_unistd_h=yes
994
+ ac_cv_header_x86intrin_h=no
995
+ ac_cv_host=aarch64-apple-darwin23.6.0
996
+ ac_cv_lib_pthread_pthread_create=yes
997
+ ac_cv_objext=o
998
+ ac_cv_path_EGREP_TRADITIONAL='/usr/bin/grep -E'
999
+ ac_cv_path_SED=/usr/bin/sed
1000
+ ac_cv_path_ac_pt_PKG_CONFIG=/opt/homebrew/bin/pkg-config
1001
+ ac_cv_prog_AWK=awk
1002
+ ac_cv_prog_CPP='gcc -E'
1003
+ ac_cv_prog_ac_ct_CC=gcc
1004
+ ac_cv_prog_cc_c11=
1005
+ ac_cv_prog_cc_g=yes
1006
+ ac_cv_prog_cc_stdc=
1007
+ ac_cv_prog_cxx_cxx11=
1008
+ ac_cv_prog_cxx_g=yes
1009
+ ac_cv_prog_cxx_stdcxx=
1010
+ ax_cv_PTHREAD_CLANG=yes
1011
+ ax_cv_PTHREAD_CLANG_NO_WARN_FLAG=no
1012
+ ax_cv_PTHREAD_JOINABLE_ATTR=PTHREAD_CREATE_JOINABLE
1013
+ ax_cv_PTHREAD_PRIO_INHERIT=yes
1014
+ ax_cv_PTHREAD_SPECIAL_FLAGS=no
1015
+ ax_cv_check_cxxflags___flax_vector_conversions=yes
1016
+ ax_cv_check_cxxflags___mavx=yes
1017
+ ax_cv_cxx_compile_cxx14=no
1018
+ ax_cv_cxx_compile_cxx14__std_gnupp14=yes
1019
+ pkg_cv_LIBSEMIGROUPS_CFLAGS=
1020
+ pkg_cv_LIBSEMIGROUPS_LIBS=-lsemigroups
1021
+ pkg_cv_LIBSEMIGROUPS_RPATH=/Users/runner/sage-local/lib
1022
+
1023
+ ## ----------------- ##
1024
+ ## Output variables. ##
1025
+ ## ----------------- ##
1026
+
1027
+ AWK='awk'
1028
+ CC='gcc'
1029
+ CFLAGS='-g -O2'
1030
+ CPP='gcc -E'
1031
+ CPPFLAGS=''
1032
+ CXX='g++ -std=gnu++11 -std=gnu++11 -std=gnu++14'
1033
+ CXXFLAGS='-g -O2'
1034
+ DEFS='-DHAVE_CONFIG_H'
1035
+ ECHO_C='\c'
1036
+ ECHO_N=''
1037
+ ECHO_T=''
1038
+ EXEEXT=''
1039
+ GAPARCH='aarch64-apple-darwin23-default64-kv10'
1040
+ GAPROOT='/Users/runner/sage-local/lib/gap'
1041
+ GAP_CFLAGS=' -pthread -g -O2'
1042
+ GAP_CPPFLAGS='-I/Users/runner/sage-local/include/gap/extra -DUSE_GASMAN=1'
1043
+ GAP_LDFLAGS=''
1044
+ HAVE_CXX14='1'
1045
+ HPCOMBI_CONSTEXPR_FUN_ARGS=''
1046
+ HPCOMBI_CXXFLAGS='-mavx -flax-vector-conversions'
1047
+ KERNEL_DEBUG='no'
1048
+ LDFLAGS='-L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic'
1049
+ LIBOBJS=''
1050
+ LIBS='-lpthread '
1051
+ LIBSEMIGROUPS_CFLAGS=''
1052
+ LIBSEMIGROUPS_HPCOMBI_ENABLED=''
1053
+ LIBSEMIGROUPS_LIBS='-lsemigroups'
1054
+ LIBSEMIGROUPS_RPATH='-Wl,-rpath,/Users/runner/sage-local/lib'
1055
+ LTLIBOBJS=''
1056
+ OBJEXT='o'
1057
+ PACKAGE_BUGREPORT=''
1058
+ PACKAGE_NAME='semigroups'
1059
+ PACKAGE_STRING='semigroups GAP package'
1060
+ PACKAGE_TARNAME='semigroups'
1061
+ PACKAGE_URL=''
1062
+ PACKAGE_VERSION='GAP package'
1063
+ PATH_SEPARATOR=':'
1064
+ PKG_CONFIG='/opt/homebrew/bin/pkg-config'
1065
+ PKG_CONFIG_LIBDIR=''
1066
+ PKG_CONFIG_PATH='/Users/runner/sage-local/lib/pkgconfig:/Users/runner/sage-local/lib/pkgconfig:/opt/homebrew/opt/sqlite/lib/pkgconfig:/opt/homebrew/opt/readline/lib/pkgconfig:/opt/homebrew/opt/openssl/lib/pkgconfig:/opt/homebrew/lib/pkgconfig:/Users/runner/work/passagemath/passagemath/prefix/lib/pkgconfig:'
1067
+ PTHREAD_CC='gcc'
1068
+ PTHREAD_CFLAGS='-pthread'
1069
+ PTHREAD_CXX='g++ -std=gnu++11 -std=gnu++11 -std=gnu++14'
1070
+ PTHREAD_LIBS='-lpthread'
1071
+ SED='/usr/bin/sed'
1072
+ SHELL='/bin/bash'
1073
+ SYS_IS_CYGWIN=''
1074
+ WITH_INCLUDED_LIBSEMIGROUPS=''
1075
+ ac_ct_CC='gcc'
1076
+ ac_ct_CXX=''
1077
+ ax_pthread_config=''
1078
+ bindir='${exec_prefix}/bin'
1079
+ build='aarch64-apple-darwin23.6.0'
1080
+ build_alias=''
1081
+ build_cpu='aarch64'
1082
+ build_os='darwin23.6.0'
1083
+ build_vendor='apple'
1084
+ datadir='${datarootdir}'
1085
+ datarootdir='${prefix}/share'
1086
+ docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
1087
+ dvidir='${docdir}'
1088
+ exec_prefix='${prefix}'
1089
+ host='aarch64-apple-darwin23.6.0'
1090
+ host_alias=''
1091
+ host_cpu='aarch64'
1092
+ host_os='darwin23.6.0'
1093
+ host_vendor='apple'
1094
+ htmldir='${docdir}'
1095
+ includedir='${prefix}/include'
1096
+ infodir='${datarootdir}/info'
1097
+ libdir='/Users/runner/sage-local/lib'
1098
+ libexecdir='${exec_prefix}/libexec'
1099
+ localedir='${datarootdir}/locale'
1100
+ localstatedir='${prefix}/var'
1101
+ mandir='${datarootdir}/man'
1102
+ oldincludedir='/usr/include'
1103
+ pdfdir='${docdir}'
1104
+ prefix='/Users/runner/sage-local'
1105
+ program_transform_name='s,x,x,'
1106
+ psdir='${docdir}'
1107
+ runstatedir='${localstatedir}/run'
1108
+ sbindir='${exec_prefix}/sbin'
1109
+ sharedstatedir='${prefix}/com'
1110
+ subdirs=''
1111
+ sysconfdir='${prefix}/etc'
1112
+ target_alias=''
1113
+
1114
+ ## ----------- ##
1115
+ ## confdefs.h. ##
1116
+ ## ----------- ##
1117
+
1118
+ /* confdefs.h */
1119
+ #define PACKAGE_NAME "semigroups"
1120
+ #define PACKAGE_TARNAME "semigroups"
1121
+ #define PACKAGE_VERSION "GAP package"
1122
+ #define PACKAGE_STRING "semigroups GAP package"
1123
+ #define PACKAGE_BUGREPORT ""
1124
+ #define PACKAGE_URL ""
1125
+ #define HAVE_CXX14 1
1126
+ #define HAVE_PTHREAD_PRIO_INHERIT 1
1127
+ #define HAVE_PTHREAD 1
1128
+ #define HAVE_LIBPTHREAD 1
1129
+ #define HAVE_STDIO_H 1
1130
+ #define HAVE_STDLIB_H 1
1131
+ #define HAVE_STRING_H 1
1132
+ #define HAVE_INTTYPES_H 1
1133
+ #define HAVE_STDINT_H 1
1134
+ #define HAVE_STRINGS_H 1
1135
+ #define HAVE_SYS_STAT_H 1
1136
+ #define HAVE_SYS_TYPES_H 1
1137
+ #define HAVE_UNISTD_H 1
1138
+ #define STDC_HEADERS 1
1139
+
1140
+ configure: exit 0
1141
+
1142
+ ## ---------------------- ##
1143
+ ## Running config.status. ##
1144
+ ## ---------------------- ##
1145
+
1146
+ This file was extended by semigroups config.status GAP package, which was
1147
+ generated by GNU Autoconf 2.72. Invocation command line was
1148
+
1149
+ CONFIG_FILES =
1150
+ CONFIG_HEADERS =
1151
+ CONFIG_LINKS =
1152
+ CONFIG_COMMANDS =
1153
+ $ ./config.status gen/pkgconfig.h
1154
+
1155
+ on sat12-dp149-758c57cb-2498-4f05-ae24-4fa99c72cdb3-06809E18E786.local
1156
+
1157
+ config.status:846: creating gen/pkgconfig.h
1158
+ config.status:1016: gen/pkgconfig.h is unchanged