passagemath-gap-pkg-semigroups 10.6.29__cp312-abi3-manylinux_2_24_x86_64.manylinux_2_28_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-pc-linux-gnu-default64-kv10/semigroups.so +0 -0
  15. gap/pkg/semigroups/config.guess +1807 -0
  16. gap/pkg/semigroups/config.log +1069 -0
  17. gap/pkg/semigroups/config.status +1133 -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.libs/libsemigroups-6be12ad2.so.2.0.0 +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,1133 @@
1
+ #! /usr/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-/usr/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=/host/sage-manylinux_2_28_x86_64 --libdir=/host/sage-manylinux_2_28_x86_64/lib --disable-static --disable-maintainer-mode --disable-dependency-tracking --with-gaproot=/host/sage-manylinux_2_28_x86_64/lib/gap/ --with-external-libsemigroups '\''CXX=g++ -std=gnu++11'\'' '\''CXXFLAGS=-g -O2'\'' '\''LDFLAGS=-Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib '\'' CC=gcc '\''CFLAGS=-g -O2'\'' PKG_CONFIG_PATH=/host/sage-manylinux_2_28_x86_64/lib/pkgconfig:/host/sage-manylinux_2_28_x86_64/lib/pkgconfig:/project/prefix/lib/pkgconfig:/usr/local/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='/host/sage-manylinux_2_28_x86_64/var/tmp/sage/build/semigroups-5.5.3/src'
437
+ srcdir='.'
438
+ AWK='gawk'
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 /usr/bin/bash './configure' '--prefix=/host/sage-manylinux_2_28_x86_64' '--libdir=/host/sage-manylinux_2_28_x86_64/lib' '--disable-static' '--disable-maintainer-mode' '--disable-dependency-tracking' '--with-gaproot=/host/sage-manylinux_2_28_x86_64/lib/gap/' '--with-external-libsemigroups' 'CXX=g++ -std=gnu++11' 'CXXFLAGS=-g -O2' 'LDFLAGS=-Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib ' 'CC=gcc' 'CFLAGS=-g -O2' 'PKG_CONFIG_PATH=/host/sage-manylinux_2_28_x86_64/lib/pkgconfig:/host/sage-manylinux_2_28_x86_64/lib/pkgconfig:/project/prefix/lib/pkgconfig:/usr/local/lib/pkgconfig' $ac_configure_extra_args --no-create --no-recursion
517
+ shift
518
+ \printf "%s\n" "running CONFIG_SHELL=/usr/bin/bash $*" >&6
519
+ CONFIG_SHELL='/usr/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"]="yes"
615
+ S["LIBSEMIGROUPS_HPCOMBI_ENABLED"]="yes"
616
+ S["KERNEL_DEBUG"]="no"
617
+ S["WITH_INCLUDED_LIBSEMIGROUPS"]=""
618
+ S["LIBSEMIGROUPS_RPATH"]="-Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib"
619
+ S["subdirs"]=""
620
+ S["AWK"]="gawk"
621
+ S["LIBSEMIGROUPS_LIBS"]="-lsemigroups "
622
+ S["LIBSEMIGROUPS_CFLAGS"]=""
623
+ S["PKG_CONFIG_LIBDIR"]=""
624
+ S["PKG_CONFIG_PATH"]="/host/sage-manylinux_2_28_x86_64/lib/pkgconfig:/host/sage-manylinux_2_28_x86_64/lib/pkgconfig:/project/prefix/lib/pkgconfig:/usr/local/lib/pkgconfig"
625
+ S["PKG_CONFIG"]="/usr/bin/pkg-config"
626
+ S["SYS_IS_CYGWIN"]=""
627
+ S["PTHREAD_CFLAGS"]="-pthread"
628
+ S["PTHREAD_LIBS"]="-lpthread"
629
+ S["PTHREAD_CXX"]="g++ -std=gnu++11 -std=gnu++14"
630
+ S["PTHREAD_CC"]="gcc"
631
+ S["ax_pthread_config"]=""
632
+ S["CPP"]="gcc -E"
633
+ S["SED"]="/usr/bin/sed"
634
+ S["ac_ct_CC"]="gcc"
635
+ S["CFLAGS"]="-g -O2"
636
+ S["CC"]="gcc"
637
+ S["host_os"]="linux-gnu"
638
+ S["host_vendor"]="pc"
639
+ S["host_cpu"]="x86_64"
640
+ S["host"]="x86_64-pc-linux-gnu"
641
+ S["build_os"]="linux-gnu"
642
+ S["build_vendor"]="pc"
643
+ S["build_cpu"]="x86_64"
644
+ S["build"]="x86_64-pc-linux-gnu"
645
+ S["GAP_LDFLAGS"]=""
646
+ S["GAP_CFLAGS"]=" -pthread -g -O2"
647
+ S["GAP_CPPFLAGS"]="-I/host/sage-manylinux_2_28_x86_64/include/gap/extra -DUSE_GASMAN=1"
648
+ S["GAPROOT"]="/host/sage-manylinux_2_28_x86_64/lib/gap"
649
+ S["GAPARCH"]="x86_64-pc-linux-gnu-default64-kv10"
650
+ S["HAVE_CXX14"]="1"
651
+ S["OBJEXT"]="o"
652
+ S["EXEEXT"]=""
653
+ S["ac_ct_CXX"]=""
654
+ S["CPPFLAGS"]=""
655
+ S["LDFLAGS"]="-Wl,-rpath-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpa"\
656
+ "th-link,/host/sage-manylinux_2_28_x86_64/lib -L/host/sage-manylinux_2_28_x86_64/lib -Wl,-rpath,/host/sage-manylinux_2_28_x86_64/lib "
657
+ S["CXXFLAGS"]="-g -O2"
658
+ S["CXX"]="g++ -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"]="-n"
665
+ S["ECHO_C"]=""
666
+ S["DEFS"]="-DHAVE_CONFIG_H"
667
+ S["mandir"]="${datarootdir}/man"
668
+ S["localedir"]="${datarootdir}/locale"
669
+ S["libdir"]="/host/sage-manylinux_2_28_x86_64/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"]="/host/sage-manylinux_2_28_x86_64"
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"]="/usr/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
+ D["HAVE_X86INTRIN_H"]=" 1"
760
+ D["HPCOMBI_ENABLED"]=" 1"
761
+ for (key in D) D_is_set[key] = 1
762
+ FS = ""
763
+ }
764
+ /^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
765
+ line = $ 0
766
+ split(line, arg, " ")
767
+ if (arg[1] == "#") {
768
+ defundef = arg[2]
769
+ mac1 = arg[3]
770
+ } else {
771
+ defundef = substr(arg[1], 2)
772
+ mac1 = arg[2]
773
+ }
774
+ split(mac1, mac2, "(") #)
775
+ macro = mac2[1]
776
+ prefix = substr(line, 1, index(line, defundef) - 1)
777
+ if (D_is_set[macro]) {
778
+ # Preserve the white space surrounding the "#".
779
+ print prefix "define", macro P[macro] D[macro]
780
+ next
781
+ } else {
782
+ # Replace #undef with comments. This is necessary, for example,
783
+ # in the case of _POSIX_SOURCE, which is predefined and required
784
+ # on some systems where configure will not decide to define it.
785
+ if (defundef == "undef") {
786
+ print "/*", prefix defundef, macro, "*/"
787
+ next
788
+ }
789
+ }
790
+ }
791
+ { print }
792
+ _ACAWK
793
+ as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
794
+ fi # test -n "$CONFIG_HEADERS"
795
+
796
+
797
+ eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
798
+ shift
799
+ for ac_tag
800
+ do
801
+ case $ac_tag in
802
+ :[FHLC]) ac_mode=$ac_tag; continue;;
803
+ esac
804
+ case $ac_mode$ac_tag in
805
+ :[FHL]*:*);;
806
+ :L* | :C*:*) as_fn_error $? "invalid tag '$ac_tag'" "$LINENO" 5;;
807
+ :[FH]-) ac_tag=-:-;;
808
+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
809
+ esac
810
+ ac_save_IFS=$IFS
811
+ IFS=:
812
+ set x $ac_tag
813
+ IFS=$ac_save_IFS
814
+ shift
815
+ ac_file=$1
816
+ shift
817
+
818
+ case $ac_mode in
819
+ :L) ac_source=$1;;
820
+ :[FH])
821
+ ac_file_inputs=
822
+ for ac_f
823
+ do
824
+ case $ac_f in
825
+ -) ac_f="$ac_tmp/stdin";;
826
+ *) # Look for the file first in the build tree, then in the source tree
827
+ # (if the path is not absolute). The absolute path cannot be DOS-style,
828
+ # because $ac_f cannot contain ':'.
829
+ test -f "$ac_f" ||
830
+ case $ac_f in
831
+ [\\/$]*) false;;
832
+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
833
+ esac ||
834
+ as_fn_error 1 "cannot find input file: '$ac_f'" "$LINENO" 5;;
835
+ esac
836
+ case $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
837
+ as_fn_append ac_file_inputs " '$ac_f'"
838
+ done
839
+
840
+ # Let's still pretend it is 'configure' which instantiates (i.e., don't
841
+ # use $as_me), people would be surprised to read:
842
+ # /* config.h. Generated by config.status. */
843
+ configure_input='Generated from '`
844
+ printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
845
+ `' by configure.'
846
+ if test x"$ac_file" != x-; then
847
+ configure_input="$ac_file. $configure_input"
848
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
849
+ printf "%s\n" "$as_me: creating $ac_file" >&6;}
850
+ fi
851
+ # Neutralize special characters interpreted by sed in replacement strings.
852
+ case $configure_input in #(
853
+ *\&* | *\|* | *\\* )
854
+ ac_sed_conf_input=`printf "%s\n" "$configure_input" |
855
+ sed 's/[\\\\&|]/\\\\&/g'`;; #(
856
+ *) ac_sed_conf_input=$configure_input;;
857
+ esac
858
+
859
+ case $ac_tag in
860
+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
861
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
862
+ esac
863
+ ;;
864
+ esac
865
+
866
+ ac_dir=`$as_dirname -- "$ac_file" ||
867
+ $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
868
+ X"$ac_file" : 'X\(//\)[^/]' \| \
869
+ X"$ac_file" : 'X\(//\)$' \| \
870
+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
871
+ printf "%s\n" X"$ac_file" |
872
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
873
+ s//\1/
874
+ q
875
+ }
876
+ /^X\(\/\/\)[^/].*/{
877
+ s//\1/
878
+ q
879
+ }
880
+ /^X\(\/\/\)$/{
881
+ s//\1/
882
+ q
883
+ }
884
+ /^X\(\/\).*/{
885
+ s//\1/
886
+ q
887
+ }
888
+ s/.*/./; q'`
889
+ as_dir="$ac_dir"; as_fn_mkdir_p
890
+ ac_builddir=.
891
+
892
+ case "$ac_dir" in
893
+ .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
894
+ *)
895
+ ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'`
896
+ # A ".." for each directory in $ac_dir_suffix.
897
+ ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
898
+ case $ac_top_builddir_sub in
899
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
900
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
901
+ esac ;;
902
+ esac
903
+ ac_abs_top_builddir=$ac_pwd
904
+ ac_abs_builddir=$ac_pwd$ac_dir_suffix
905
+ # for backward compatibility:
906
+ ac_top_builddir=$ac_top_build_prefix
907
+
908
+ case $srcdir in
909
+ .) # We are building in place.
910
+ ac_srcdir=.
911
+ ac_top_srcdir=$ac_top_builddir_sub
912
+ ac_abs_top_srcdir=$ac_pwd ;;
913
+ [\\/]* | ?:[\\/]* ) # Absolute name.
914
+ ac_srcdir=$srcdir$ac_dir_suffix;
915
+ ac_top_srcdir=$srcdir
916
+ ac_abs_top_srcdir=$srcdir ;;
917
+ *) # Relative name.
918
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
919
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
920
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
921
+ esac
922
+ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
923
+
924
+
925
+ case $ac_mode in
926
+ :F)
927
+ #
928
+ # CONFIG_FILE
929
+ #
930
+
931
+ # If the template does not know about datarootdir, expand it.
932
+ # FIXME: This hack should be removed a few years after 2.60.
933
+ ac_datarootdir_hack=; ac_datarootdir_seen=
934
+ ac_sed_dataroot='
935
+ /datarootdir/ {
936
+ p
937
+ q
938
+ }
939
+ /@datadir@/p
940
+ /@docdir@/p
941
+ /@infodir@/p
942
+ /@localedir@/p
943
+ /@mandir@/p'
944
+ case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
945
+ *datarootdir*) ac_datarootdir_seen=yes;;
946
+ *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
947
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
948
+ printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
949
+ ac_datarootdir_hack='
950
+ s&@datadir@&${datarootdir}&g
951
+ s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
952
+ s&@infodir@&${datarootdir}/info&g
953
+ s&@localedir@&${datarootdir}/locale&g
954
+ s&@mandir@&${datarootdir}/man&g
955
+ s&\${datarootdir}&${prefix}/share&g' ;;
956
+ esac
957
+ ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
958
+ h
959
+ s///
960
+ s/^/:/
961
+ s/[ ]*$/:/
962
+ s/:\$(srcdir):/:/g
963
+ s/:\${srcdir}:/:/g
964
+ s/:@srcdir@:/:/g
965
+ s/^:*//
966
+ s/:*$//
967
+ x
968
+ s/\(=[ ]*\).*/\1/
969
+ G
970
+ s/\n//
971
+ s/^[^=]*=[ ]*$//
972
+ }
973
+
974
+ :t
975
+ /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
976
+ s|@configure_input@|$ac_sed_conf_input|;t t
977
+ s&@top_builddir@&$ac_top_builddir_sub&;t t
978
+ s&@top_build_prefix@&$ac_top_build_prefix&;t t
979
+ s&@srcdir@&$ac_srcdir&;t t
980
+ s&@abs_srcdir@&$ac_abs_srcdir&;t t
981
+ s&@top_srcdir@&$ac_top_srcdir&;t t
982
+ s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
983
+ s&@builddir@&$ac_builddir&;t t
984
+ s&@abs_builddir@&$ac_abs_builddir&;t t
985
+ s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
986
+ $ac_datarootdir_hack
987
+ "
988
+ eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
989
+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
990
+
991
+ test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
992
+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
993
+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
994
+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
995
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable 'datarootdir'
996
+ which seems to be undefined. Please make sure it is defined" >&5
997
+ printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable 'datarootdir'
998
+ which seems to be undefined. Please make sure it is defined" >&2;}
999
+
1000
+ rm -f "$ac_tmp/stdin"
1001
+ case $ac_file in
1002
+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
1003
+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
1004
+ esac \
1005
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1006
+ ;;
1007
+ :H)
1008
+ #
1009
+ # CONFIG_HEADER
1010
+ #
1011
+ if test x"$ac_file" != x-; then
1012
+ {
1013
+ printf "%s\n" "/* $configure_input */" >&1 \
1014
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
1015
+ } >"$ac_tmp/config.h" \
1016
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1017
+ if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
1018
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1019
+ printf "%s\n" "$as_me: $ac_file is unchanged" >&6;}
1020
+ else
1021
+ rm -f "$ac_file"
1022
+ mv "$ac_tmp/config.h" "$ac_file" \
1023
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1024
+ fi
1025
+ else
1026
+ printf "%s\n" "/* $configure_input */" >&1 \
1027
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
1028
+ || as_fn_error $? "could not create -" "$LINENO" 5
1029
+ fi
1030
+ ;;
1031
+
1032
+ :C) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1033
+ printf "%s\n" "$as_me: executing $ac_file commands" >&6;}
1034
+ ;;
1035
+ esac
1036
+
1037
+
1038
+ case $ac_file$ac_mode in
1039
+ "src/semigroups-config.hpp":C) ac_prefix_conf_OUT=`echo src/semigroups-config.hpp`
1040
+ ac_prefix_conf_DEF=`echo _$ac_prefix_conf_OUT | sed -e "y:abcdefghijklmnopqrstuvwxyz:ABCDEFGHIJKLMNOPQRSTUVWXYZ:" -e "s/[^abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g"`
1041
+ ac_prefix_conf_PKG=`echo semigroups`
1042
+ ac_prefix_conf_LOW=`echo _$ac_prefix_conf_PKG | sed -e "y:ABCDEFGHIJKLMNOPQRSTUVWXYZ-:abcdefghijklmnopqrstuvwxyz_:"`
1043
+ ac_prefix_conf_UPP=`echo $ac_prefix_conf_PKG | sed -e "y:abcdefghijklmnopqrstuvwxyz-:ABCDEFGHIJKLMNOPQRSTUVWXYZ_:" -e "/^[0123456789]/s/^/_/"`
1044
+ ac_prefix_conf_INP=`echo "gen/pkgconfig.h" | sed -e 's/ *//'`
1045
+ if test ".$ac_prefix_conf_INP" = "."; then
1046
+ for ac_file in : $CONFIG_HEADERS; do test "_$ac_file" = _: && continue
1047
+ case "$ac_file" in
1048
+ *.h) ac_prefix_conf_INP=$ac_file ;;
1049
+ *)
1050
+ esac
1051
+ test ".$ac_prefix_conf_INP" != "." && break
1052
+ done
1053
+ fi
1054
+ if test ".$ac_prefix_conf_INP" = "."; then
1055
+ case "$ac_prefix_conf_OUT" in
1056
+ */*) ac_prefix_conf_INP=`basename "$ac_prefix_conf_OUT"`
1057
+ ;;
1058
+ *-*) ac_prefix_conf_INP=`echo "$ac_prefix_conf_OUT" | sed -e "s/[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]*-//"`
1059
+ ;;
1060
+ *) ac_prefix_conf_INP=config.h
1061
+ ;;
1062
+ esac
1063
+ fi
1064
+ if test -z "$ac_prefix_conf_PKG" ; then
1065
+ as_fn_error $? "no prefix for _PREFIX_PKG_CONFIG_H" "$LINENO" 5
1066
+ else
1067
+ if test ! -f "$ac_prefix_conf_INP" ; then if test -f "$srcdir/$ac_prefix_conf_INP" ; then
1068
+ ac_prefix_conf_INP="$srcdir/$ac_prefix_conf_INP"
1069
+ fi fi
1070
+ { 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
1071
+ printf "%s\n" "$as_me: creating $ac_prefix_conf_OUT - prefix $ac_prefix_conf_UPP for $ac_prefix_conf_INP defines" >&6;}
1072
+ if test -f $ac_prefix_conf_INP ; then
1073
+ printf "%s\n" "s/^#undef *\\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]\\)/#undef $ac_prefix_conf_UPP""_\\1/" > conftest.prefix
1074
+ printf "%s\n" "s/^#undef *\\([abcdefghijklmnopqrstuvwxyz]\\)/#undef $ac_prefix_conf_LOW""_\\1/" >> conftest.prefix
1075
+ printf "%s\n" "s/^#define *\\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_][abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]*\\)\\(.*\\)/#ifndef $ac_prefix_conf_UPP""_\\1\\" >> conftest.prefix
1076
+ printf "%s\n" "#define $ac_prefix_conf_UPP""_\\1\\2\\" >> conftest.prefix
1077
+ printf "%s\n" "#endif/" >> conftest.prefix
1078
+ printf "%s\n" "s/^#define *\\([abcdefghijklmnopqrstuvwxyz][abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]*\\)\\(.*\\)/#ifndef $ac_prefix_conf_LOW""_\\1\\" >> conftest.prefix
1079
+ printf "%s\n" "#define $ac_prefix_conf_LOW""_\\1\\2\\" >> conftest.prefix
1080
+ printf "%s\n" "#endif/" >> conftest.prefix
1081
+ # now executing _script on _DEF input to create _OUT output file
1082
+ echo "#ifndef $ac_prefix_conf_DEF" >$tmp/pconfig.h
1083
+ echo "#define $ac_prefix_conf_DEF 1" >>$tmp/pconfig.h
1084
+ echo ' ' >>$tmp/pconfig.h
1085
+ echo /'*' $ac_prefix_conf_OUT. Generated automatically at end of configure. '*'/ >>$tmp/pconfig.h
1086
+
1087
+ sed -f conftest.prefix $ac_prefix_conf_INP >>$tmp/pconfig.h
1088
+ echo ' ' >>$tmp/pconfig.h
1089
+ echo '/* once:' $ac_prefix_conf_DEF '*/' >>$tmp/pconfig.h
1090
+ echo "#endif" >>$tmp/pconfig.h
1091
+ if cmp -s $ac_prefix_conf_OUT $tmp/pconfig.h 2>/dev/null; then
1092
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_prefix_conf_OUT is unchanged" >&5
1093
+ printf "%s\n" "$as_me: $ac_prefix_conf_OUT is unchanged" >&6;}
1094
+ else
1095
+ ac_dir=`$as_dirname -- "$ac_prefix_conf_OUT" ||
1096
+ $as_expr X"$ac_prefix_conf_OUT" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1097
+ X"$ac_prefix_conf_OUT" : 'X\(//\)[^/]' \| \
1098
+ X"$ac_prefix_conf_OUT" : 'X\(//\)$' \| \
1099
+ X"$ac_prefix_conf_OUT" : 'X\(/\)' \| . 2>/dev/null ||
1100
+ printf "%s\n" X"$ac_prefix_conf_OUT" |
1101
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1102
+ s//\1/
1103
+ q
1104
+ }
1105
+ /^X\(\/\/\)[^/].*/{
1106
+ s//\1/
1107
+ q
1108
+ }
1109
+ /^X\(\/\/\)$/{
1110
+ s//\1/
1111
+ q
1112
+ }
1113
+ /^X\(\/\).*/{
1114
+ s//\1/
1115
+ q
1116
+ }
1117
+ s/.*/./; q'`
1118
+ as_dir="$ac_dir"; as_fn_mkdir_p
1119
+ rm -f "$ac_prefix_conf_OUT"
1120
+ mv $tmp/pconfig.h "$ac_prefix_conf_OUT"
1121
+ fi
1122
+ else
1123
+ as_fn_error $? "input file $ac_prefix_conf_INP does not exist - skip generating $ac_prefix_conf_OUT" "$LINENO" 5
1124
+ fi
1125
+ rm -f conftest.*
1126
+ fi
1127
+ ;;
1128
+
1129
+ esac
1130
+ done # for ac_tag
1131
+
1132
+
1133
+ as_fn_exit 0