passagemath-gap-pkg-semigroups 10.6.29__cp312-abi3-macosx_13_0_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of passagemath-gap-pkg-semigroups might be problematic. Click here for more details.

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