passagemath-gap-pkg-semigroups 10.6.30__cp311-cp311-macosx_13_0_arm64.whl

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

Potentially problematic release.


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

Files changed (354) hide show
  1. gap/pkg/semigroups/CHANGELOG.md +1699 -0
  2. gap/pkg/semigroups/CONTRIBUTING.md +91 -0
  3. gap/pkg/semigroups/GNUmakefile +110 -0
  4. gap/pkg/semigroups/GNUmakefile.in +110 -0
  5. gap/pkg/semigroups/GPL +674 -0
  6. gap/pkg/semigroups/LICENSE +16 -0
  7. gap/pkg/semigroups/Makefile +26 -0
  8. gap/pkg/semigroups/Makefile.gappkg +225 -0
  9. gap/pkg/semigroups/PackageInfo.g +529 -0
  10. gap/pkg/semigroups/README.md +102 -0
  11. gap/pkg/semigroups/VERSIONS +112 -0
  12. gap/pkg/semigroups/aclocal.m4 +375 -0
  13. gap/pkg/semigroups/autogen.sh +25 -0
  14. gap/pkg/semigroups/bin/aarch64-apple-darwin23-default64-kv10/semigroups.so +0 -0
  15. gap/pkg/semigroups/config.guess +1807 -0
  16. gap/pkg/semigroups/config.log +1158 -0
  17. gap/pkg/semigroups/config.status +1131 -0
  18. gap/pkg/semigroups/config.sub +1960 -0
  19. gap/pkg/semigroups/configure +9742 -0
  20. gap/pkg/semigroups/configure.ac +71 -0
  21. gap/pkg/semigroups/data/doc/greens.pickle +1 -0
  22. gap/pkg/semigroups/data/gens/fullbool-8.pickle.gz +0 -0
  23. gap/pkg/semigroups/data/gens/fullbool.pickle.gz +0 -0
  24. gap/pkg/semigroups/data/gens/hall.pickle.gz +0 -0
  25. gap/pkg/semigroups/data/gens/reflex-6.pickle.gz +0 -0
  26. gap/pkg/semigroups/data/gens/reflex.pickle.gz +0 -0
  27. gap/pkg/semigroups/data/tst/bipart4 +10 -0
  28. gap/pkg/semigroups/data/tst/pperm10 +1 -0
  29. gap/pkg/semigroups/data/tst/tables.gz +0 -0
  30. gap/pkg/semigroups/data/tst/testdata +1 -0
  31. gap/pkg/semigroups/data/tst/testinstall.pickle +1 -0
  32. gap/pkg/semigroups/data/tst/trans3 +7 -0
  33. gap/pkg/semigroups/data/tst/trans3-old +7 -0
  34. gap/pkg/semigroups/environment.yml +7 -0
  35. gap/pkg/semigroups/gap/attributes/acting.gd +15 -0
  36. gap/pkg/semigroups/gap/attributes/acting.gi +297 -0
  37. gap/pkg/semigroups/gap/attributes/attr.gd +91 -0
  38. gap/pkg/semigroups/gap/attributes/attr.gi +1214 -0
  39. gap/pkg/semigroups/gap/attributes/dual.gd +25 -0
  40. gap/pkg/semigroups/gap/attributes/dual.gi +209 -0
  41. gap/pkg/semigroups/gap/attributes/factor.gd +17 -0
  42. gap/pkg/semigroups/gap/attributes/factor.gi +453 -0
  43. gap/pkg/semigroups/gap/attributes/homomorph.gd +84 -0
  44. gap/pkg/semigroups/gap/attributes/homomorph.gi +591 -0
  45. gap/pkg/semigroups/gap/attributes/inverse.gd +38 -0
  46. gap/pkg/semigroups/gap/attributes/inverse.gi +708 -0
  47. gap/pkg/semigroups/gap/attributes/isomorph.gd +16 -0
  48. gap/pkg/semigroups/gap/attributes/isomorph.gi +377 -0
  49. gap/pkg/semigroups/gap/attributes/isorms.gd +49 -0
  50. gap/pkg/semigroups/gap/attributes/isorms.gi +1383 -0
  51. gap/pkg/semigroups/gap/attributes/maximal.gd +16 -0
  52. gap/pkg/semigroups/gap/attributes/maximal.gi +1876 -0
  53. gap/pkg/semigroups/gap/attributes/properties.gd +109 -0
  54. gap/pkg/semigroups/gap/attributes/properties.gi +1658 -0
  55. gap/pkg/semigroups/gap/attributes/rms-translat.gd +39 -0
  56. gap/pkg/semigroups/gap/attributes/rms-translat.gi +1078 -0
  57. gap/pkg/semigroups/gap/attributes/semifp.gd +12 -0
  58. gap/pkg/semigroups/gap/attributes/semifp.gi +84 -0
  59. gap/pkg/semigroups/gap/attributes/translat.gd +474 -0
  60. gap/pkg/semigroups/gap/attributes/translat.gi +1779 -0
  61. gap/pkg/semigroups/gap/congruences/cong.gd +154 -0
  62. gap/pkg/semigroups/gap/congruences/cong.gi +351 -0
  63. gap/pkg/semigroups/gap/congruences/conginv.gd +38 -0
  64. gap/pkg/semigroups/gap/congruences/conginv.gi +589 -0
  65. gap/pkg/semigroups/gap/congruences/conglatt.gd +101 -0
  66. gap/pkg/semigroups/gap/congruences/conglatt.gi +886 -0
  67. gap/pkg/semigroups/gap/congruences/congpairs.gd +21 -0
  68. gap/pkg/semigroups/gap/congruences/congpairs.gi +272 -0
  69. gap/pkg/semigroups/gap/congruences/congpart.gd +90 -0
  70. gap/pkg/semigroups/gap/congruences/congpart.gi +449 -0
  71. gap/pkg/semigroups/gap/congruences/congrees.gd +20 -0
  72. gap/pkg/semigroups/gap/congruences/congrees.gi +313 -0
  73. gap/pkg/semigroups/gap/congruences/congrms.gd +54 -0
  74. gap/pkg/semigroups/gap/congruences/congrms.gi +1467 -0
  75. gap/pkg/semigroups/gap/congruences/congsemigraph.gd +28 -0
  76. gap/pkg/semigroups/gap/congruences/congsemigraph.gi +289 -0
  77. gap/pkg/semigroups/gap/congruences/congsimple.gd +27 -0
  78. gap/pkg/semigroups/gap/congruences/congsimple.gi +236 -0
  79. gap/pkg/semigroups/gap/congruences/conguniv.gd +20 -0
  80. gap/pkg/semigroups/gap/congruences/conguniv.gi +271 -0
  81. gap/pkg/semigroups/gap/congruences/congwordgraph.gd +21 -0
  82. gap/pkg/semigroups/gap/congruences/congwordgraph.gi +250 -0
  83. gap/pkg/semigroups/gap/elements/bipart.gd +71 -0
  84. gap/pkg/semigroups/gap/elements/bipart.gi +995 -0
  85. gap/pkg/semigroups/gap/elements/blocks.gd +31 -0
  86. gap/pkg/semigroups/gap/elements/blocks.gi +134 -0
  87. gap/pkg/semigroups/gap/elements/boolmat.gd +74 -0
  88. gap/pkg/semigroups/gap/elements/boolmat.gi +726 -0
  89. gap/pkg/semigroups/gap/elements/elements.gd +11 -0
  90. gap/pkg/semigroups/gap/elements/elements.gi +121 -0
  91. gap/pkg/semigroups/gap/elements/ffmat.gd +71 -0
  92. gap/pkg/semigroups/gap/elements/ffmat.gi +311 -0
  93. gap/pkg/semigroups/gap/elements/maxplusmat.gd +131 -0
  94. gap/pkg/semigroups/gap/elements/maxplusmat.gi +782 -0
  95. gap/pkg/semigroups/gap/elements/pbr.gd +51 -0
  96. gap/pkg/semigroups/gap/elements/pbr.gi +740 -0
  97. gap/pkg/semigroups/gap/elements/pperm.gd +11 -0
  98. gap/pkg/semigroups/gap/elements/pperm.gi +14 -0
  99. gap/pkg/semigroups/gap/elements/semiringmat.gd +136 -0
  100. gap/pkg/semigroups/gap/elements/semiringmat.gi +717 -0
  101. gap/pkg/semigroups/gap/elements/star.gd +21 -0
  102. gap/pkg/semigroups/gap/elements/star.gi +21 -0
  103. gap/pkg/semigroups/gap/elements/trans.gd +13 -0
  104. gap/pkg/semigroups/gap/elements/trans.gi +50 -0
  105. gap/pkg/semigroups/gap/fp/freeband.gd +22 -0
  106. gap/pkg/semigroups/gap/fp/freeband.gi +502 -0
  107. gap/pkg/semigroups/gap/fp/freeinverse.gd +30 -0
  108. gap/pkg/semigroups/gap/fp/freeinverse.gi +465 -0
  109. gap/pkg/semigroups/gap/fp/tietze.gd +89 -0
  110. gap/pkg/semigroups/gap/fp/tietze.gi +1578 -0
  111. gap/pkg/semigroups/gap/fp/word.gd +15 -0
  112. gap/pkg/semigroups/gap/fp/word.gi +67 -0
  113. gap/pkg/semigroups/gap/greens/acting-inverse.gi +774 -0
  114. gap/pkg/semigroups/gap/greens/acting-regular.gi +553 -0
  115. gap/pkg/semigroups/gap/greens/acting.gd +81 -0
  116. gap/pkg/semigroups/gap/greens/acting.gi +2433 -0
  117. gap/pkg/semigroups/gap/greens/froidure-pin.gd +25 -0
  118. gap/pkg/semigroups/gap/greens/froidure-pin.gi +741 -0
  119. gap/pkg/semigroups/gap/greens/generic.gd +117 -0
  120. gap/pkg/semigroups/gap/greens/generic.gi +630 -0
  121. gap/pkg/semigroups/gap/ideals/acting.gd +17 -0
  122. gap/pkg/semigroups/gap/ideals/acting.gi +1155 -0
  123. gap/pkg/semigroups/gap/ideals/froidure-pin.gd +11 -0
  124. gap/pkg/semigroups/gap/ideals/froidure-pin.gi +105 -0
  125. gap/pkg/semigroups/gap/ideals/ideals.gd +45 -0
  126. gap/pkg/semigroups/gap/ideals/ideals.gi +442 -0
  127. gap/pkg/semigroups/gap/ideals/lambda-rho.gd +16 -0
  128. gap/pkg/semigroups/gap/ideals/lambda-rho.gi +614 -0
  129. gap/pkg/semigroups/gap/libsemigroups/cong.gd +24 -0
  130. gap/pkg/semigroups/gap/libsemigroups/cong.gi +431 -0
  131. gap/pkg/semigroups/gap/libsemigroups/fpsemi.gd +16 -0
  132. gap/pkg/semigroups/gap/libsemigroups/fpsemi.gi +53 -0
  133. gap/pkg/semigroups/gap/libsemigroups/froidure-pin.gd +17 -0
  134. gap/pkg/semigroups/gap/libsemigroups/froidure-pin.gi +945 -0
  135. gap/pkg/semigroups/gap/libsemigroups/sims1.gd +38 -0
  136. gap/pkg/semigroups/gap/libsemigroups/sims1.gi +308 -0
  137. gap/pkg/semigroups/gap/main/acting.gd +36 -0
  138. gap/pkg/semigroups/gap/main/acting.gi +779 -0
  139. gap/pkg/semigroups/gap/main/froidure-pin.gd +72 -0
  140. gap/pkg/semigroups/gap/main/froidure-pin.gi +655 -0
  141. gap/pkg/semigroups/gap/main/graded.gd +26 -0
  142. gap/pkg/semigroups/gap/main/graded.gi +355 -0
  143. gap/pkg/semigroups/gap/main/lambda-rho.gd +29 -0
  144. gap/pkg/semigroups/gap/main/lambda-rho.gi +514 -0
  145. gap/pkg/semigroups/gap/main/orbits.gd +24 -0
  146. gap/pkg/semigroups/gap/main/orbits.gi +512 -0
  147. gap/pkg/semigroups/gap/main/semiact.gd +20 -0
  148. gap/pkg/semigroups/gap/main/semiact.gi +821 -0
  149. gap/pkg/semigroups/gap/main/setup.gd +61 -0
  150. gap/pkg/semigroups/gap/main/setup.gi +1094 -0
  151. gap/pkg/semigroups/gap/obsolete.gd +9 -0
  152. gap/pkg/semigroups/gap/obsolete.gi +14 -0
  153. gap/pkg/semigroups/gap/options.g +55 -0
  154. gap/pkg/semigroups/gap/semigroups/grpperm.gd +12 -0
  155. gap/pkg/semigroups/gap/semigroups/grpperm.gi +177 -0
  156. gap/pkg/semigroups/gap/semigroups/semibipart.gd +28 -0
  157. gap/pkg/semigroups/gap/semigroups/semibipart.gi +570 -0
  158. gap/pkg/semigroups/gap/semigroups/semiboolmat.gd +20 -0
  159. gap/pkg/semigroups/gap/semigroups/semiboolmat.gi +104 -0
  160. gap/pkg/semigroups/gap/semigroups/semicons.gd +52 -0
  161. gap/pkg/semigroups/gap/semigroups/semicons.gi +1194 -0
  162. gap/pkg/semigroups/gap/semigroups/semidp.gd +13 -0
  163. gap/pkg/semigroups/gap/semigroups/semidp.gi +509 -0
  164. gap/pkg/semigroups/gap/semigroups/semieunit.gd +126 -0
  165. gap/pkg/semigroups/gap/semigroups/semieunit.gi +889 -0
  166. gap/pkg/semigroups/gap/semigroups/semiex.gd +104 -0
  167. gap/pkg/semigroups/gap/semigroups/semiex.gi +1590 -0
  168. gap/pkg/semigroups/gap/semigroups/semiffmat.gd +37 -0
  169. gap/pkg/semigroups/gap/semigroups/semiffmat.gi +565 -0
  170. gap/pkg/semigroups/gap/semigroups/semifp.gd +28 -0
  171. gap/pkg/semigroups/gap/semigroups/semifp.gi +1364 -0
  172. gap/pkg/semigroups/gap/semigroups/semigraph.gd +40 -0
  173. gap/pkg/semigroups/gap/semigroups/semigraph.gi +292 -0
  174. gap/pkg/semigroups/gap/semigroups/semigrp.gd +165 -0
  175. gap/pkg/semigroups/gap/semigroups/semigrp.gi +1225 -0
  176. gap/pkg/semigroups/gap/semigroups/semimaxplus.gd +72 -0
  177. gap/pkg/semigroups/gap/semigroups/semimaxplus.gi +710 -0
  178. gap/pkg/semigroups/gap/semigroups/semintmat.gd +13 -0
  179. gap/pkg/semigroups/gap/semigroups/semintmat.gi +74 -0
  180. gap/pkg/semigroups/gap/semigroups/semipbr.gd +19 -0
  181. gap/pkg/semigroups/gap/semigroups/semipbr.gi +139 -0
  182. gap/pkg/semigroups/gap/semigroups/semipperm.gd +27 -0
  183. gap/pkg/semigroups/gap/semigroups/semipperm.gi +711 -0
  184. gap/pkg/semigroups/gap/semigroups/semiquo.gd +14 -0
  185. gap/pkg/semigroups/gap/semigroups/semiquo.gi +97 -0
  186. gap/pkg/semigroups/gap/semigroups/semiringmat.gd +16 -0
  187. gap/pkg/semigroups/gap/semigroups/semiringmat.gi +21 -0
  188. gap/pkg/semigroups/gap/semigroups/semirms.gd +19 -0
  189. gap/pkg/semigroups/gap/semigroups/semirms.gi +977 -0
  190. gap/pkg/semigroups/gap/semigroups/semitrans.gd +49 -0
  191. gap/pkg/semigroups/gap/semigroups/semitrans.gi +909 -0
  192. gap/pkg/semigroups/gap/tools/display.gd +24 -0
  193. gap/pkg/semigroups/gap/tools/display.gi +749 -0
  194. gap/pkg/semigroups/gap/tools/io.gd +17 -0
  195. gap/pkg/semigroups/gap/tools/io.gi +543 -0
  196. gap/pkg/semigroups/gap/tools/iterators.gd +16 -0
  197. gap/pkg/semigroups/gap/tools/iterators.gi +253 -0
  198. gap/pkg/semigroups/gap/tools/utils.gd +19 -0
  199. gap/pkg/semigroups/gap/tools/utils.gi +756 -0
  200. gap/pkg/semigroups/gapbind14/.ccls +18 -0
  201. gap/pkg/semigroups/gapbind14/.clang-format +104 -0
  202. gap/pkg/semigroups/gapbind14/CPPLINT.cfg +5 -0
  203. gap/pkg/semigroups/gapbind14/LICENSE +674 -0
  204. gap/pkg/semigroups/gapbind14/README.md +76 -0
  205. gap/pkg/semigroups/gapbind14/demo/.gitignore +4 -0
  206. gap/pkg/semigroups/gapbind14/demo/LICENSE +293 -0
  207. gap/pkg/semigroups/gapbind14/demo/Makefile.gappkg +220 -0
  208. gap/pkg/semigroups/gapbind14/demo/Makefile.in +19 -0
  209. gap/pkg/semigroups/gapbind14/demo/PackageInfo.g +87 -0
  210. gap/pkg/semigroups/gapbind14/demo/README.md +17 -0
  211. gap/pkg/semigroups/gapbind14/demo/configure +34 -0
  212. gap/pkg/semigroups/gapbind14/demo/gap/gapbind_demo.gd +19 -0
  213. gap/pkg/semigroups/gapbind14/demo/gap/gapbind_demo.gi +10 -0
  214. gap/pkg/semigroups/gapbind14/demo/init.g +16 -0
  215. gap/pkg/semigroups/gapbind14/demo/makedoc.g +10 -0
  216. gap/pkg/semigroups/gapbind14/demo/read.g +6 -0
  217. gap/pkg/semigroups/gapbind14/demo/src/gapbind_demo.cc +142 -0
  218. gap/pkg/semigroups/gapbind14/demo/tst/testall.g +12 -0
  219. gap/pkg/semigroups/gapbind14/include/gapbind14/cpp_fn.hpp +223 -0
  220. gap/pkg/semigroups/gapbind14/include/gapbind14/gap_include.hpp +26 -0
  221. gap/pkg/semigroups/gapbind14/include/gapbind14/gapbind14.hpp +445 -0
  222. gap/pkg/semigroups/gapbind14/include/gapbind14/tame_free_fn.hpp +420 -0
  223. gap/pkg/semigroups/gapbind14/include/gapbind14/tame_mem_fn.hpp +556 -0
  224. gap/pkg/semigroups/gapbind14/include/gapbind14/to_cpp.hpp +162 -0
  225. gap/pkg/semigroups/gapbind14/include/gapbind14/to_gap.hpp +158 -0
  226. gap/pkg/semigroups/gapbind14/src/.clang-format +108 -0
  227. gap/pkg/semigroups/gapbind14/src/gapbind14.cpp +334 -0
  228. gap/pkg/semigroups/init.g +150 -0
  229. gap/pkg/semigroups/m4/ax_append_flag.m4 +50 -0
  230. gap/pkg/semigroups/m4/ax_check_compile_flag.m4 +53 -0
  231. gap/pkg/semigroups/m4/ax_check_hpcombi.m4 +121 -0
  232. gap/pkg/semigroups/m4/ax_check_libsemigroup.m4 +68 -0
  233. gap/pkg/semigroups/m4/ax_compare_version.m4 +177 -0
  234. gap/pkg/semigroups/m4/ax_cxx_compile_stdcxx.m4 +1009 -0
  235. gap/pkg/semigroups/m4/ax_cxx_compile_stdcxx_14.m4 +34 -0
  236. gap/pkg/semigroups/m4/ax_prefix_config_h.m4 +203 -0
  237. gap/pkg/semigroups/m4/ax_pthread.m4 +522 -0
  238. gap/pkg/semigroups/m4/find_gap.m4 +94 -0
  239. gap/pkg/semigroups/makedoc.g +153 -0
  240. gap/pkg/semigroups/prerequisites.sh +62 -0
  241. gap/pkg/semigroups/read.g +105 -0
  242. gap/pkg/semigroups/release.toml +6 -0
  243. gap/pkg/semigroups/tst/extreme/README +2 -0
  244. gap/pkg/semigroups/tst/extreme/attrinv.tst +703 -0
  245. gap/pkg/semigroups/tst/extreme/bipart.tst +2803 -0
  246. gap/pkg/semigroups/tst/extreme/closure.tst +652 -0
  247. gap/pkg/semigroups/tst/extreme/cong.tst +286 -0
  248. gap/pkg/semigroups/tst/extreme/conginv.tst +43 -0
  249. gap/pkg/semigroups/tst/extreme/examples.tst +2449 -0
  250. gap/pkg/semigroups/tst/extreme/freeband.tst +37 -0
  251. gap/pkg/semigroups/tst/extreme/greens-acting-regular.tst +27 -0
  252. gap/pkg/semigroups/tst/extreme/greens-acting.tst +1999 -0
  253. gap/pkg/semigroups/tst/extreme/ideals.tst +858 -0
  254. gap/pkg/semigroups/tst/extreme/inverse.tst +1025 -0
  255. gap/pkg/semigroups/tst/extreme/maximal.tst +856 -0
  256. gap/pkg/semigroups/tst/extreme/misc.tst +4236 -0
  257. gap/pkg/semigroups/tst/extreme/monoid_pkg.tst +1488 -0
  258. gap/pkg/semigroups/tst/extreme/properties.tst +914 -0
  259. gap/pkg/semigroups/tst/extreme/semibipart.tst +2837 -0
  260. gap/pkg/semigroups/tst/extreme/semieunit.tst +49 -0
  261. gap/pkg/semigroups/tst/extreme/semiffmat.tst +353 -0
  262. gap/pkg/semigroups/tst/extreme/semigroups.tst +245 -0
  263. gap/pkg/semigroups/tst/extreme/semiiter.tst +58 -0
  264. gap/pkg/semigroups/tst/extreme/semirms.tst +1091 -0
  265. gap/pkg/semigroups/tst/extreme/transform.tst +305 -0
  266. gap/pkg/semigroups/tst/extreme/translat.tst +44 -0
  267. gap/pkg/semigroups/tst/standard/README +2 -0
  268. gap/pkg/semigroups/tst/standard/attributes/acting.tst +388 -0
  269. gap/pkg/semigroups/tst/standard/attributes/attr.tst +2404 -0
  270. gap/pkg/semigroups/tst/standard/attributes/dual.tst +308 -0
  271. gap/pkg/semigroups/tst/standard/attributes/factor.tst +629 -0
  272. gap/pkg/semigroups/tst/standard/attributes/homomorph.tst +1134 -0
  273. gap/pkg/semigroups/tst/standard/attributes/inverse.tst +1521 -0
  274. gap/pkg/semigroups/tst/standard/attributes/isomorph.tst +435 -0
  275. gap/pkg/semigroups/tst/standard/attributes/isorms.tst +1147 -0
  276. gap/pkg/semigroups/tst/standard/attributes/maximal.tst +853 -0
  277. gap/pkg/semigroups/tst/standard/attributes/properties.tst +2028 -0
  278. gap/pkg/semigroups/tst/standard/attributes/semifp.tst +53 -0
  279. gap/pkg/semigroups/tst/standard/attributes/translat.tst +796 -0
  280. gap/pkg/semigroups/tst/standard/congruences/cong.tst +1044 -0
  281. gap/pkg/semigroups/tst/standard/congruences/conginv.tst +292 -0
  282. gap/pkg/semigroups/tst/standard/congruences/conglatt.tst +421 -0
  283. gap/pkg/semigroups/tst/standard/congruences/congpairs.tst +1011 -0
  284. gap/pkg/semigroups/tst/standard/congruences/congrees.tst +288 -0
  285. gap/pkg/semigroups/tst/standard/congruences/congrms.tst +701 -0
  286. gap/pkg/semigroups/tst/standard/congruences/congsemigraph.tst +422 -0
  287. gap/pkg/semigroups/tst/standard/congruences/congsimple.tst +311 -0
  288. gap/pkg/semigroups/tst/standard/congruences/conguniv.tst +259 -0
  289. gap/pkg/semigroups/tst/standard/congruences/congwordgraph.tst +330 -0
  290. gap/pkg/semigroups/tst/standard/elements/bipart.tst +783 -0
  291. gap/pkg/semigroups/tst/standard/elements/blocks.tst +166 -0
  292. gap/pkg/semigroups/tst/standard/elements/boolmat.tst +608 -0
  293. gap/pkg/semigroups/tst/standard/elements/elements.tst +117 -0
  294. gap/pkg/semigroups/tst/standard/elements/ffmat.tst +349 -0
  295. gap/pkg/semigroups/tst/standard/elements/maxplusmat.tst +613 -0
  296. gap/pkg/semigroups/tst/standard/elements/pbr.tst +506 -0
  297. gap/pkg/semigroups/tst/standard/elements/pperm.tst +32 -0
  298. gap/pkg/semigroups/tst/standard/elements/semiringmat.tst +601 -0
  299. gap/pkg/semigroups/tst/standard/elements/trans.tst +58 -0
  300. gap/pkg/semigroups/tst/standard/fp/freeband.tst +311 -0
  301. gap/pkg/semigroups/tst/standard/fp/freeinverse.tst +147 -0
  302. gap/pkg/semigroups/tst/standard/fp/tietze.tst +780 -0
  303. gap/pkg/semigroups/tst/standard/fp/word.tst +106 -0
  304. gap/pkg/semigroups/tst/standard/greens/acting-inverse.tst +545 -0
  305. gap/pkg/semigroups/tst/standard/greens/acting-regular.tst +396 -0
  306. gap/pkg/semigroups/tst/standard/greens/acting.tst +2033 -0
  307. gap/pkg/semigroups/tst/standard/greens/froidure-pin.tst +1831 -0
  308. gap/pkg/semigroups/tst/standard/greens/generic.tst +1436 -0
  309. gap/pkg/semigroups/tst/standard/ideals/acting.tst +279 -0
  310. gap/pkg/semigroups/tst/standard/ideals/froidure-pin.tst +178 -0
  311. gap/pkg/semigroups/tst/standard/ideals/ideals.tst +380 -0
  312. gap/pkg/semigroups/tst/standard/libsemigroups/cong.tst +310 -0
  313. gap/pkg/semigroups/tst/standard/libsemigroups/froidure-pin.tst +778 -0
  314. gap/pkg/semigroups/tst/standard/libsemigroups/sims1.tst +379 -0
  315. gap/pkg/semigroups/tst/standard/main/acting.tst +411 -0
  316. gap/pkg/semigroups/tst/standard/main/froidure-pin.tst +392 -0
  317. gap/pkg/semigroups/tst/standard/main/semiact.tst +203 -0
  318. gap/pkg/semigroups/tst/standard/main/setup.tst +1144 -0
  319. gap/pkg/semigroups/tst/standard/obsolete.tst +19 -0
  320. gap/pkg/semigroups/tst/standard/options.tst +54 -0
  321. gap/pkg/semigroups/tst/standard/semigroups/grpperm.tst +581 -0
  322. gap/pkg/semigroups/tst/standard/semigroups/semibipart.tst +2635 -0
  323. gap/pkg/semigroups/tst/standard/semigroups/semiboolmat.tst +1871 -0
  324. gap/pkg/semigroups/tst/standard/semigroups/semicons.tst +1173 -0
  325. gap/pkg/semigroups/tst/standard/semigroups/semidp.tst +739 -0
  326. gap/pkg/semigroups/tst/standard/semigroups/semieunit.tst +339 -0
  327. gap/pkg/semigroups/tst/standard/semigroups/semiex.tst +2055 -0
  328. gap/pkg/semigroups/tst/standard/semigroups/semiffmat.tst +746 -0
  329. gap/pkg/semigroups/tst/standard/semigroups/semifp.tst +2702 -0
  330. gap/pkg/semigroups/tst/standard/semigroups/semigraph.tst +133 -0
  331. gap/pkg/semigroups/tst/standard/semigroups/semigrp.tst +1112 -0
  332. gap/pkg/semigroups/tst/standard/semigroups/semimaxplus.tst +654 -0
  333. gap/pkg/semigroups/tst/standard/semigroups/semipbr.tst +2142 -0
  334. gap/pkg/semigroups/tst/standard/semigroups/semipperm.tst +2169 -0
  335. gap/pkg/semigroups/tst/standard/semigroups/semiquo.tst +278 -0
  336. gap/pkg/semigroups/tst/standard/semigroups/semirms.tst +3010 -0
  337. gap/pkg/semigroups/tst/standard/semigroups/semitrans.tst +2758 -0
  338. gap/pkg/semigroups/tst/standard/tools/display.tst +1040 -0
  339. gap/pkg/semigroups/tst/standard/tools/io.tst +363 -0
  340. gap/pkg/semigroups/tst/testinstall.tst +1815 -0
  341. gap/pkg/semigroups/tst/teststandard.g +22 -0
  342. gap/pkg/semigroups/tst/workspaces/load-workspace.tst +142 -0
  343. gap/pkg/semigroups/tst/workspaces/load.g +11 -0
  344. gap/pkg/semigroups/tst/workspaces/save-workspace.tst +166 -0
  345. gap/pkg/semigroups/tst/workspaces/save.g +14 -0
  346. passagemath_gap_pkg_semigroups-10.6.30.dist-info/METADATA +93 -0
  347. passagemath_gap_pkg_semigroups-10.6.30.dist-info/METADATA.bak +94 -0
  348. passagemath_gap_pkg_semigroups-10.6.30.dist-info/RECORD +354 -0
  349. passagemath_gap_pkg_semigroups-10.6.30.dist-info/WHEEL +6 -0
  350. passagemath_gap_pkg_semigroups-10.6.30.dist-info/top_level.txt +1 -0
  351. passagemath_gap_pkg_semigroups.dylibs/libsemigroups.2.dylib +0 -0
  352. sage/all__sagemath_gap_pkg_semigroups.py +1 -0
  353. sage/libs/all__sagemath_gap_pkg_semigroups.py +1 -0
  354. sage/libs/gap_pkg_semigroups.cpython-311-darwin.so +0 -0
