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