@@ -0,0 +1,1131 @@
1
+ #! /bin/bash
2
+ # Generated by configure.
3
+ # Run this file to recreate the current configuration.
4
+ # Compiler output produced by configure, useful for debugging
5
+ # configure, is in config.log if it exists.
6
+
7
+ debug=false
8
+ ac_cs_recheck=false
9
+ ac_cs_silent=false
10
+
11
+ SHELL=${CONFIG_SHELL-/bin/bash}
12
+ export SHELL
13
+ ## -------------------- ##
14
+ ## M4sh Initialization. ##
15
+ ## -------------------- ##
16
+
17
+ # Be more Bourne compatible
18
+ DUALCASE=1; export DUALCASE # for MKS sh
19
+ if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
20
+ then :
21
+ emulate sh
22
+ NULLCMD=:
23
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24
+ # is contrary to our usage. Disable this feature.
25
+ alias -g '${1+"$@"}'='"$@"'
26
+ setopt NO_GLOB_SUBST
27
+ else case e in #(
28
+ e) case `(set -o) 2>/dev/null` in #(
29
+ *posix*) :
30
+ set -o posix ;; #(
31
+ *) :
32
+ ;;
33
+ esac ;;
34
+ esac
35
+ fi
36
+
37
+
38
+
39
+ # Reset variables that may have inherited troublesome values from
40
+ # the environment.
41
+
42
+ # IFS needs to be set, to space, tab, and newline, in precisely that order.
43
+ # (If _AS_PATH_WALK were called with IFS unset, it would have the
44
+ # side effect of setting IFS to empty, thus disabling word splitting.)
45
+ # Quoting is to prevent editors from complaining about space-tab.
46
+ as_nl='
47
+ '
48
+ export as_nl
49
+ IFS=" "" $as_nl"
50
+
51
+ PS1='$ '
52
+ PS2='> '
53
+ PS4='+ '
54
+
55
+ # Ensure predictable behavior from utilities with locale-dependent output.
56
+ LC_ALL=C
57
+ export LC_ALL
58
+ LANGUAGE=C
59
+ export LANGUAGE
60
+
61
+ # We cannot yet rely on "unset" to work, but we need these variables
62
+ # to be unset--not just set to an empty or harmless value--now, to
63
+ # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct
64
+ # also avoids known problems related to "unset" and subshell syntax
65
+ # in other old shells (e.g. bash 2.01 and pdksh 5.2.14).
66
+ for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH
67
+ do eval test \${$as_var+y} \
68
+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
69
+ done
70
+
71
+ # Ensure that fds 0, 1, and 2 are open.
72
+ if (exec 3>&0) 2>/dev/null; then :; else exec 0</dev/null; fi
73
+ if (exec 3>&1) 2>/dev/null; then :; else exec 1>/dev/null; fi
74
+ if (exec 3>&2) ; then :; else exec 2>/dev/null; fi
75
+
76
+ # The user is always right.
77
+ if ${PATH_SEPARATOR+false} :; then
78
+ PATH_SEPARATOR=:
79
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
80
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
81
+ PATH_SEPARATOR=';'
82
+ }
83
+ fi
84
+
85
+
86
+ # Find who we are. Look in the path if we contain no directory separator.
87
+ as_myself=
88
+ case $0 in #((
89
+ *[\\/]* ) as_myself=$0 ;;
90
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
91
+ for as_dir in $PATH
92
+ do
93
+ IFS=$as_save_IFS
94
+ case $as_dir in #(((
95
+ '') as_dir=./ ;;
96
+ */) ;;
97
+ *) as_dir=$as_dir/ ;;
98
+ esac
99
+ test -r "$as_dir$0" && as_myself=$as_dir$0 && break
100
+ done
101
+ IFS=$as_save_IFS
102
+
103
+ ;;
104
+ esac
105
+ # We did not find ourselves, most probably we were run as 'sh COMMAND'
106
+ # in which case we are not to be found in the path.
107
+ if test "x$as_myself" = x; then
108
+ as_myself=$0
109
+ fi
110
+ if test ! -f "$as_myself"; then
111
+ printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
112
+ exit 1
113
+ fi
114
+
115
+
116
+
117
+ # as_fn_error STATUS ERROR [LINENO LOG_FD]
118
+ # ----------------------------------------
119
+ # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
120
+ # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
121
+ # script with STATUS, using 1 if that was 0.
122
+ as_fn_error ()
123
+ {
124
+ as_status=$1; test $as_status -eq 0 && as_status=1
125
+ if test "$4"; then
126
+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
127
+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
128
+ fi
129
+ printf "%s\n" "$as_me: error: $2" >&2
130
+ as_fn_exit $as_status
131
+ } # as_fn_error
132
+
133
+
134
+ # as_fn_set_status STATUS
135
+ # -----------------------
136
+ # Set $? to STATUS, without forking.
137
+ as_fn_set_status ()
138
+ {
139
+ return $1
140
+ } # as_fn_set_status
141
+
142
+ # as_fn_exit STATUS
143
+ # -----------------
144
+ # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
145
+ as_fn_exit ()
146
+ {
147
+ set +e
148
+ as_fn_set_status $1
149
+ exit $1
150
+ } # as_fn_exit
151
+
152
+ # as_fn_unset VAR
153
+ # ---------------
154
+ # Portably unset VAR.
155
+ as_fn_unset ()
156
+ {
157
+ { eval $1=; unset $1;}
158
+ }
159
+ as_unset=as_fn_unset
160
+
161
+ # as_fn_append VAR VALUE
162
+ # ----------------------
163
+ # Append the text in VALUE to the end of the definition contained in VAR. Take
164
+ # advantage of any shell optimizations that allow amortized linear growth over
165
+ # repeated appends, instead of the typical quadratic growth present in naive
166
+ # implementations.
167
+ if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null
168
+ then :
169
+ eval 'as_fn_append ()
170
+ {
171
+ eval $1+=\$2
172
+ }'
173
+ else case e in #(
174
+ e) as_fn_append ()
175
+ {
176
+ eval $1=\$$1\$2
177
+ } ;;
178
+ esac
179
+ fi # as_fn_append
180
+
181
+ # as_fn_arith ARG...
182
+ # ------------------
183
+ # Perform arithmetic evaluation on the ARGs, and store the result in the
184
+ # global $as_val. Take advantage of shells that can avoid forks. The arguments
185
+ # must be portable across $(()) and expr.
186
+ if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null
187
+ then :
188
+ eval 'as_fn_arith ()
189
+ {
190
+ as_val=$(( $* ))
191
+ }'
192
+ else case e in #(
193
+ e) as_fn_arith ()
194
+ {
195
+ as_val=`expr "$@" || test $? -eq 1`
196
+ } ;;
197
+ esac
198
+ fi # as_fn_arith
199
+
200
+
201
+ if expr a : '\(a\)' >/dev/null 2>&1 &&
202
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
203
+ as_expr=expr
204
+ else
205
+ as_expr=false
206
+ fi
207
+
208
+ if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
209
+ as_basename=basename
210
+ else
211
+ as_basename=false
212
+ fi
213
+
214
+ if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
215
+ as_dirname=dirname
216
+ else
217
+ as_dirname=false
218
+ fi
219
+
220
+ as_me=`$as_basename -- "$0" ||
221
+ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
222
+ X"$0" : 'X\(//\)$' \| \
223
+ X"$0" : 'X\(/\)' \| . 2>/dev/null ||
224
+ printf "%s\n" X/"$0" |
225
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
226
+ s//\1/
227
+ q
228
+ }
229
+ /^X\/\(\/\/\)$/{
230
+ s//\1/
231
+ q
232
+ }
233
+ /^X\/\(\/\).*/{
234
+ s//\1/
235
+ q
236
+ }
237
+ s/.*/./; q'`
238
+
239
+ # Avoid depending upon Character Ranges.
240
+ as_cr_letters='abcdefghijklmnopqrstuvwxyz'
241
+ as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
242
+ as_cr_Letters=$as_cr_letters$as_cr_LETTERS
243
+ as_cr_digits='0123456789'
244
+ as_cr_alnum=$as_cr_Letters$as_cr_digits
245
+
246
+
247
+ # Determine whether it's possible to make 'echo' print without a newline.
248
+ # These variables are no longer used directly by Autoconf, but are AC_SUBSTed
249
+ # for compatibility with existing Makefiles.
250
+ ECHO_C= ECHO_N= ECHO_T=
251
+ case `echo -n x` in #(((((
252
+ -n*)
253
+ case `echo 'xy\c'` in
254
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
255
+ xy) ECHO_C='\c';;
256
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
257
+ ECHO_T=' ';;
258
+ esac;;
259
+ *)
260
+ ECHO_N='-n';;
261
+ esac
262
+
263
+ # For backward compatibility with old third-party macros, we provide
264
+ # the shell variables $as_echo and $as_echo_n. New code should use
265
+ # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively.
266
+ as_echo='printf %s\n'
267
+ as_echo_n='printf %s'
268
+
269
+ rm -f conf$$ conf$$.exe conf$$.file
270
+ if test -d conf$$.dir; then
271
+ rm -f conf$$.dir/conf$$.file
272
+ else
273
+ rm -f conf$$.dir
274
+ mkdir conf$$.dir 2>/dev/null
275
+ fi
276
+ if (echo >conf$$.file) 2>/dev/null; then
277
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
278
+ as_ln_s='ln -s'
279
+ # ... but there are two gotchas:
280
+ # 1) On MSYS, both 'ln -s file dir' and 'ln file dir' fail.
281
+ # 2) DJGPP < 2.04 has no symlinks; 'ln -s' creates a wrapper executable.
282
+ # In both cases, we have to default to 'cp -pR'.
283
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
284
+ as_ln_s='cp -pR'
285
+ elif ln conf$$.file conf$$ 2>/dev/null; then
286
+ as_ln_s=ln
287
+ else
288
+ as_ln_s='cp -pR'
289
+ fi
290
+ else
291
+ as_ln_s='cp -pR'
292
+ fi
293
+ rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
294
+ rmdir conf$$.dir 2>/dev/null
295
+
296
+
297
+ # as_fn_mkdir_p
298
+ # -------------
299
+ # Create "$as_dir" as a directory, including parents if necessary.
300
+ as_fn_mkdir_p ()
301
+ {
302
+
303
+ case $as_dir in #(
304
+ -*) as_dir=./$as_dir;;
305
+ esac
306
+ test -d "$as_dir" || eval $as_mkdir_p || {
307
+ as_dirs=
308
+ while :; do
309
+ case $as_dir in #(
310
+ *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
311
+ *) as_qdir=$as_dir;;
312
+ esac
313
+ as_dirs="'$as_qdir' $as_dirs"
314
+ as_dir=`$as_dirname -- "$as_dir" ||
315
+ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
316
+ X"$as_dir" : 'X\(//\)[^/]' \| \
317
+ X"$as_dir" : 'X\(//\)$' \| \
318
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
319
+ printf "%s\n" X"$as_dir" |
320
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
321
+ s//\1/
322
+ q
323
+ }
324
+ /^X\(\/\/\)[^/].*/{
325
+ s//\1/
326
+ q
327
+ }
328
+ /^X\(\/\/\)$/{
329
+ s//\1/
330
+ q
331
+ }
332
+ /^X\(\/\).*/{
333
+ s//\1/
334
+ q
335
+ }
336
+ s/.*/./; q'`
337
+ test -d "$as_dir" && break
338
+ done
339
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
340
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
341
+
342
+
343
+ } # as_fn_mkdir_p
344
+ if mkdir -p . 2>/dev/null; then
345
+ as_mkdir_p='mkdir -p "$as_dir"'
346
+ else
347
+ test -d ./-p && rmdir ./-p
348
+ as_mkdir_p=false
349
+ fi
350
+
351
+
352
+ # as_fn_executable_p FILE
353
+ # -----------------------
354
+ # Test if FILE is an executable regular file.
355
+ as_fn_executable_p ()
356
+ {
357
+ test -f "$1" && test -x "$1"
358
+ } # as_fn_executable_p
359
+ as_test_x='test -x'
360
+ as_executable_p=as_fn_executable_p
361
+
362
+ # Sed expression to map a string onto a valid CPP name.
363
+ as_sed_cpp="y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
364
+ as_tr_cpp="eval sed '$as_sed_cpp'" # deprecated
365
+
366
+ # Sed expression to map a string onto a valid variable name.
367
+ as_sed_sh="y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
368
+ as_tr_sh="eval sed '$as_sed_sh'" # deprecated
369
+
370
+
371
+ exec 6>&1
372
+ ## ----------------------------------- ##
373
+ ## Main body of $CONFIG_STATUS script. ##
374
+ ## ----------------------------------- ##
375
+ # Save the log message, to keep $0 and so on meaningful, and to
376
+ # report actual input values of CONFIG_FILES etc. instead of their
377
+ # values after options handling.
378
+ ac_log="
379
+ This file was extended by semigroups $as_me GAP package, which was
380
+ generated by GNU Autoconf 2.72. Invocation command line was
381
+
382
+ CONFIG_FILES = $CONFIG_FILES
383
+ CONFIG_HEADERS = $CONFIG_HEADERS
384
+ CONFIG_LINKS = $CONFIG_LINKS
385
+ CONFIG_COMMANDS = $CONFIG_COMMANDS
386
+ $ $0 $@
387
+
388
+ on `(hostname || uname -n) 2>/dev/null | sed 1q`
389
+ "
390
+
391
+ # Files that config.status was made for.
392
+ config_files=" GNUmakefile"
393
+ config_headers=" gen/pkgconfig.h:src/pkgconfig.h.in"
394
+ config_commands=" src/semigroups-config.hpp"
395
+
396
+ ac_cs_usage="\
397
+ '$as_me' instantiates files and other configuration actions
398
+ from templates according to the current configuration. Unless the files
399
+ and actions are specified as TAGs, all are instantiated by default.
400
+
401
+ Usage: $0 [OPTION]... [TAG]...
402
+
403
+ -h, --help print this help, then exit
404
+ -V, --version print version number and configuration settings, then exit
405
+ --config print configuration, then exit
406
+ -q, --quiet, --silent
407
+ do not print progress messages
408
+ -d, --debug don't remove temporary files
409
+ --recheck update $as_me by reconfiguring in the same conditions
410
+ --file=FILE[:TEMPLATE]
411
+ instantiate the configuration file FILE
412
+ --header=FILE[:TEMPLATE]
413
+ instantiate the configuration header FILE
414
+
415
+ Configuration files:
416
+ $config_files
417
+
418
+ Configuration headers:
419
+ $config_headers
420
+
421
+ Configuration commands:
422
+ $config_commands
423
+
424
+ Report bugs to the package provider."
425
+
426
+ ac_cs_config='--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 '\''CXX=g++ -std=gnu++11 -std=gnu++11'\'' '\''CXXFLAGS=-g -O2'\'' '\''LDFLAGS=-L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic'\'' CC=gcc '\''CFLAGS=-g -O2'\'' PKG_CONFIG_PATH=/Users/runner/sage-local/lib/pkgconfig:/Users/runner/sage-local/lib/pkgconfig:/opt/homebrew/opt/sqlite/lib/pkgconfig:/opt/homebrew/opt/readline/lib/pkgconfig:/opt/homebrew/opt/openssl/lib/pkgconfig:/opt/homebrew/lib/pkgconfig:/Users/runner/work/passagemath/passagemath/prefix/lib/pkgconfig:'
427
+ ac_cs_version="\
428
+ semigroups config.status GAP package
429
+ configured by ./configure, generated by GNU Autoconf 2.72,
430
+ with options \"$ac_cs_config\"
431
+
432
+ Copyright (C) 2023 Free Software Foundation, Inc.
433
+ This config.status script is free software; the Free Software Foundation
434
+ gives unlimited permission to copy, distribute and modify it."
435
+
436
+ ac_pwd='/Users/runner/sage-local/var/tmp/sage/build/semigroups-5.5.3/src'
437
+ srcdir='.'
438
+ AWK='awk'
439
+ test -n "$AWK" || AWK=awk
440
+ # The default lists apply if the user does not specify any file.
441
+ ac_need_defaults=:
442
+ while test $# != 0
443
+ do
444
+ case $1 in
445
+ --*=?*)
446
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
447
+ ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
448
+ ac_shift=:
449
+ ;;
450
+ --*=)
451
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
452
+ ac_optarg=
453
+ ac_shift=:
454
+ ;;
455
+ *)
456
+ ac_option=$1
457
+ ac_optarg=$2
458
+ ac_shift=shift
459
+ ;;
460
+ esac
461
+
462
+ case $ac_option in
463
+ # Handling of the options.
464
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
465
+ ac_cs_recheck=: ;;
466
+ --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
467
+ printf "%s\n" "$ac_cs_version"; exit ;;
468
+ --config | --confi | --conf | --con | --co | --c )
469
+ printf "%s\n" "$ac_cs_config"; exit ;;
470
+ --debug | --debu | --deb | --de | --d | -d )
471
+ debug=: ;;
472
+ --file | --fil | --fi | --f )
473
+ $ac_shift
474
+ case $ac_optarg in
475
+ *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
476
+ '') as_fn_error $? "missing file argument" ;;
477
+ esac
478
+ as_fn_append CONFIG_FILES " '$ac_optarg'"
479
+ ac_need_defaults=false;;
480
+ --header | --heade | --head | --hea )
481
+ $ac_shift
482
+ case $ac_optarg in
483
+ *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
484
+ esac
485
+ as_fn_append CONFIG_HEADERS " '$ac_optarg'"
486
+ ac_need_defaults=false;;
487
+ --he | --h)
488
+ # Conflict between --help and --header
489
+ as_fn_error $? "ambiguous option: '$1'
490
+ Try '$0 --help' for more information.";;
491
+ --help | --hel | -h )
492
+ printf "%s\n" "$ac_cs_usage"; exit ;;
493
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
494
+ | -silent | --silent | --silen | --sile | --sil | --si | --s)
495
+ ac_cs_silent=: ;;
496
+
497
+ # This is an error.
498
+ -*) as_fn_error $? "unrecognized option: '$1'
499
+ Try '$0 --help' for more information." ;;
500
+
501
+ *) as_fn_append ac_config_targets " $1"
502
+ ac_need_defaults=false ;;
503
+
504
+ esac
505
+ shift
506
+ done
507
+
508
+ ac_configure_extra_args=
509
+
510
+ if $ac_cs_silent; then
511
+ exec 6>/dev/null
512
+ ac_configure_extra_args="$ac_configure_extra_args --silent"
513
+ fi
514
+
515
+ if $ac_cs_recheck; then
516
+ set X /bin/bash './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' 'CXX=g++ -std=gnu++11 -std=gnu++11' 'CXXFLAGS=-g -O2' 'LDFLAGS=-L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic' 'CC=gcc' 'CFLAGS=-g -O2' 'PKG_CONFIG_PATH=/Users/runner/sage-local/lib/pkgconfig:/Users/runner/sage-local/lib/pkgconfig:/opt/homebrew/opt/sqlite/lib/pkgconfig:/opt/homebrew/opt/readline/lib/pkgconfig:/opt/homebrew/opt/openssl/lib/pkgconfig:/opt/homebrew/lib/pkgconfig:/Users/runner/work/passagemath/passagemath/prefix/lib/pkgconfig:' $ac_configure_extra_args --no-create --no-recursion
517
+ shift
518
+ \printf "%s\n" "running CONFIG_SHELL=/bin/bash $*" >&6
519
+ CONFIG_SHELL='/bin/bash'
520
+ export CONFIG_SHELL
521
+ exec "$@"
522
+ fi
523
+
524
+ exec 5>>config.log
525
+ {
526
+ echo
527
+ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
528
+ ## Running $as_me. ##
529
+ _ASBOX
530
+ printf "%s\n" "$ac_log"
531
+ } >&5
532
+
533
+ #
534
+ # INIT-COMMANDS
535
+ #
536
+ PACKAGE=""
537
+
538
+
539
+ # Handling of arguments.
540
+ for ac_config_target in $ac_config_targets
541
+ do
542
+ case $ac_config_target in
543
+ "gen/pkgconfig.h") CONFIG_HEADERS="$CONFIG_HEADERS gen/pkgconfig.h:src/pkgconfig.h.in" ;;
544
+ "src/semigroups-config.hpp") CONFIG_COMMANDS="$CONFIG_COMMANDS src/semigroups-config.hpp" ;;
545
+ "GNUmakefile") CONFIG_FILES="$CONFIG_FILES GNUmakefile" ;;
546
+
547
+ *) as_fn_error $? "invalid argument: '$ac_config_target'" "$LINENO" 5;;
548
+ esac
549
+ done
550
+
551
+
552
+ # If the user did not use the arguments to specify the items to instantiate,
553
+ # then the envvar interface is used. Set only those that are not.
554
+ # We use the long form for the default assignment because of an extremely
555
+ # bizarre bug on SunOS 4.1.3.
556
+ if $ac_need_defaults; then
557
+ test ${CONFIG_FILES+y} || CONFIG_FILES=$config_files
558
+ test ${CONFIG_HEADERS+y} || CONFIG_HEADERS=$config_headers
559
+ test ${CONFIG_COMMANDS+y} || CONFIG_COMMANDS=$config_commands
560
+ fi
561
+
562
+ # Have a temporary directory for convenience. Make it in the build tree
563
+ # simply because there is no reason against having it here, and in addition,
564
+ # creating and moving files from /tmp can sometimes cause problems.
565
+ # Hook for its removal unless debugging.
566
+ # Note that there is a small window in which the directory will not be cleaned:
567
+ # after its creation but before its name has been assigned to '$tmp'.
568
+ $debug ||
569
+ {
570
+ tmp= ac_tmp=
571
+ trap 'exit_status=$?
572
+ : "${ac_tmp:=$tmp}"
573
+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
574
+ ' 0
575
+ trap 'as_fn_exit 1' 1 2 13 15
576
+ }
577
+ # Create a (secure) tmp directory for tmp files.
578
+
579
+ {
580
+ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
581
+ test -d "$tmp"
582
+ } ||
583
+ {
584
+ tmp=./conf$$-$RANDOM
585
+ (umask 077 && mkdir "$tmp")
586
+ } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
587
+ ac_tmp=$tmp
588
+
589
+ # Set up the scripts for CONFIG_FILES section.
590
+ # No need to generate them if there are no CONFIG_FILES.
591
+ # This happens for instance with './config.status config.h'.
592
+ if test -n "$CONFIG_FILES"; then
593
+
594
+
595
+ ac_cr=`echo X | tr X '\015'`
596
+ # On cygwin, bash can eat \r inside `` if the user requested igncr.
597
+ # But we know of no other shell where ac_cr would be empty at this
598
+ # point, so we can use a bashism as a fallback.
599
+ if test "x$ac_cr" = x; then
600
+ eval ac_cr=\$\'\\r\'
601
+ fi
602
+ ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
603
+ if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
604
+ ac_cs_awk_cr='\\r'
605
+ else
606
+ ac_cs_awk_cr=$ac_cr
607
+ fi
608
+
609
+ echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
610
+ cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
611
+ S["LTLIBOBJS"]=""
612
+ S["LIBOBJS"]=""
613
+ S["HPCOMBI_CXXFLAGS"]="-mavx -flax-vector-conversions"
614
+ S["HPCOMBI_CONSTEXPR_FUN_ARGS"]=""
615
+ S["LIBSEMIGROUPS_HPCOMBI_ENABLED"]=""
616
+ S["KERNEL_DEBUG"]="no"
617
+ S["WITH_INCLUDED_LIBSEMIGROUPS"]=""
618
+ S["LIBSEMIGROUPS_RPATH"]="-Wl,-rpath,/Users/runner/sage-local/lib"
619
+ S["subdirs"]=""
620
+ S["AWK"]="awk"
621
+ S["LIBSEMIGROUPS_LIBS"]="-lsemigroups"
622
+ S["LIBSEMIGROUPS_CFLAGS"]=""
623
+ S["PKG_CONFIG_LIBDIR"]=""
624
+ S["PKG_CONFIG_PATH"]="/Users/runner/sage-local/lib/pkgconfig:/Users/runner/sage-local/lib/pkgconfig:/opt/homebrew/opt/sqlite/lib/pkgconfig:/opt/homebrew/opt/readline/lib/"\
625
+ "pkgconfig:/opt/homebrew/opt/openssl/lib/pkgconfig:/opt/homebrew/lib/pkgconfig:/Users/runner/work/passagemath/passagemath/prefix/lib/pkgconfig:"
626
+ S["PKG_CONFIG"]="/opt/homebrew/bin/pkg-config"
627
+ S["SYS_IS_CYGWIN"]=""
628
+ S["PTHREAD_CFLAGS"]="-pthread"
629
+ S["PTHREAD_LIBS"]="-lpthread"
630
+ S["PTHREAD_CXX"]="g++ -std=gnu++11 -std=gnu++11 -std=gnu++14"
631
+ S["PTHREAD_CC"]="gcc"
632
+ S["ax_pthread_config"]=""
633
+ S["CPP"]="gcc -E"
634
+ S["SED"]="/usr/bin/sed"
635
+ S["ac_ct_CC"]="gcc"
636
+ S["CFLAGS"]="-g -O2"
637
+ S["CC"]="gcc"
638
+ S["host_os"]="darwin23.6.0"
639
+ S["host_vendor"]="apple"
640
+ S["host_cpu"]="aarch64"
641
+ S["host"]="aarch64-apple-darwin23.6.0"
642
+ S["build_os"]="darwin23.6.0"
643
+ S["build_vendor"]="apple"
644
+ S["build_cpu"]="aarch64"
645
+ S["build"]="aarch64-apple-darwin23.6.0"
646
+ S["GAP_LDFLAGS"]=""
647
+ S["GAP_CFLAGS"]=" -pthread -g -O2"
648
+ S["GAP_CPPFLAGS"]="-I/Users/runner/sage-local/include/gap/extra -DUSE_GASMAN=1"
649
+ S["GAPROOT"]="/Users/runner/sage-local/lib/gap"
650
+ S["GAPARCH"]="aarch64-apple-darwin23-default64-kv10"
651
+ S["HAVE_CXX14"]="1"
652
+ S["OBJEXT"]="o"
653
+ S["EXEEXT"]=""
654
+ S["ac_ct_CXX"]=""
655
+ S["CPPFLAGS"]=""
656
+ S["LDFLAGS"]="-L/Users/runner/sage-local/lib -L/Users/runner/sage-local/lib -Wl,-ld_classic -Wl,-headerpad_max_install_names -Wl,-ld_classic"
657
+ S["CXXFLAGS"]="-g -O2"
658
+ S["CXX"]="g++ -std=gnu++11 -std=gnu++11 -std=gnu++14"
659
+ S["target_alias"]=""
660
+ S["host_alias"]=""
661
+ S["build_alias"]=""
662
+ S["LIBS"]="-lpthread "
663
+ S["ECHO_T"]=""
664
+ S["ECHO_N"]=""
665
+ S["ECHO_C"]="\\c"
666
+ S["DEFS"]="-DHAVE_CONFIG_H"
667
+ S["mandir"]="${datarootdir}/man"
668
+ S["localedir"]="${datarootdir}/locale"
669
+ S["libdir"]="/Users/runner/sage-local/lib"
670
+ S["psdir"]="${docdir}"
671
+ S["pdfdir"]="${docdir}"
672
+ S["dvidir"]="${docdir}"
673
+ S["htmldir"]="${docdir}"
674
+ S["infodir"]="${datarootdir}/info"
675
+ S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
676
+ S["oldincludedir"]="/usr/include"
677
+ S["includedir"]="${prefix}/include"
678
+ S["runstatedir"]="${localstatedir}/run"
679
+ S["localstatedir"]="${prefix}/var"
680
+ S["sharedstatedir"]="${prefix}/com"
681
+ S["sysconfdir"]="${prefix}/etc"
682
+ S["datadir"]="${datarootdir}"
683
+ S["datarootdir"]="${prefix}/share"
684
+ S["libexecdir"]="${exec_prefix}/libexec"
685
+ S["sbindir"]="${exec_prefix}/sbin"
686
+ S["bindir"]="${exec_prefix}/bin"
687
+ S["program_transform_name"]="s,x,x,"
688
+ S["prefix"]="/Users/runner/sage-local"
689
+ S["exec_prefix"]="${prefix}"
690
+ S["PACKAGE_URL"]=""
691
+ S["PACKAGE_BUGREPORT"]=""
692
+ S["PACKAGE_STRING"]="semigroups GAP package"
693
+ S["PACKAGE_VERSION"]="GAP package"
694
+ S["PACKAGE_TARNAME"]="semigroups"
695
+ S["PACKAGE_NAME"]="semigroups"
696
+ S["PATH_SEPARATOR"]=":"
697
+ S["SHELL"]="/bin/bash"
698
+ _ACAWK
699
+ cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
700
+ for (key in S) S_is_set[key] = 1
701
+ FS = ""
702
+
703
+ }
704
+ {
705
+ line = $ 0
706
+ nfields = split(line, field, "@")
707
+ substed = 0
708
+ len = length(field[1])
709
+ for (i = 2; i < nfields; i++) {
710
+ key = field[i]
711
+ keylen = length(key)
712
+ if (S_is_set[key]) {
713
+ value = S[key]
714
+ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
715
+ len += length(value) + length(field[++i])
716
+ substed = 1
717
+ } else
718
+ len += 1 + keylen
719
+ }
720
+
721
+ print line
722
+ }
723
+
724
+ _ACAWK
725
+ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
726
+ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
727
+ else
728
+ cat
729
+ fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
730
+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
731
+ fi # test -n "$CONFIG_FILES"
732
+
733
+ # Set up the scripts for CONFIG_HEADERS section.
734
+ # No need to generate them if there are no CONFIG_HEADERS.
735
+ # This happens for instance with './config.status Makefile'.
736
+ if test -n "$CONFIG_HEADERS"; then
737
+ cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
738
+ BEGIN {
739
+ D["PACKAGE_NAME"]=" \"semigroups\""
740
+ D["PACKAGE_TARNAME"]=" \"semigroups\""
741
+ D["PACKAGE_VERSION"]=" \"GAP package\""
742
+ D["PACKAGE_STRING"]=" \"semigroups GAP package\""
743
+ D["PACKAGE_BUGREPORT"]=" \"\""
744
+ D["PACKAGE_URL"]=" \"\""
745
+ D["HAVE_CXX14"]=" 1"
746
+ D["HAVE_PTHREAD_PRIO_INHERIT"]=" 1"
747
+ D["HAVE_PTHREAD"]=" 1"
748
+ D["HAVE_LIBPTHREAD"]=" 1"
749
+ D["HAVE_STDIO_H"]=" 1"
750
+ D["HAVE_STDLIB_H"]=" 1"
751
+ D["HAVE_STRING_H"]=" 1"
752
+ D["HAVE_INTTYPES_H"]=" 1"
753
+ D["HAVE_STDINT_H"]=" 1"
754
+ D["HAVE_STRINGS_H"]=" 1"
755
+ D["HAVE_SYS_STAT_H"]=" 1"
756
+ D["HAVE_SYS_TYPES_H"]=" 1"
757
+ D["HAVE_UNISTD_H"]=" 1"
758
+ D["STDC_HEADERS"]=" 1"
759
+ for (key in D) D_is_set[key] = 1
760
+ FS = ""
761
+ }
762
+ /^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
763
+ line = $ 0
764
+ split(line, arg, " ")
765
+ if (arg[1] == "#") {
766
+ defundef = arg[2]
767
+ mac1 = arg[3]
768
+ } else {
769
+ defundef = substr(arg[1], 2)
770
+ mac1 = arg[2]
771
+ }
772
+ split(mac1, mac2, "(") #)
773
+ macro = mac2[1]
774
+ prefix = substr(line, 1, index(line, defundef) - 1)
775
+ if (D_is_set[macro]) {
776
+ # Preserve the white space surrounding the "#".
777
+ print prefix "define", macro P[macro] D[macro]
778
+ next
779
+ } else {
780
+ # Replace #undef with comments. This is necessary, for example,
781
+ # in the case of _POSIX_SOURCE, which is predefined and required
782
+ # on some systems where configure will not decide to define it.
783
+ if (defundef == "undef") {
784
+ print "/*", prefix defundef, macro, "*/"
785
+ next
786
+ }
787
+ }
788
+ }
789
+ { print }
790
+ _ACAWK
791
+ as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
792
+ fi # test -n "$CONFIG_HEADERS"
793
+
794
+
795
+ eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
796
+ shift
797
+ for ac_tag
798
+ do
799
+ case $ac_tag in
800
+ :[FHLC]) ac_mode=$ac_tag; continue;;
801
+ esac
802
+ case $ac_mode$ac_tag in
803
+ :[FHL]*:*);;
804
+ :L* | :C*:*) as_fn_error $? "invalid tag '$ac_tag'" "$LINENO" 5;;
805
+ :[FH]-) ac_tag=-:-;;
806
+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
807
+ esac
808
+ ac_save_IFS=$IFS
809
+ IFS=:
810
+ set x $ac_tag
811
+ IFS=$ac_save_IFS
812
+ shift
813
+ ac_file=$1
814
+ shift
815
+
816
+ case $ac_mode in
817
+ :L) ac_source=$1;;
818
+ :[FH])
819
+ ac_file_inputs=
820
+ for ac_f
821
+ do
822
+ case $ac_f in
823
+ -) ac_f="$ac_tmp/stdin";;
824
+ *) # Look for the file first in the build tree, then in the source tree
825
+ # (if the path is not absolute). The absolute path cannot be DOS-style,
826
+ # because $ac_f cannot contain ':'.
827
+ test -f "$ac_f" ||
828
+ case $ac_f in
829
+ [\\/$]*) false;;
830
+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
831
+ esac ||
832
+ as_fn_error 1 "cannot find input file: '$ac_f'" "$LINENO" 5;;
833
+ esac
834
+ case $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
835
+ as_fn_append ac_file_inputs " '$ac_f'"
836
+ done
837
+
838
+ # Let's still pretend it is 'configure' which instantiates (i.e., don't
839
+ # use $as_me), people would be surprised to read:
840
+ # /* config.h. Generated by config.status. */
841
+ configure_input='Generated from '`
842
+ printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
843
+ `' by configure.'
844
+ if test x"$ac_file" != x-; then
845
+ configure_input="$ac_file. $configure_input"
846
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
847
+ printf "%s\n" "$as_me: creating $ac_file" >&6;}
848
+ fi
849
+ # Neutralize special characters interpreted by sed in replacement strings.
850
+ case $configure_input in #(
851
+ *\&* | *\|* | *\\* )
852
+ ac_sed_conf_input=`printf "%s\n" "$configure_input" |
853
+ sed 's/[\\\\&|]/\\\\&/g'`;; #(
854
+ *) ac_sed_conf_input=$configure_input;;
855
+ esac
856
+
857
+ case $ac_tag in
858
+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
859
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
860
+ esac
861
+ ;;
862
+ esac
863
+
864
+ ac_dir=`$as_dirname -- "$ac_file" ||
865
+ $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
866
+ X"$ac_file" : 'X\(//\)[^/]' \| \
867
+ X"$ac_file" : 'X\(//\)$' \| \
868
+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
869
+ printf "%s\n" X"$ac_file" |
870
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
871
+ s//\1/
872
+ q
873
+ }
874
+ /^X\(\/\/\)[^/].*/{
875
+ s//\1/
876
+ q
877
+ }
878
+ /^X\(\/\/\)$/{
879
+ s//\1/
880
+ q
881
+ }
882
+ /^X\(\/\).*/{
883
+ s//\1/
884
+ q
885
+ }
886
+ s/.*/./; q'`
887
+ as_dir="$ac_dir"; as_fn_mkdir_p
888
+ ac_builddir=.
889
+
890
+ case "$ac_dir" in
891
+ .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
892
+ *)
893
+ ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'`
894
+ # A ".." for each directory in $ac_dir_suffix.
895
+ ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
896
+ case $ac_top_builddir_sub in
897
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
898
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
899
+ esac ;;
900
+ esac
901
+ ac_abs_top_builddir=$ac_pwd
902
+ ac_abs_builddir=$ac_pwd$ac_dir_suffix
903
+ # for backward compatibility:
904
+ ac_top_builddir=$ac_top_build_prefix
905
+
906
+ case $srcdir in
907
+ .) # We are building in place.
908
+ ac_srcdir=.
909
+ ac_top_srcdir=$ac_top_builddir_sub
910
+ ac_abs_top_srcdir=$ac_pwd ;;
911
+ [\\/]* | ?:[\\/]* ) # Absolute name.
912
+ ac_srcdir=$srcdir$ac_dir_suffix;
913
+ ac_top_srcdir=$srcdir
914
+ ac_abs_top_srcdir=$srcdir ;;
915
+ *) # Relative name.
916
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
917
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
918
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
919
+ esac
920
+ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
921
+
922
+
923
+ case $ac_mode in
924
+ :F)
925
+ #
926
+ # CONFIG_FILE
927
+ #
928
+
929
+ # If the template does not know about datarootdir, expand it.
930
+ # FIXME: This hack should be removed a few years after 2.60.
931
+ ac_datarootdir_hack=; ac_datarootdir_seen=
932
+ ac_sed_dataroot='
933
+ /datarootdir/ {
934
+ p
935
+ q
936
+ }
937
+ /@datadir@/p
938
+ /@docdir@/p
939
+ /@infodir@/p
940
+ /@localedir@/p
941
+ /@mandir@/p'
942
+ case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
943
+ *datarootdir*) ac_datarootdir_seen=yes;;
944
+ *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
945
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
946
+ printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
947
+ ac_datarootdir_hack='
948
+ s&@datadir@&${datarootdir}&g
949
+ s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
950
+ s&@infodir@&${datarootdir}/info&g
951
+ s&@localedir@&${datarootdir}/locale&g
952
+ s&@mandir@&${datarootdir}/man&g
953
+ s&\${datarootdir}&${prefix}/share&g' ;;
954
+ esac
955
+ ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
956
+ h
957
+ s///
958
+ s/^/:/
959
+ s/[ ]*$/:/
960
+ s/:\$(srcdir):/:/g
961
+ s/:\${srcdir}:/:/g
962
+ s/:@srcdir@:/:/g
963
+ s/^:*//
964
+ s/:*$//
965
+ x
966
+ s/\(=[ ]*\).*/\1/
967
+ G
968
+ s/\n//
969
+ s/^[^=]*=[ ]*$//
970
+ }
971
+
972
+ :t
973
+ /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
974
+ s|@configure_input@|$ac_sed_conf_input|;t t
975
+ s&@top_builddir@&$ac_top_builddir_sub&;t t
976
+ s&@top_build_prefix@&$ac_top_build_prefix&;t t
977
+ s&@srcdir@&$ac_srcdir&;t t
978
+ s&@abs_srcdir@&$ac_abs_srcdir&;t t
979
+ s&@top_srcdir@&$ac_top_srcdir&;t t
980
+ s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
981
+ s&@builddir@&$ac_builddir&;t t
982
+ s&@abs_builddir@&$ac_abs_builddir&;t t
983
+ s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
984
+ $ac_datarootdir_hack
985
+ "
986
+ eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
987
+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
988
+
989
+ test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
990
+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
991
+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
992
+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
993
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable 'datarootdir'
994
+ which seems to be undefined. Please make sure it is defined" >&5
995
+ printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable 'datarootdir'
996
+ which seems to be undefined. Please make sure it is defined" >&2;}
997
+
998
+ rm -f "$ac_tmp/stdin"
999
+ case $ac_file in
1000
+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
1001
+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
1002
+ esac \
1003
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1004
+ ;;
1005
+ :H)
1006
+ #
1007
+ # CONFIG_HEADER
1008
+ #
1009
+ if test x"$ac_file" != x-; then
1010
+ {
1011
+ printf "%s\n" "/* $configure_input */" >&1 \
1012
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
1013
+ } >"$ac_tmp/config.h" \
1014
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1015
+ if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
1016
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1017
+ printf "%s\n" "$as_me: $ac_file is unchanged" >&6;}
1018
+ else
1019
+ rm -f "$ac_file"
1020
+ mv "$ac_tmp/config.h" "$ac_file" \
1021
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1022
+ fi
1023
+ else
1024
+ printf "%s\n" "/* $configure_input */" >&1 \
1025
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
1026
+ || as_fn_error $? "could not create -" "$LINENO" 5
1027
+ fi
1028
+ ;;
1029
+
1030
+ :C) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1031
+ printf "%s\n" "$as_me: executing $ac_file commands" >&6;}
1032
+ ;;
1033
+ esac
1034
+
1035
+
1036
+ case $ac_file$ac_mode in
1037
+ "src/semigroups-config.hpp":C) ac_prefix_conf_OUT=`echo src/semigroups-config.hpp`
1038
+ ac_prefix_conf_DEF=`echo _$ac_prefix_conf_OUT | sed -e "y:abcdefghijklmnopqrstuvwxyz:ABCDEFGHIJKLMNOPQRSTUVWXYZ:" -e "s/[^abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g"`
1039
+ ac_prefix_conf_PKG=`echo semigroups`
1040
+ ac_prefix_conf_LOW=`echo _$ac_prefix_conf_PKG | sed -e "y:ABCDEFGHIJKLMNOPQRSTUVWXYZ-:abcdefghijklmnopqrstuvwxyz_:"`
1041
+ ac_prefix_conf_UPP=`echo $ac_prefix_conf_PKG | sed -e "y:abcdefghijklmnopqrstuvwxyz-:ABCDEFGHIJKLMNOPQRSTUVWXYZ_:" -e "/^[0123456789]/s/^/_/"`
1042
+ ac_prefix_conf_INP=`echo "gen/pkgconfig.h" | sed -e 's/ *//'`
1043
+ if test ".$ac_prefix_conf_INP" = "."; then
1044
+ for ac_file in : $CONFIG_HEADERS; do test "_$ac_file" = _: && continue
1045
+ case "$ac_file" in
1046
+ *.h) ac_prefix_conf_INP=$ac_file ;;
1047
+ *)
1048
+ esac
1049
+ test ".$ac_prefix_conf_INP" != "." && break
1050
+ done
1051
+ fi
1052
+ if test ".$ac_prefix_conf_INP" = "."; then
1053
+ case "$ac_prefix_conf_OUT" in
1054
+ */*) ac_prefix_conf_INP=`basename "$ac_prefix_conf_OUT"`
1055
+ ;;
1056
+ *-*) ac_prefix_conf_INP=`echo "$ac_prefix_conf_OUT" | sed -e "s/[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]*-//"`
1057
+ ;;
1058
+ *) ac_prefix_conf_INP=config.h
1059
+ ;;
1060
+ esac
1061
+ fi
1062
+ if test -z "$ac_prefix_conf_PKG" ; then
1063
+ as_fn_error $? "no prefix for _PREFIX_PKG_CONFIG_H" "$LINENO" 5
1064
+ else
1065
+ if test ! -f "$ac_prefix_conf_INP" ; then if test -f "$srcdir/$ac_prefix_conf_INP" ; then
1066
+ ac_prefix_conf_INP="$srcdir/$ac_prefix_conf_INP"
1067
+ fi fi
1068
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_prefix_conf_OUT - prefix $ac_prefix_conf_UPP for $ac_prefix_conf_INP defines" >&5
1069
+ printf "%s\n" "$as_me: creating $ac_prefix_conf_OUT - prefix $ac_prefix_conf_UPP for $ac_prefix_conf_INP defines" >&6;}
1070
+ if test -f $ac_prefix_conf_INP ; then
1071
+ printf "%s\n" "s/^#undef *\\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]\\)/#undef $ac_prefix_conf_UPP""_\\1/" > conftest.prefix
1072
+ printf "%s\n" "s/^#undef *\\([abcdefghijklmnopqrstuvwxyz]\\)/#undef $ac_prefix_conf_LOW""_\\1/" >> conftest.prefix
1073
+ printf "%s\n" "s/^#define *\\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_][abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]*\\)\\(.*\\)/#ifndef $ac_prefix_conf_UPP""_\\1\\" >> conftest.prefix
1074
+ printf "%s\n" "#define $ac_prefix_conf_UPP""_\\1\\2\\" >> conftest.prefix
1075
+ printf "%s\n" "#endif/" >> conftest.prefix
1076
+ printf "%s\n" "s/^#define *\\([abcdefghijklmnopqrstuvwxyz][abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]*\\)\\(.*\\)/#ifndef $ac_prefix_conf_LOW""_\\1\\" >> conftest.prefix
1077
+ printf "%s\n" "#define $ac_prefix_conf_LOW""_\\1\\2\\" >> conftest.prefix
1078
+ printf "%s\n" "#endif/" >> conftest.prefix
1079
+ # now executing _script on _DEF input to create _OUT output file
1080
+ echo "#ifndef $ac_prefix_conf_DEF" >$tmp/pconfig.h
1081
+ echo "#define $ac_prefix_conf_DEF 1" >>$tmp/pconfig.h
1082
+ echo ' ' >>$tmp/pconfig.h
1083
+ echo /'*' $ac_prefix_conf_OUT. Generated automatically at end of configure. '*'/ >>$tmp/pconfig.h
1084
+
1085
+ sed -f conftest.prefix $ac_prefix_conf_INP >>$tmp/pconfig.h
1086
+ echo ' ' >>$tmp/pconfig.h
1087
+ echo '/* once:' $ac_prefix_conf_DEF '*/' >>$tmp/pconfig.h
1088
+ echo "#endif" >>$tmp/pconfig.h
1089
+ if cmp -s $ac_prefix_conf_OUT $tmp/pconfig.h 2>/dev/null; then
1090
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_prefix_conf_OUT is unchanged" >&5
1091
+ printf "%s\n" "$as_me: $ac_prefix_conf_OUT is unchanged" >&6;}
1092
+ else
1093
+ ac_dir=`$as_dirname -- "$ac_prefix_conf_OUT" ||
1094
+ $as_expr X"$ac_prefix_conf_OUT" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1095
+ X"$ac_prefix_conf_OUT" : 'X\(//\)[^/]' \| \
1096
+ X"$ac_prefix_conf_OUT" : 'X\(//\)$' \| \
1097
+ X"$ac_prefix_conf_OUT" : 'X\(/\)' \| . 2>/dev/null ||
1098
+ printf "%s\n" X"$ac_prefix_conf_OUT" |
1099
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1100
+ s//\1/
1101
+ q
1102
+ }
1103
+ /^X\(\/\/\)[^/].*/{
1104
+ s//\1/
1105
+ q
1106
+ }
1107
+ /^X\(\/\/\)$/{
1108
+ s//\1/
1109
+ q
1110
+ }
1111
+ /^X\(\/\).*/{
1112
+ s//\1/
1113
+ q
1114
+ }
1115
+ s/.*/./; q'`
1116
+ as_dir="$ac_dir"; as_fn_mkdir_p
1117
+ rm -f "$ac_prefix_conf_OUT"
1118
+ mv $tmp/pconfig.h "$ac_prefix_conf_OUT"
1119
+ fi
1120
+ else
1121
+ as_fn_error $? "input file $ac_prefix_conf_INP does not exist - skip generating $ac_prefix_conf_OUT" "$LINENO" 5
1122
+ fi
1123
+ rm -f conftest.*
1124
+ fi
1125
+ ;;
1126
+
1127
+ esac
1128
+ done # for ac_tag
1129
+
1130
+
1131
+ as_fn_exit 0