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

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

Potentially problematic release.


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

Files changed (354) hide show
  1. gap/pkg/semigroups/CHANGELOG.md +1699 -0
  2. gap/pkg/semigroups/CONTRIBUTING.md +91 -0
  3. gap/pkg/semigroups/GNUmakefile +110 -0
  4. gap/pkg/semigroups/GNUmakefile.in +110 -0
  5. gap/pkg/semigroups/GPL +674 -0
  6. gap/pkg/semigroups/LICENSE +16 -0
  7. gap/pkg/semigroups/Makefile +26 -0
  8. gap/pkg/semigroups/Makefile.gappkg +225 -0
  9. gap/pkg/semigroups/PackageInfo.g +529 -0
  10. gap/pkg/semigroups/README.md +102 -0
  11. gap/pkg/semigroups/VERSIONS +112 -0
  12. gap/pkg/semigroups/aclocal.m4 +375 -0
  13. gap/pkg/semigroups/autogen.sh +25 -0
  14. gap/pkg/semigroups/bin/x86_64-apple-darwin22-default64-kv10/semigroups.so +0 -0
  15. gap/pkg/semigroups/config.guess +1807 -0
  16. gap/pkg/semigroups/config.log +1082 -0
  17. gap/pkg/semigroups/config.status +1134 -0
  18. gap/pkg/semigroups/config.sub +1960 -0
  19. gap/pkg/semigroups/configure +9742 -0
  20. gap/pkg/semigroups/configure.ac +71 -0
  21. gap/pkg/semigroups/data/doc/greens.pickle +1 -0
  22. gap/pkg/semigroups/data/gens/fullbool-8.pickle.gz +0 -0
  23. gap/pkg/semigroups/data/gens/fullbool.pickle.gz +0 -0
  24. gap/pkg/semigroups/data/gens/hall.pickle.gz +0 -0
  25. gap/pkg/semigroups/data/gens/reflex-6.pickle.gz +0 -0
  26. gap/pkg/semigroups/data/gens/reflex.pickle.gz +0 -0
  27. gap/pkg/semigroups/data/tst/bipart4 +10 -0
  28. gap/pkg/semigroups/data/tst/pperm10 +1 -0
  29. gap/pkg/semigroups/data/tst/tables.gz +0 -0
  30. gap/pkg/semigroups/data/tst/testdata +1 -0
  31. gap/pkg/semigroups/data/tst/testinstall.pickle +1 -0
  32. gap/pkg/semigroups/data/tst/trans3 +7 -0
  33. gap/pkg/semigroups/data/tst/trans3-old +7 -0
  34. gap/pkg/semigroups/environment.yml +7 -0
  35. gap/pkg/semigroups/gap/attributes/acting.gd +15 -0
  36. gap/pkg/semigroups/gap/attributes/acting.gi +297 -0
  37. gap/pkg/semigroups/gap/attributes/attr.gd +91 -0
  38. gap/pkg/semigroups/gap/attributes/attr.gi +1214 -0
  39. gap/pkg/semigroups/gap/attributes/dual.gd +25 -0
  40. gap/pkg/semigroups/gap/attributes/dual.gi +209 -0
  41. gap/pkg/semigroups/gap/attributes/factor.gd +17 -0
  42. gap/pkg/semigroups/gap/attributes/factor.gi +453 -0
  43. gap/pkg/semigroups/gap/attributes/homomorph.gd +84 -0
  44. gap/pkg/semigroups/gap/attributes/homomorph.gi +591 -0
  45. gap/pkg/semigroups/gap/attributes/inverse.gd +38 -0
  46. gap/pkg/semigroups/gap/attributes/inverse.gi +708 -0
  47. gap/pkg/semigroups/gap/attributes/isomorph.gd +16 -0
  48. gap/pkg/semigroups/gap/attributes/isomorph.gi +377 -0
  49. gap/pkg/semigroups/gap/attributes/isorms.gd +49 -0
  50. gap/pkg/semigroups/gap/attributes/isorms.gi +1383 -0
  51. gap/pkg/semigroups/gap/attributes/maximal.gd +16 -0
  52. gap/pkg/semigroups/gap/attributes/maximal.gi +1876 -0
  53. gap/pkg/semigroups/gap/attributes/properties.gd +109 -0
  54. gap/pkg/semigroups/gap/attributes/properties.gi +1658 -0
  55. gap/pkg/semigroups/gap/attributes/rms-translat.gd +39 -0
  56. gap/pkg/semigroups/gap/attributes/rms-translat.gi +1078 -0
  57. gap/pkg/semigroups/gap/attributes/semifp.gd +12 -0
  58. gap/pkg/semigroups/gap/attributes/semifp.gi +84 -0
  59. gap/pkg/semigroups/gap/attributes/translat.gd +474 -0
  60. gap/pkg/semigroups/gap/attributes/translat.gi +1779 -0
  61. gap/pkg/semigroups/gap/congruences/cong.gd +154 -0
  62. gap/pkg/semigroups/gap/congruences/cong.gi +351 -0
  63. gap/pkg/semigroups/gap/congruences/conginv.gd +38 -0
  64. gap/pkg/semigroups/gap/congruences/conginv.gi +589 -0
  65. gap/pkg/semigroups/gap/congruences/conglatt.gd +101 -0
  66. gap/pkg/semigroups/gap/congruences/conglatt.gi +886 -0
  67. gap/pkg/semigroups/gap/congruences/congpairs.gd +21 -0
  68. gap/pkg/semigroups/gap/congruences/congpairs.gi +272 -0
  69. gap/pkg/semigroups/gap/congruences/congpart.gd +90 -0
  70. gap/pkg/semigroups/gap/congruences/congpart.gi +449 -0
  71. gap/pkg/semigroups/gap/congruences/congrees.gd +20 -0
  72. gap/pkg/semigroups/gap/congruences/congrees.gi +313 -0
  73. gap/pkg/semigroups/gap/congruences/congrms.gd +54 -0
  74. gap/pkg/semigroups/gap/congruences/congrms.gi +1467 -0
  75. gap/pkg/semigroups/gap/congruences/congsemigraph.gd +28 -0
  76. gap/pkg/semigroups/gap/congruences/congsemigraph.gi +289 -0
  77. gap/pkg/semigroups/gap/congruences/congsimple.gd +27 -0
  78. gap/pkg/semigroups/gap/congruences/congsimple.gi +236 -0
  79. gap/pkg/semigroups/gap/congruences/conguniv.gd +20 -0
  80. gap/pkg/semigroups/gap/congruences/conguniv.gi +271 -0
  81. gap/pkg/semigroups/gap/congruences/congwordgraph.gd +21 -0
  82. gap/pkg/semigroups/gap/congruences/congwordgraph.gi +250 -0
  83. gap/pkg/semigroups/gap/elements/bipart.gd +71 -0
  84. gap/pkg/semigroups/gap/elements/bipart.gi +995 -0
  85. gap/pkg/semigroups/gap/elements/blocks.gd +31 -0
  86. gap/pkg/semigroups/gap/elements/blocks.gi +134 -0
  87. gap/pkg/semigroups/gap/elements/boolmat.gd +74 -0
  88. gap/pkg/semigroups/gap/elements/boolmat.gi +726 -0
  89. gap/pkg/semigroups/gap/elements/elements.gd +11 -0
  90. gap/pkg/semigroups/gap/elements/elements.gi +121 -0
  91. gap/pkg/semigroups/gap/elements/ffmat.gd +71 -0
  92. gap/pkg/semigroups/gap/elements/ffmat.gi +311 -0
  93. gap/pkg/semigroups/gap/elements/maxplusmat.gd +131 -0
  94. gap/pkg/semigroups/gap/elements/maxplusmat.gi +782 -0
  95. gap/pkg/semigroups/gap/elements/pbr.gd +51 -0
  96. gap/pkg/semigroups/gap/elements/pbr.gi +740 -0
  97. gap/pkg/semigroups/gap/elements/pperm.gd +11 -0
  98. gap/pkg/semigroups/gap/elements/pperm.gi +14 -0
  99. gap/pkg/semigroups/gap/elements/semiringmat.gd +136 -0
  100. gap/pkg/semigroups/gap/elements/semiringmat.gi +717 -0
  101. gap/pkg/semigroups/gap/elements/star.gd +21 -0
  102. gap/pkg/semigroups/gap/elements/star.gi +21 -0
  103. gap/pkg/semigroups/gap/elements/trans.gd +13 -0
  104. gap/pkg/semigroups/gap/elements/trans.gi +50 -0
  105. gap/pkg/semigroups/gap/fp/freeband.gd +22 -0
  106. gap/pkg/semigroups/gap/fp/freeband.gi +502 -0
  107. gap/pkg/semigroups/gap/fp/freeinverse.gd +30 -0
  108. gap/pkg/semigroups/gap/fp/freeinverse.gi +465 -0
  109. gap/pkg/semigroups/gap/fp/tietze.gd +89 -0
  110. gap/pkg/semigroups/gap/fp/tietze.gi +1578 -0
  111. gap/pkg/semigroups/gap/fp/word.gd +15 -0
  112. gap/pkg/semigroups/gap/fp/word.gi +67 -0
  113. gap/pkg/semigroups/gap/greens/acting-inverse.gi +774 -0
  114. gap/pkg/semigroups/gap/greens/acting-regular.gi +553 -0
  115. gap/pkg/semigroups/gap/greens/acting.gd +81 -0
  116. gap/pkg/semigroups/gap/greens/acting.gi +2433 -0
  117. gap/pkg/semigroups/gap/greens/froidure-pin.gd +25 -0
  118. gap/pkg/semigroups/gap/greens/froidure-pin.gi +741 -0
  119. gap/pkg/semigroups/gap/greens/generic.gd +117 -0
  120. gap/pkg/semigroups/gap/greens/generic.gi +630 -0
  121. gap/pkg/semigroups/gap/ideals/acting.gd +17 -0
  122. gap/pkg/semigroups/gap/ideals/acting.gi +1155 -0
  123. gap/pkg/semigroups/gap/ideals/froidure-pin.gd +11 -0
  124. gap/pkg/semigroups/gap/ideals/froidure-pin.gi +105 -0
  125. gap/pkg/semigroups/gap/ideals/ideals.gd +45 -0
  126. gap/pkg/semigroups/gap/ideals/ideals.gi +442 -0
  127. gap/pkg/semigroups/gap/ideals/lambda-rho.gd +16 -0
  128. gap/pkg/semigroups/gap/ideals/lambda-rho.gi +614 -0
  129. gap/pkg/semigroups/gap/libsemigroups/cong.gd +24 -0
  130. gap/pkg/semigroups/gap/libsemigroups/cong.gi +431 -0
  131. gap/pkg/semigroups/gap/libsemigroups/fpsemi.gd +16 -0
  132. gap/pkg/semigroups/gap/libsemigroups/fpsemi.gi +53 -0
  133. gap/pkg/semigroups/gap/libsemigroups/froidure-pin.gd +17 -0
  134. gap/pkg/semigroups/gap/libsemigroups/froidure-pin.gi +945 -0
  135. gap/pkg/semigroups/gap/libsemigroups/sims1.gd +38 -0
  136. gap/pkg/semigroups/gap/libsemigroups/sims1.gi +308 -0
  137. gap/pkg/semigroups/gap/main/acting.gd +36 -0
  138. gap/pkg/semigroups/gap/main/acting.gi +779 -0
  139. gap/pkg/semigroups/gap/main/froidure-pin.gd +72 -0
  140. gap/pkg/semigroups/gap/main/froidure-pin.gi +655 -0
  141. gap/pkg/semigroups/gap/main/graded.gd +26 -0
  142. gap/pkg/semigroups/gap/main/graded.gi +355 -0
  143. gap/pkg/semigroups/gap/main/lambda-rho.gd +29 -0
  144. gap/pkg/semigroups/gap/main/lambda-rho.gi +514 -0
  145. gap/pkg/semigroups/gap/main/orbits.gd +24 -0
  146. gap/pkg/semigroups/gap/main/orbits.gi +512 -0
  147. gap/pkg/semigroups/gap/main/semiact.gd +20 -0
  148. gap/pkg/semigroups/gap/main/semiact.gi +821 -0
  149. gap/pkg/semigroups/gap/main/setup.gd +61 -0
  150. gap/pkg/semigroups/gap/main/setup.gi +1094 -0
  151. gap/pkg/semigroups/gap/obsolete.gd +9 -0
  152. gap/pkg/semigroups/gap/obsolete.gi +14 -0
  153. gap/pkg/semigroups/gap/options.g +55 -0
  154. gap/pkg/semigroups/gap/semigroups/grpperm.gd +12 -0
  155. gap/pkg/semigroups/gap/semigroups/grpperm.gi +177 -0
  156. gap/pkg/semigroups/gap/semigroups/semibipart.gd +28 -0
  157. gap/pkg/semigroups/gap/semigroups/semibipart.gi +570 -0
  158. gap/pkg/semigroups/gap/semigroups/semiboolmat.gd +20 -0
  159. gap/pkg/semigroups/gap/semigroups/semiboolmat.gi +104 -0
  160. gap/pkg/semigroups/gap/semigroups/semicons.gd +52 -0
  161. gap/pkg/semigroups/gap/semigroups/semicons.gi +1194 -0
  162. gap/pkg/semigroups/gap/semigroups/semidp.gd +13 -0
  163. gap/pkg/semigroups/gap/semigroups/semidp.gi +509 -0
  164. gap/pkg/semigroups/gap/semigroups/semieunit.gd +126 -0
  165. gap/pkg/semigroups/gap/semigroups/semieunit.gi +889 -0
  166. gap/pkg/semigroups/gap/semigroups/semiex.gd +104 -0
  167. gap/pkg/semigroups/gap/semigroups/semiex.gi +1590 -0
  168. gap/pkg/semigroups/gap/semigroups/semiffmat.gd +37 -0
  169. gap/pkg/semigroups/gap/semigroups/semiffmat.gi +565 -0
  170. gap/pkg/semigroups/gap/semigroups/semifp.gd +28 -0
  171. gap/pkg/semigroups/gap/semigroups/semifp.gi +1364 -0
  172. gap/pkg/semigroups/gap/semigroups/semigraph.gd +40 -0
  173. gap/pkg/semigroups/gap/semigroups/semigraph.gi +292 -0
  174. gap/pkg/semigroups/gap/semigroups/semigrp.gd +165 -0
  175. gap/pkg/semigroups/gap/semigroups/semigrp.gi +1225 -0
  176. gap/pkg/semigroups/gap/semigroups/semimaxplus.gd +72 -0
  177. gap/pkg/semigroups/gap/semigroups/semimaxplus.gi +710 -0
  178. gap/pkg/semigroups/gap/semigroups/semintmat.gd +13 -0
  179. gap/pkg/semigroups/gap/semigroups/semintmat.gi +74 -0
  180. gap/pkg/semigroups/gap/semigroups/semipbr.gd +19 -0
  181. gap/pkg/semigroups/gap/semigroups/semipbr.gi +139 -0
  182. gap/pkg/semigroups/gap/semigroups/semipperm.gd +27 -0
  183. gap/pkg/semigroups/gap/semigroups/semipperm.gi +711 -0
  184. gap/pkg/semigroups/gap/semigroups/semiquo.gd +14 -0
  185. gap/pkg/semigroups/gap/semigroups/semiquo.gi +97 -0
  186. gap/pkg/semigroups/gap/semigroups/semiringmat.gd +16 -0
  187. gap/pkg/semigroups/gap/semigroups/semiringmat.gi +21 -0
  188. gap/pkg/semigroups/gap/semigroups/semirms.gd +19 -0
  189. gap/pkg/semigroups/gap/semigroups/semirms.gi +977 -0
  190. gap/pkg/semigroups/gap/semigroups/semitrans.gd +49 -0
  191. gap/pkg/semigroups/gap/semigroups/semitrans.gi +909 -0
  192. gap/pkg/semigroups/gap/tools/display.gd +24 -0
  193. gap/pkg/semigroups/gap/tools/display.gi +749 -0
  194. gap/pkg/semigroups/gap/tools/io.gd +17 -0
  195. gap/pkg/semigroups/gap/tools/io.gi +543 -0
  196. gap/pkg/semigroups/gap/tools/iterators.gd +16 -0
  197. gap/pkg/semigroups/gap/tools/iterators.gi +253 -0
  198. gap/pkg/semigroups/gap/tools/utils.gd +19 -0
  199. gap/pkg/semigroups/gap/tools/utils.gi +756 -0
  200. gap/pkg/semigroups/gapbind14/.ccls +18 -0
  201. gap/pkg/semigroups/gapbind14/.clang-format +104 -0
  202. gap/pkg/semigroups/gapbind14/CPPLINT.cfg +5 -0
  203. gap/pkg/semigroups/gapbind14/LICENSE +674 -0
  204. gap/pkg/semigroups/gapbind14/README.md +76 -0
  205. gap/pkg/semigroups/gapbind14/demo/.gitignore +4 -0
  206. gap/pkg/semigroups/gapbind14/demo/LICENSE +293 -0
  207. gap/pkg/semigroups/gapbind14/demo/Makefile.gappkg +220 -0
  208. gap/pkg/semigroups/gapbind14/demo/Makefile.in +19 -0
  209. gap/pkg/semigroups/gapbind14/demo/PackageInfo.g +87 -0
  210. gap/pkg/semigroups/gapbind14/demo/README.md +17 -0
  211. gap/pkg/semigroups/gapbind14/demo/configure +34 -0
  212. gap/pkg/semigroups/gapbind14/demo/gap/gapbind_demo.gd +19 -0
  213. gap/pkg/semigroups/gapbind14/demo/gap/gapbind_demo.gi +10 -0
  214. gap/pkg/semigroups/gapbind14/demo/init.g +16 -0
  215. gap/pkg/semigroups/gapbind14/demo/makedoc.g +10 -0
  216. gap/pkg/semigroups/gapbind14/demo/read.g +6 -0
  217. gap/pkg/semigroups/gapbind14/demo/src/gapbind_demo.cc +142 -0
  218. gap/pkg/semigroups/gapbind14/demo/tst/testall.g +12 -0
  219. gap/pkg/semigroups/gapbind14/include/gapbind14/cpp_fn.hpp +223 -0
  220. gap/pkg/semigroups/gapbind14/include/gapbind14/gap_include.hpp +26 -0
  221. gap/pkg/semigroups/gapbind14/include/gapbind14/gapbind14.hpp +445 -0
  222. gap/pkg/semigroups/gapbind14/include/gapbind14/tame_free_fn.hpp +420 -0
  223. gap/pkg/semigroups/gapbind14/include/gapbind14/tame_mem_fn.hpp +556 -0
  224. gap/pkg/semigroups/gapbind14/include/gapbind14/to_cpp.hpp +162 -0
  225. gap/pkg/semigroups/gapbind14/include/gapbind14/to_gap.hpp +158 -0
  226. gap/pkg/semigroups/gapbind14/src/.clang-format +108 -0
  227. gap/pkg/semigroups/gapbind14/src/gapbind14.cpp +334 -0
  228. gap/pkg/semigroups/init.g +150 -0
  229. gap/pkg/semigroups/m4/ax_append_flag.m4 +50 -0
  230. gap/pkg/semigroups/m4/ax_check_compile_flag.m4 +53 -0
  231. gap/pkg/semigroups/m4/ax_check_hpcombi.m4 +121 -0
  232. gap/pkg/semigroups/m4/ax_check_libsemigroup.m4 +68 -0
  233. gap/pkg/semigroups/m4/ax_compare_version.m4 +177 -0
  234. gap/pkg/semigroups/m4/ax_cxx_compile_stdcxx.m4 +1009 -0
  235. gap/pkg/semigroups/m4/ax_cxx_compile_stdcxx_14.m4 +34 -0
  236. gap/pkg/semigroups/m4/ax_prefix_config_h.m4 +203 -0
  237. gap/pkg/semigroups/m4/ax_pthread.m4 +522 -0
  238. gap/pkg/semigroups/m4/find_gap.m4 +94 -0
  239. gap/pkg/semigroups/makedoc.g +153 -0
  240. gap/pkg/semigroups/prerequisites.sh +62 -0
  241. gap/pkg/semigroups/read.g +105 -0
  242. gap/pkg/semigroups/release.toml +6 -0
  243. gap/pkg/semigroups/tst/extreme/README +2 -0
  244. gap/pkg/semigroups/tst/extreme/attrinv.tst +703 -0
  245. gap/pkg/semigroups/tst/extreme/bipart.tst +2803 -0
  246. gap/pkg/semigroups/tst/extreme/closure.tst +652 -0
  247. gap/pkg/semigroups/tst/extreme/cong.tst +286 -0
  248. gap/pkg/semigroups/tst/extreme/conginv.tst +43 -0
  249. gap/pkg/semigroups/tst/extreme/examples.tst +2449 -0
  250. gap/pkg/semigroups/tst/extreme/freeband.tst +37 -0
  251. gap/pkg/semigroups/tst/extreme/greens-acting-regular.tst +27 -0
  252. gap/pkg/semigroups/tst/extreme/greens-acting.tst +1999 -0
  253. gap/pkg/semigroups/tst/extreme/ideals.tst +858 -0
  254. gap/pkg/semigroups/tst/extreme/inverse.tst +1025 -0
  255. gap/pkg/semigroups/tst/extreme/maximal.tst +856 -0
  256. gap/pkg/semigroups/tst/extreme/misc.tst +4236 -0
  257. gap/pkg/semigroups/tst/extreme/monoid_pkg.tst +1488 -0
  258. gap/pkg/semigroups/tst/extreme/properties.tst +914 -0
  259. gap/pkg/semigroups/tst/extreme/semibipart.tst +2837 -0
  260. gap/pkg/semigroups/tst/extreme/semieunit.tst +49 -0
  261. gap/pkg/semigroups/tst/extreme/semiffmat.tst +353 -0
  262. gap/pkg/semigroups/tst/extreme/semigroups.tst +245 -0
  263. gap/pkg/semigroups/tst/extreme/semiiter.tst +58 -0
  264. gap/pkg/semigroups/tst/extreme/semirms.tst +1091 -0
  265. gap/pkg/semigroups/tst/extreme/transform.tst +305 -0
  266. gap/pkg/semigroups/tst/extreme/translat.tst +44 -0
  267. gap/pkg/semigroups/tst/standard/README +2 -0
  268. gap/pkg/semigroups/tst/standard/attributes/acting.tst +388 -0
  269. gap/pkg/semigroups/tst/standard/attributes/attr.tst +2404 -0
  270. gap/pkg/semigroups/tst/standard/attributes/dual.tst +308 -0
  271. gap/pkg/semigroups/tst/standard/attributes/factor.tst +629 -0
  272. gap/pkg/semigroups/tst/standard/attributes/homomorph.tst +1134 -0
  273. gap/pkg/semigroups/tst/standard/attributes/inverse.tst +1521 -0
  274. gap/pkg/semigroups/tst/standard/attributes/isomorph.tst +435 -0
  275. gap/pkg/semigroups/tst/standard/attributes/isorms.tst +1147 -0
  276. gap/pkg/semigroups/tst/standard/attributes/maximal.tst +853 -0
  277. gap/pkg/semigroups/tst/standard/attributes/properties.tst +2028 -0
  278. gap/pkg/semigroups/tst/standard/attributes/semifp.tst +53 -0
  279. gap/pkg/semigroups/tst/standard/attributes/translat.tst +796 -0
  280. gap/pkg/semigroups/tst/standard/congruences/cong.tst +1044 -0
  281. gap/pkg/semigroups/tst/standard/congruences/conginv.tst +292 -0
  282. gap/pkg/semigroups/tst/standard/congruences/conglatt.tst +421 -0
  283. gap/pkg/semigroups/tst/standard/congruences/congpairs.tst +1011 -0
  284. gap/pkg/semigroups/tst/standard/congruences/congrees.tst +288 -0
  285. gap/pkg/semigroups/tst/standard/congruences/congrms.tst +701 -0
  286. gap/pkg/semigroups/tst/standard/congruences/congsemigraph.tst +422 -0
  287. gap/pkg/semigroups/tst/standard/congruences/congsimple.tst +311 -0
  288. gap/pkg/semigroups/tst/standard/congruences/conguniv.tst +259 -0
  289. gap/pkg/semigroups/tst/standard/congruences/congwordgraph.tst +330 -0
  290. gap/pkg/semigroups/tst/standard/elements/bipart.tst +783 -0
  291. gap/pkg/semigroups/tst/standard/elements/blocks.tst +166 -0
  292. gap/pkg/semigroups/tst/standard/elements/boolmat.tst +608 -0
  293. gap/pkg/semigroups/tst/standard/elements/elements.tst +117 -0
  294. gap/pkg/semigroups/tst/standard/elements/ffmat.tst +349 -0
  295. gap/pkg/semigroups/tst/standard/elements/maxplusmat.tst +613 -0
  296. gap/pkg/semigroups/tst/standard/elements/pbr.tst +506 -0
  297. gap/pkg/semigroups/tst/standard/elements/pperm.tst +32 -0
  298. gap/pkg/semigroups/tst/standard/elements/semiringmat.tst +601 -0
  299. gap/pkg/semigroups/tst/standard/elements/trans.tst +58 -0
  300. gap/pkg/semigroups/tst/standard/fp/freeband.tst +311 -0
  301. gap/pkg/semigroups/tst/standard/fp/freeinverse.tst +147 -0
  302. gap/pkg/semigroups/tst/standard/fp/tietze.tst +780 -0
  303. gap/pkg/semigroups/tst/standard/fp/word.tst +106 -0
  304. gap/pkg/semigroups/tst/standard/greens/acting-inverse.tst +545 -0
  305. gap/pkg/semigroups/tst/standard/greens/acting-regular.tst +396 -0
  306. gap/pkg/semigroups/tst/standard/greens/acting.tst +2033 -0
  307. gap/pkg/semigroups/tst/standard/greens/froidure-pin.tst +1831 -0
  308. gap/pkg/semigroups/tst/standard/greens/generic.tst +1436 -0
  309. gap/pkg/semigroups/tst/standard/ideals/acting.tst +279 -0
  310. gap/pkg/semigroups/tst/standard/ideals/froidure-pin.tst +178 -0
  311. gap/pkg/semigroups/tst/standard/ideals/ideals.tst +380 -0
  312. gap/pkg/semigroups/tst/standard/libsemigroups/cong.tst +310 -0
  313. gap/pkg/semigroups/tst/standard/libsemigroups/froidure-pin.tst +778 -0
  314. gap/pkg/semigroups/tst/standard/libsemigroups/sims1.tst +379 -0
  315. gap/pkg/semigroups/tst/standard/main/acting.tst +411 -0
  316. gap/pkg/semigroups/tst/standard/main/froidure-pin.tst +392 -0
  317. gap/pkg/semigroups/tst/standard/main/semiact.tst +203 -0
  318. gap/pkg/semigroups/tst/standard/main/setup.tst +1144 -0
  319. gap/pkg/semigroups/tst/standard/obsolete.tst +19 -0
  320. gap/pkg/semigroups/tst/standard/options.tst +54 -0
  321. gap/pkg/semigroups/tst/standard/semigroups/grpperm.tst +581 -0
  322. gap/pkg/semigroups/tst/standard/semigroups/semibipart.tst +2635 -0
  323. gap/pkg/semigroups/tst/standard/semigroups/semiboolmat.tst +1871 -0
  324. gap/pkg/semigroups/tst/standard/semigroups/semicons.tst +1173 -0
  325. gap/pkg/semigroups/tst/standard/semigroups/semidp.tst +739 -0
  326. gap/pkg/semigroups/tst/standard/semigroups/semieunit.tst +339 -0
  327. gap/pkg/semigroups/tst/standard/semigroups/semiex.tst +2055 -0
  328. gap/pkg/semigroups/tst/standard/semigroups/semiffmat.tst +746 -0
  329. gap/pkg/semigroups/tst/standard/semigroups/semifp.tst +2702 -0
  330. gap/pkg/semigroups/tst/standard/semigroups/semigraph.tst +133 -0
  331. gap/pkg/semigroups/tst/standard/semigroups/semigrp.tst +1112 -0
  332. gap/pkg/semigroups/tst/standard/semigroups/semimaxplus.tst +654 -0
  333. gap/pkg/semigroups/tst/standard/semigroups/semipbr.tst +2142 -0
  334. gap/pkg/semigroups/tst/standard/semigroups/semipperm.tst +2169 -0
  335. gap/pkg/semigroups/tst/standard/semigroups/semiquo.tst +278 -0
  336. gap/pkg/semigroups/tst/standard/semigroups/semirms.tst +3010 -0
  337. gap/pkg/semigroups/tst/standard/semigroups/semitrans.tst +2758 -0
  338. gap/pkg/semigroups/tst/standard/tools/display.tst +1040 -0
  339. gap/pkg/semigroups/tst/standard/tools/io.tst +363 -0
  340. gap/pkg/semigroups/tst/testinstall.tst +1815 -0
  341. gap/pkg/semigroups/tst/teststandard.g +22 -0
  342. gap/pkg/semigroups/tst/workspaces/load-workspace.tst +142 -0
  343. gap/pkg/semigroups/tst/workspaces/load.g +11 -0
  344. gap/pkg/semigroups/tst/workspaces/save-workspace.tst +166 -0
  345. gap/pkg/semigroups/tst/workspaces/save.g +14 -0
  346. passagemath_gap_pkg_semigroups-10.6.29.dist-info/METADATA +93 -0
  347. passagemath_gap_pkg_semigroups-10.6.29.dist-info/METADATA.bak +94 -0
  348. passagemath_gap_pkg_semigroups-10.6.29.dist-info/RECORD +354 -0
  349. passagemath_gap_pkg_semigroups-10.6.29.dist-info/WHEEL +6 -0
  350. passagemath_gap_pkg_semigroups-10.6.29.dist-info/top_level.txt +1 -0
  351. passagemath_gap_pkg_semigroups.dylibs/libsemigroups.2.dylib +0 -0
  352. sage/all__sagemath_gap_pkg_semigroups.py +1 -0
  353. sage/libs/all__sagemath_gap_pkg_semigroups.py +1 -0
  354. sage/libs/gap_pkg_semigroups.abi3.so +0 -0
@@ -0,0 +1,1040 @@
1
+ ############################################################################
2
+ ##
3
+ #W standard/tools/display.tst
4
+ #Y Copyright (C) 2016-2022 James D. Mitchell
5
+ ##
6
+ ## Licensing information can be found in the README file of this package.
7
+ ##
8
+ #############################################################################
9
+ ##
10
+
11
+ ## We don't use local variables in this test file because it doesn't play nice
12
+ ## with something in this test file.
13
+
14
+ #
15
+ gap> START_TEST("Semigroups package: standard/tools/display.tst");
16
+ gap> LoadPackage("semigroups", false);;
17
+
18
+ #
19
+ gap> SEMIGROUPS.StartTest();;
20
+
21
+ # Test TikzString for a pbr
22
+ gap> TikzString(PBR([[-2, 2], [1, 2], [-1, 2]], [[-3], [1, 2], [- 3]]));
23
+ "%latex\n\\documentclass{minimal}\n\\usepackage{tikz}\n\\usetikzlibrary{arrows\
24
+ }\n\\usetikzlibrary{arrows.meta}\n\\newcommand{\\arc}{\\draw[semithick, -{>[wi\
25
+ dth = 1.5mm, length = 2.5mm]}]}\n\n\\begin{document}\n\\begin{tikzpicture}[\n \
26
+ vertex/.style={circle, draw, fill=black, inner sep =0.04cm},\n ghost/.style=\
27
+ {circle, draw = none, inner sep = 0.14cm},\n botloop/.style={min distance = 8\
28
+ mm, out = -70, in = -110},\n toploop/.style={min distance = 8mm, out = 70, in\
29
+ = 110}]\n\n % vertices and labels\n \\foreach \\i in {1,...,3} {\n \\nod\
30
+ e [vertex] at (\\i/1.5, 3) {};\n \\node [ghost] (\\i) at (\\i/1.5, 3) {};\n\
31
+ }\n\n \\foreach \\i in {1,...,3} {\n \\node [vertex] at (\\i/1.5, 0) {};\
32
+ \n \\node [ghost] (-\\i) at (\\i/1.5, 0) {};\n }\n\n % arcs from vertex 1\
33
+ \n \\arc (1) to (-2);\n \\arc (1) .. controls (1.0666666666666667, 2.3333333\
34
+ 333333335) and (0.93333333333333324, 2.3333333333333335) .. (2);\n\n % arcs f\
35
+ rom vertex -1\n \\arc (-1) .. controls (1.4666666666666668, 1.083333333333333\
36
+ 5) and (1.2, 1.0833333333333335) .. (-3);\n\n % arcs from vertex 2\n \\arc (\
37
+ 2) .. controls (0.93333333333333324, 2.3333333333333335) and (1.06666666666666\
38
+ 67, 2.3333333333333335) .. (1);\n \\arc (2) edge [toploop] (2);\n\n % arcs f\
39
+ rom vertex -2\n \\arc (-2) to (1);\n \\arc (-2) to (2);\n\n % arcs from ver\
40
+ tex 3\n \\arc (3) to (-1);\n \\arc (3) .. controls (1.6000000000000001, 2.33\
41
+ 33333333333335) and (1.7333333333333334, 2.3333333333333335) .. (2);\n\n % ar\
42
+ cs from vertex -3\n \\arc (-3) edge [botloop] (-3);\n\n\\end{tikzpicture}\n\\\
43
+ end{document}"
44
+ gap> TikzString(PBR([[-2, 2], [1, 2], [-1, 2]], [[-3], [1, 2], [- 3]]),
45
+ > rec(labels := true));
46
+ "%latex\n\\documentclass{minimal}\n\\usepackage{tikz}\n\\usetikzlibrary{arrows\
47
+ }\n\\usetikzlibrary{arrows.meta}\n\\newcommand{\\arc}{\\draw[semithick, -{>[wi\
48
+ dth = 1.5mm, length = 2.5mm]}]}\n\n\\begin{document}\n\\begin{tikzpicture}[\n \
49
+ vertex/.style={circle, draw, fill=black, inner sep =0.04cm},\n ghost/.style=\
50
+ {circle, draw = none, inner sep = 0.14cm},\n botloop/.style={min distance = 8\
51
+ mm, out = -70, in = -110},\n toploop/.style={min distance = 8mm, out = 70, in\
52
+ = 110}]\n\n % vertices and labels\n \\foreach \\i in {1,...,3} {\n \\nod\
53
+ e [vertex, label={[yshift=9mm]\\i}] at (\\i/1.5, 3) {};\n \\node [ghost] (\
54
+ \\i) at (\\i/1.5, 3) {};\n }\n\n \\foreach \\i in {1,...,3} {\n \\node [v\
55
+ ertex, label={[yshift=-15mm,xshift=-0.5mm]-\\i}] at (\\i/1.5, 0) {};\n \\no\
56
+ de [ghost] (-\\i) at (\\i/1.5, 0) {};\n }\n\n % arcs from vertex 1\n \\arc \
57
+ (1) to (-2);\n \\arc (1) .. controls (1.0666666666666667, 2.3333333333333335)\
58
+ and (0.93333333333333324, 2.3333333333333335) .. (2);\n\n % arcs from vertex\
59
+ -1\n \\arc (-1) .. controls (1.4666666666666668, 1.0833333333333335) and (1.\
60
+ 2, 1.0833333333333335) .. (-3);\n\n % arcs from vertex 2\n \\arc (2) .. cont\
61
+ rols (0.93333333333333324, 2.3333333333333335) and (1.0666666666666667, 2.3333\
62
+ 333333333335) .. (1);\n \\arc (2) edge [toploop] (2);\n\n % arcs from vertex\
63
+ -2\n \\arc (-2) to (1);\n \\arc (-2) to (2);\n\n % arcs from vertex 3\n \
64
+ \\arc (3) to (-1);\n \\arc (3) .. controls (1.6000000000000001, 2.33333333333\
65
+ 33335) and (1.7333333333333334, 2.3333333333333335) .. (2);\n\n % arcs from v\
66
+ ertex -3\n \\arc (-3) edge [botloop] (-3);\n\n\\end{tikzpicture}\n\\end{docum\
67
+ ent}"
68
+
69
+ # TikzString for a pbr collection
70
+ gap> x := PBR([[1], [], []], [[2], [-2, 1, 2], [1, 2, 3]]);;
71
+ gap> y := PBR([[-3, -2, -1, 2], [-3, -2, -1, 1, 2, 3], [-3, -2, -1, 1, 2, 3]],
72
+ > [[-3, -2, -1, 2], [-3, -2, -1, 1, 3], [-3, -2, -1, 1, 2, 3]]);;
73
+ gap> TikzString(Semigroup(x, y));
74
+ "%latex\n\\documentclass{minimal}\n\\usepackage{tikz}\n\\usetikzlibrary{arrows\
75
+ }\n\\usetikzlibrary{arrows.meta}\n\\newcommand{\\arc}{\\draw[semithick, -{>[wi\
76
+ dth = 1.5mm, length = 2.5mm]}]}\n\n\\begin{document}\n\\begin{center}\n\\begin\
77
+ {tikzpicture}[\n vertex/.style={circle, draw, fill=black, inner sep =0.04cm},\
78
+ \n ghost/.style={circle, draw = none, inner sep = 0.14cm},\n botloop/.style=\
79
+ {min distance = 8mm, out = -70, in = -110},\n toploop/.style={min distance = \
80
+ 8mm, out = 70, in = 110}]\n\n % vertices and labels\n \\foreach \\i in {1,..\
81
+ .,3} {\n \\node [vertex] at (\\i/1.5, 3) {};\n \\node [ghost] (\\i) at (\
82
+ \\i/1.5, 3) {};\n }\n\n \\foreach \\i in {1,...,3} {\n \\node [vertex] at\
83
+ (\\i/1.5, 0) {};\n \\node [ghost] (-\\i) at (\\i/1.5, 0) {};\n }\n\n % a\
84
+ rcs from vertex 1\n \\arc (1) edge [toploop] (1);\n\n % arcs from vertex -1\
85
+ \n \\arc (-1) to (2);\n\n % arcs from vertex 2\n\n % arcs from vertex -2\n \
86
+ \\arc (-2) edge [botloop] (-2);\n \\arc (-2) to (1);\n \\arc (-2) to (2);\n\
87
+ \n % arcs from vertex 3\n\n % arcs from vertex -3\n \\arc (-3) to (1);\n \
88
+ \\arc (-3) to (2);\n \\arc (-3) to (3);\n\n\\end{tikzpicture}\n\n\\bigskip\\b\
89
+ igskip\n\n\\begin{tikzpicture}[\n vertex/.style={circle, draw, fill=black, in\
90
+ ner sep =0.04cm},\n ghost/.style={circle, draw = none, inner sep = 0.14cm},\n\
91
+ botloop/.style={min distance = 8mm, out = -70, in = -110},\n toploop/.style\
92
+ ={min distance = 8mm, out = 70, in = 110}]\n\n % vertices and labels\n \\for\
93
+ each \\i in {1,...,3} {\n \\node [vertex] at (\\i/1.5, 3) {};\n \\node [\
94
+ ghost] (\\i) at (\\i/1.5, 3) {};\n }\n\n \\foreach \\i in {1,...,3} {\n \
95
+ \\node [vertex] at (\\i/1.5, 0) {};\n \\node [ghost] (-\\i) at (\\i/1.5, 0)\
96
+ {};\n }\n\n % arcs from vertex 1\n \\arc (1) to (-3);\n \\arc (1) to (-2)\
97
+ ;\n \\arc (1) to (-1);\n \\arc (1) .. controls (1.0666666666666667, 2.333333\
98
+ 3333333335) and (0.93333333333333324, 2.3333333333333335) .. (2);\n\n % arcs \
99
+ from vertex -1\n \\arc (-1) .. controls (1.4666666666666668, 1.08333333333333\
100
+ 35) and (1.2, 1.0833333333333335) .. (-3);\n \\arc (-1) .. controls (1.066666\
101
+ 6666666667, 0.66666666666666674) and (0.93333333333333324, 0.66666666666666674\
102
+ ) .. (-2);\n \\arc (-1) edge [botloop] (-1);\n \\arc (-1) to (2);\n\n % arc\
103
+ s from vertex 2\n \\arc (2) to (-3);\n \\arc (2) to (-2);\n \\arc (2) to (-\
104
+ 1);\n \\arc (2) .. controls (0.93333333333333324, 2.3333333333333335) and (1.\
105
+ 0666666666666667, 2.3333333333333335) .. (1);\n \\arc (2) edge [toploop] (2);\
106
+ \n \\arc (2) .. controls (1.7333333333333334, 2.3333333333333335) and (1.6000\
107
+ 000000000001, 2.3333333333333335) .. (3);\n\n % arcs from vertex -2\n \\arc \
108
+ (-2) .. controls (1.7333333333333334, 0.66666666666666674) and (1.600000000000\
109
+ 0001, 0.66666666666666674) .. (-3);\n \\arc (-2) edge [botloop] (-2);\n \\ar\
110
+ c (-2) .. controls (0.93333333333333324, 0.66666666666666674) and (1.066666666\
111
+ 6666667, 0.66666666666666674) .. (-1);\n \\arc (-2) to (1);\n \\arc (-2) to \
112
+ (3);\n\n % arcs from vertex 3\n \\arc (3) to (-3);\n \\arc (3) to (-2);\n \
113
+ \\arc (3) to (-1);\n \\arc (3) .. controls (1.2, 1.9166666666666665) and (1.4\
114
+ 666666666666668, 1.9166666666666665) .. (1);\n \\arc (3) .. controls (1.60000\
115
+ 00000000001, 2.3333333333333335) and (1.7333333333333334, 2.3333333333333335) \
116
+ .. (2);\n \\arc (3) edge [toploop] (3);\n\n % arcs from vertex -3\n \\arc (\
117
+ -3) edge [botloop] (-3);\n \\arc (-3) .. controls (1.6000000000000001, 0.6666\
118
+ 6666666666674) and (1.7333333333333334, 0.66666666666666674) .. (-2);\n \\arc\
119
+ (-3) .. controls (1.2, 1.0833333333333335) and (1.4666666666666668, 1.0833333\
120
+ 333333335) .. (-1);\n \\arc (-3) to (1);\n \\arc (-3) to (2);\n \\arc (-3) \
121
+ to (3);\n\n\\end{tikzpicture}\n\n\\bigskip\\bigskip\n\n\\begin{tikzpicture}[\n\
122
+ vertex/.style={circle, draw, fill=black, inner sep =0.04cm},\n ghost/.style\
123
+ ={circle, draw = none, inner sep = 0.14cm},\n botloop/.style={min distance = \
124
+ 8mm, out = -70, in = -110},\n toploop/.style={min distance = 8mm, out = 70, i\
125
+ n = 110}]\n\n % vertices and labels\n \\foreach \\i in {1,...,3} {\n \\no\
126
+ de [vertex] at (\\i/1.5, 3) {};\n \\node [ghost] (\\i) at (\\i/1.5, 3) {};\
127
+ \n }\n\n \\foreach \\i in {1,...,3} {\n \\node [vertex] at (\\i/1.5, 0) {\
128
+ };\n \\node [ghost] (-\\i) at (\\i/1.5, 0) {};\n }\n\n % arcs from vertex\
129
+ 1\n \\arc (1) edge [toploop] (1);\n\n % arcs from vertex -1\n \\arc (-1) t\
130
+ o (1);\n \\arc (-1) to (2);\n\n % arcs from vertex 2\n\n % arcs from vertex\
131
+ -2\n \\arc (-2) edge [botloop] (-2);\n \\arc (-2) to (1);\n \\arc (-2) to \
132
+ (2);\n\n % arcs from vertex 3\n\n % arcs from vertex -3\n \\arc (-3) to (1)\
133
+ ;\n \\arc (-3) to (2);\n \\arc (-3) to (3);\n\n\\end{tikzpicture}\n\n\\bigsk\
134
+ ip\\bigskip\n\n\\begin{tikzpicture}[\n vertex/.style={circle, draw, fill=blac\
135
+ k, inner sep =0.04cm},\n ghost/.style={circle, draw = none, inner sep = 0.14c\
136
+ m},\n botloop/.style={min distance = 8mm, out = -70, in = -110},\n toploop/.\
137
+ style={min distance = 8mm, out = 70, in = 110}]\n\n % vertices and labels\n \
138
+ \\foreach \\i in {1,...,3} {\n \\node [vertex] at (\\i/1.5, 3) {};\n \\n\
139
+ ode [ghost] (\\i) at (\\i/1.5, 3) {};\n }\n\n \\foreach \\i in {1,...,3} {\n\
140
+ \\node [vertex] at (\\i/1.5, 0) {};\n \\node [ghost] (-\\i) at (\\i/1.5\
141
+ , 0) {};\n }\n\n % arcs from vertex 1\n \\arc (1) edge [toploop] (1);\n\n \
142
+ % arcs from vertex -1\n \\arc (-1) .. controls (1.4666666666666668, 1.0833333\
143
+ 333333335) and (1.2, 1.0833333333333335) .. (-3);\n \\arc (-1) .. controls (1\
144
+ .0666666666666667, 0.66666666666666674) and (0.93333333333333324, 0.6666666666\
145
+ 6666674) .. (-2);\n \\arc (-1) edge [botloop] (-1);\n \\arc (-1) to (1);\n \
146
+ \\arc (-1) to (2);\n \\arc (-1) to (3);\n\n % arcs from vertex 2\n\n % arcs\
147
+ from vertex -2\n \\arc (-2) .. controls (1.7333333333333334, 0.6666666666666\
148
+ 6674) and (1.6000000000000001, 0.66666666666666674) .. (-3);\n \\arc (-2) edg\
149
+ e [botloop] (-2);\n \\arc (-2) .. controls (0.93333333333333324, 0.6666666666\
150
+ 6666674) and (1.0666666666666667, 0.66666666666666674) .. (-1);\n \\arc (-2) \
151
+ to (1);\n \\arc (-2) to (2);\n \\arc (-2) to (3);\n\n % arcs from vertex 3\
152
+ \n\n % arcs from vertex -3\n \\arc (-3) edge [botloop] (-3);\n \\arc (-3) .\
153
+ . controls (1.6000000000000001, 0.66666666666666674) and (1.7333333333333334, \
154
+ 0.66666666666666674) .. (-2);\n \\arc (-3) .. controls (1.2, 1.08333333333333\
155
+ 35) and (1.4666666666666668, 1.0833333333333335) .. (-1);\n \\arc (-3) to (1)\
156
+ ;\n \\arc (-3) to (2);\n \\arc (-3) to (3);\n\n\\end{tikzpicture}\n\n\\bigsk\
157
+ ip\\bigskip\n\n\\begin{tikzpicture}[\n vertex/.style={circle, draw, fill=blac\
158
+ k, inner sep =0.04cm},\n ghost/.style={circle, draw = none, inner sep = 0.14c\
159
+ m},\n botloop/.style={min distance = 8mm, out = -70, in = -110},\n toploop/.\
160
+ style={min distance = 8mm, out = 70, in = 110}]\n\n % vertices and labels\n \
161
+ \\foreach \\i in {1,...,3} {\n \\node [vertex] at (\\i/1.5, 3) {};\n \\n\
162
+ ode [ghost] (\\i) at (\\i/1.5, 3) {};\n }\n\n \\foreach \\i in {1,...,3} {\n\
163
+ \\node [vertex] at (\\i/1.5, 0) {};\n \\node [ghost] (-\\i) at (\\i/1.5\
164
+ , 0) {};\n }\n\n % arcs from vertex 1\n \\arc (1) .. controls (1.0666666666\
165
+ 666667, 2.3333333333333335) and (0.93333333333333324, 2.3333333333333335) .. (\
166
+ 2);\n\n % arcs from vertex -1\n \\arc (-1) to (1);\n \\arc (-1) to (2);\n \
167
+ \\arc (-1) to (3);\n\n % arcs from vertex 2\n \\arc (2) .. controls (0.93333\
168
+ 333333333324, 2.3333333333333335) and (1.0666666666666667, 2.3333333333333335)\
169
+ .. (1);\n \\arc (2) edge [toploop] (2);\n \\arc (2) .. controls (1.73333333\
170
+ 33333334, 2.3333333333333335) and (1.6000000000000001, 2.3333333333333335) .. \
171
+ (3);\n\n % arcs from vertex -2\n \\arc (-2) edge [botloop] (-2);\n \\arc (-\
172
+ 2) to (1);\n \\arc (-2) to (2);\n \\arc (-2) to (3);\n\n % arcs from vertex\
173
+ 3\n \\arc (3) .. controls (1.2, 1.9166666666666665) and (1.4666666666666668,\
174
+ 1.9166666666666665) .. (1);\n \\arc (3) .. controls (1.6000000000000001, 2.3\
175
+ 333333333333335) and (1.7333333333333334, 2.3333333333333335) .. (2);\n \\arc\
176
+ (3) edge [toploop] (3);\n\n % arcs from vertex -3\n \\arc (-3) to (1);\n \
177
+ \\arc (-3) to (2);\n \\arc (-3) to (3);\n\n\\end{tikzpicture}\n\n\\bigskip\\b\
178
+ igskip\n\n\\begin{tikzpicture}[\n vertex/.style={circle, draw, fill=black, in\
179
+ ner sep =0.04cm},\n ghost/.style={circle, draw = none, inner sep = 0.14cm},\n\
180
+ botloop/.style={min distance = 8mm, out = -70, in = -110},\n toploop/.style\
181
+ ={min distance = 8mm, out = 70, in = 110}]\n\n % vertices and labels\n \\for\
182
+ each \\i in {1,...,3} {\n \\node [vertex] at (\\i/1.5, 3) {};\n \\node [\
183
+ ghost] (\\i) at (\\i/1.5, 3) {};\n }\n\n \\foreach \\i in {1,...,3} {\n \
184
+ \\node [vertex] at (\\i/1.5, 0) {};\n \\node [ghost] (-\\i) at (\\i/1.5, 0)\
185
+ {};\n }\n\n % arcs from vertex 1\n \\arc (1) to (-3);\n \\arc (1) to (-2)\
186
+ ;\n \\arc (1) to (-1);\n \\arc (1) edge [toploop] (1);\n \\arc (1) .. contr\
187
+ ols (1.0666666666666667, 2.3333333333333335) and (0.93333333333333324, 2.33333\
188
+ 33333333335) .. (2);\n \\arc (1) .. controls (1.4666666666666668, 1.916666666\
189
+ 6666665) and (1.2, 1.9166666666666665) .. (3);\n\n % arcs from vertex -1\n \
190
+ \\arc (-1) .. controls (1.4666666666666668, 1.0833333333333335) and (1.2, 1.08\
191
+ 33333333333335) .. (-3);\n \\arc (-1) .. controls (1.0666666666666667, 0.6666\
192
+ 6666666666674) and (0.93333333333333324, 0.66666666666666674) .. (-2);\n \\ar\
193
+ c (-1) edge [botloop] (-1);\n \\arc (-1) to (1);\n \\arc (-1) to (2);\n \\a\
194
+ rc (-1) to (3);\n\n % arcs from vertex 2\n \\arc (2) to (-3);\n \\arc (2) t\
195
+ o (-2);\n \\arc (2) to (-1);\n \\arc (2) .. controls (0.93333333333333324, 2\
196
+ .3333333333333335) and (1.0666666666666667, 2.3333333333333335) .. (1);\n \\a\
197
+ rc (2) edge [toploop] (2);\n \\arc (2) .. controls (1.7333333333333334, 2.333\
198
+ 3333333333335) and (1.6000000000000001, 2.3333333333333335) .. (3);\n\n % arc\
199
+ s from vertex -2\n \\arc (-2) .. controls (1.7333333333333334, 0.666666666666\
200
+ 66674) and (1.6000000000000001, 0.66666666666666674) .. (-3);\n \\arc (-2) ed\
201
+ ge [botloop] (-2);\n \\arc (-2) .. controls (0.93333333333333324, 0.666666666\
202
+ 66666674) and (1.0666666666666667, 0.66666666666666674) .. (-1);\n \\arc (-2)\
203
+ to (1);\n \\arc (-2) to (2);\n \\arc (-2) to (3);\n\n % arcs from vertex 3\
204
+ \n \\arc (3) to (-3);\n \\arc (3) to (-2);\n \\arc (3) to (-1);\n \\arc (3\
205
+ ) .. controls (1.2, 1.9166666666666665) and (1.4666666666666668, 1.91666666666\
206
+ 66665) .. (1);\n \\arc (3) .. controls (1.6000000000000001, 2.333333333333333\
207
+ 5) and (1.7333333333333334, 2.3333333333333335) .. (2);\n \\arc (3) edge [top\
208
+ loop] (3);\n\n % arcs from vertex -3\n \\arc (-3) edge [botloop] (-3);\n \\\
209
+ arc (-3) .. controls (1.6000000000000001, 0.66666666666666674) and (1.73333333\
210
+ 33333334, 0.66666666666666674) .. (-2);\n \\arc (-3) .. controls (1.2, 1.0833\
211
+ 333333333335) and (1.4666666666666668, 1.0833333333333335) .. (-1);\n \\arc (\
212
+ -3) to (1);\n \\arc (-3) to (2);\n \\arc (-3) to (3);\n\n\\end{tikzpicture}\
213
+ \n\n\\bigskip\\bigskip\n\n\\begin{tikzpicture}[\n vertex/.style={circle, draw\
214
+ , fill=black, inner sep =0.04cm},\n ghost/.style={circle, draw = none, inner \
215
+ sep = 0.14cm},\n botloop/.style={min distance = 8mm, out = -70, in = -110},\n\
216
+ toploop/.style={min distance = 8mm, out = 70, in = 110}]\n\n % vertices and\
217
+ labels\n \\foreach \\i in {1,...,3} {\n \\node [vertex] at (\\i/1.5, 3) {\
218
+ };\n \\node [ghost] (\\i) at (\\i/1.5, 3) {};\n }\n\n \\foreach \\i in {1\
219
+ ,...,3} {\n \\node [vertex] at (\\i/1.5, 0) {};\n \\node [ghost] (-\\i) \
220
+ at (\\i/1.5, 0) {};\n }\n\n % arcs from vertex 1\n \\arc (1) edge [toploop]\
221
+ (1);\n\n % arcs from vertex -1\n \\arc (-1) to (1);\n \\arc (-1) to (2);\n\
222
+ \\arc (-1) to (3);\n\n % arcs from vertex 2\n\n % arcs from vertex -2\n \
223
+ \\arc (-2) edge [botloop] (-2);\n \\arc (-2) to (1);\n \\arc (-2) to (2);\n \
224
+ \\arc (-2) to (3);\n\n % arcs from vertex 3\n\n % arcs from vertex -3\n \\\
225
+ arc (-3) to (1);\n \\arc (-3) to (2);\n \\arc (-3) to (3);\n\n\\end{tikzpict\
226
+ ure}\n\n\\bigskip\\bigskip\n\n\\begin{tikzpicture}[\n vertex/.style={circle, \
227
+ draw, fill=black, inner sep =0.04cm},\n ghost/.style={circle, draw = none, in\
228
+ ner sep = 0.14cm},\n botloop/.style={min distance = 8mm, out = -70, in = -110\
229
+ },\n toploop/.style={min distance = 8mm, out = 70, in = 110}]\n\n % vertices\
230
+ and labels\n \\foreach \\i in {1,...,3} {\n \\node [vertex] at (\\i/1.5, \
231
+ 3) {};\n \\node [ghost] (\\i) at (\\i/1.5, 3) {};\n }\n\n \\foreach \\i i\
232
+ n {1,...,3} {\n \\node [vertex] at (\\i/1.5, 0) {};\n \\node [ghost] (-\
233
+ \\i) at (\\i/1.5, 0) {};\n }\n\n % arcs from vertex 1\n \\arc (1) .. contro\
234
+ ls (1.0666666666666667, 2.3333333333333335) and (0.93333333333333324, 2.333333\
235
+ 3333333335) .. (2);\n\n % arcs from vertex -1\n \\arc (-1) .. controls (1.46\
236
+ 66666666666668, 1.0833333333333335) and (1.2, 1.0833333333333335) .. (-3);\n \
237
+ \\arc (-1) .. controls (1.0666666666666667, 0.66666666666666674) and (0.933333\
238
+ 33333333324, 0.66666666666666674) .. (-2);\n \\arc (-1) edge [botloop] (-1);\
239
+ \n \\arc (-1) to (1);\n \\arc (-1) to (2);\n \\arc (-1) to (3);\n\n % arcs\
240
+ from vertex 2\n \\arc (2) .. controls (0.93333333333333324, 2.33333333333333\
241
+ 35) and (1.0666666666666667, 2.3333333333333335) .. (1);\n \\arc (2) edge [to\
242
+ ploop] (2);\n \\arc (2) .. controls (1.7333333333333334, 2.3333333333333335) \
243
+ and (1.6000000000000001, 2.3333333333333335) .. (3);\n\n % arcs from vertex -\
244
+ 2\n \\arc (-2) .. controls (1.7333333333333334, 0.66666666666666674) and (1.6\
245
+ 000000000000001, 0.66666666666666674) .. (-3);\n \\arc (-2) edge [botloop] (-\
246
+ 2);\n \\arc (-2) .. controls (0.93333333333333324, 0.66666666666666674) and (\
247
+ 1.0666666666666667, 0.66666666666666674) .. (-1);\n \\arc (-2) to (1);\n \\a\
248
+ rc (-2) to (2);\n \\arc (-2) to (3);\n\n % arcs from vertex 3\n \\arc (3) .\
249
+ . controls (1.2, 1.9166666666666665) and (1.4666666666666668, 1.91666666666666\
250
+ 65) .. (1);\n \\arc (3) .. controls (1.6000000000000001, 2.3333333333333335) \
251
+ and (1.7333333333333334, 2.3333333333333335) .. (2);\n \\arc (3) edge [toploo\
252
+ p] (3);\n\n % arcs from vertex -3\n \\arc (-3) edge [botloop] (-3);\n \\arc\
253
+ (-3) .. controls (1.6000000000000001, 0.66666666666666674) and (1.73333333333\
254
+ 33334, 0.66666666666666674) .. (-2);\n \\arc (-3) .. controls (1.2, 1.0833333\
255
+ 333333335) and (1.4666666666666668, 1.0833333333333335) .. (-1);\n \\arc (-3)\
256
+ to (1);\n \\arc (-3) to (2);\n \\arc (-3) to (3);\n\n\\end{tikzpicture}\n\n\
257
+ \\bigskip\\bigskip\n\n\\begin{tikzpicture}[\n vertex/.style={circle, draw, fi\
258
+ ll=black, inner sep =0.04cm},\n ghost/.style={circle, draw = none, inner sep \
259
+ = 0.14cm},\n botloop/.style={min distance = 8mm, out = -70, in = -110},\n to\
260
+ ploop/.style={min distance = 8mm, out = 70, in = 110}]\n\n % vertices and lab\
261
+ els\n \\foreach \\i in {1,...,3} {\n \\node [vertex] at (\\i/1.5, 3) {};\n\
262
+ \\node [ghost] (\\i) at (\\i/1.5, 3) {};\n }\n\n \\foreach \\i in {1,...\
263
+ ,3} {\n \\node [vertex] at (\\i/1.5, 0) {};\n \\node [ghost] (-\\i) at (\
264
+ \\i/1.5, 0) {};\n }\n\n % arcs from vertex 1\n \\arc (1) edge [toploop] (1)\
265
+ ;\n \\arc (1) .. controls (1.0666666666666667, 2.3333333333333335) and (0.933\
266
+ 33333333333324, 2.3333333333333335) .. (2);\n \\arc (1) .. controls (1.466666\
267
+ 6666666668, 1.9166666666666665) and (1.2, 1.9166666666666665) .. (3);\n\n % a\
268
+ rcs from vertex -1\n \\arc (-1) to (1);\n \\arc (-1) to (2);\n \\arc (-1) t\
269
+ o (3);\n\n % arcs from vertex 2\n \\arc (2) .. controls (0.93333333333333324\
270
+ , 2.3333333333333335) and (1.0666666666666667, 2.3333333333333335) .. (1);\n \
271
+ \\arc (2) edge [toploop] (2);\n \\arc (2) .. controls (1.7333333333333334, 2.\
272
+ 3333333333333335) and (1.6000000000000001, 2.3333333333333335) .. (3);\n\n % \
273
+ arcs from vertex -2\n \\arc (-2) edge [botloop] (-2);\n \\arc (-2) to (1);\n\
274
+ \\arc (-2) to (2);\n \\arc (-2) to (3);\n\n % arcs from vertex 3\n \\arc \
275
+ (3) .. controls (1.2, 1.9166666666666665) and (1.4666666666666668, 1.916666666\
276
+ 6666665) .. (1);\n \\arc (3) .. controls (1.6000000000000001, 2.3333333333333\
277
+ 335) and (1.7333333333333334, 2.3333333333333335) .. (2);\n \\arc (3) edge [t\
278
+ oploop] (3);\n\n % arcs from vertex -3\n \\arc (-3) to (1);\n \\arc (-3) to\
279
+ (2);\n \\arc (-3) to (3);\n\n\\end{tikzpicture}\n\n\\bigskip\\bigskip\n\n\\b\
280
+ egin{tikzpicture}[\n vertex/.style={circle, draw, fill=black, inner sep =0.04\
281
+ cm},\n ghost/.style={circle, draw = none, inner sep = 0.14cm},\n botloop/.st\
282
+ yle={min distance = 8mm, out = -70, in = -110},\n toploop/.style={min distanc\
283
+ e = 8mm, out = 70, in = 110}]\n\n % vertices and labels\n \\foreach \\i in {\
284
+ 1,...,3} {\n \\node [vertex] at (\\i/1.5, 3) {};\n \\node [ghost] (\\i) \
285
+ at (\\i/1.5, 3) {};\n }\n\n \\foreach \\i in {1,...,3} {\n \\node [vertex\
286
+ ] at (\\i/1.5, 0) {};\n \\node [ghost] (-\\i) at (\\i/1.5, 0) {};\n }\n\n \
287
+ % arcs from vertex 1\n \\arc (1) edge [toploop] (1);\n \\arc (1) .. control\
288
+ s (1.0666666666666667, 2.3333333333333335) and (0.93333333333333324, 2.3333333\
289
+ 333333335) .. (2);\n \\arc (1) .. controls (1.4666666666666668, 1.91666666666\
290
+ 66665) and (1.2, 1.9166666666666665) .. (3);\n\n % arcs from vertex -1\n \\a\
291
+ rc (-1) .. controls (1.4666666666666668, 1.0833333333333335) and (1.2, 1.08333\
292
+ 33333333335) .. (-3);\n \\arc (-1) .. controls (1.0666666666666667, 0.6666666\
293
+ 6666666674) and (0.93333333333333324, 0.66666666666666674) .. (-2);\n \\arc (\
294
+ -1) edge [botloop] (-1);\n \\arc (-1) to (1);\n \\arc (-1) to (2);\n \\arc \
295
+ (-1) to (3);\n\n % arcs from vertex 2\n \\arc (2) .. controls (0.93333333333\
296
+ 333324, 2.3333333333333335) and (1.0666666666666667, 2.3333333333333335) .. (1\
297
+ );\n \\arc (2) edge [toploop] (2);\n \\arc (2) .. controls (1.73333333333333\
298
+ 34, 2.3333333333333335) and (1.6000000000000001, 2.3333333333333335) .. (3);\n\
299
+ \n % arcs from vertex -2\n \\arc (-2) .. controls (1.7333333333333334, 0.666\
300
+ 66666666666674) and (1.6000000000000001, 0.66666666666666674) .. (-3);\n \\ar\
301
+ c (-2) edge [botloop] (-2);\n \\arc (-2) .. controls (0.93333333333333324, 0.\
302
+ 66666666666666674) and (1.0666666666666667, 0.66666666666666674) .. (-1);\n \
303
+ \\arc (-2) to (1);\n \\arc (-2) to (2);\n \\arc (-2) to (3);\n\n % arcs fro\
304
+ m vertex 3\n \\arc (3) .. controls (1.2, 1.9166666666666665) and (1.466666666\
305
+ 6666668, 1.9166666666666665) .. (1);\n \\arc (3) .. controls (1.6000000000000\
306
+ 001, 2.3333333333333335) and (1.7333333333333334, 2.3333333333333335) .. (2);\
307
+ \n \\arc (3) edge [toploop] (3);\n\n % arcs from vertex -3\n \\arc (-3) edg\
308
+ e [botloop] (-3);\n \\arc (-3) .. controls (1.6000000000000001, 0.66666666666\
309
+ 666674) and (1.7333333333333334, 0.66666666666666674) .. (-2);\n \\arc (-3) .\
310
+ . controls (1.2, 1.0833333333333335) and (1.4666666666666668, 1.08333333333333\
311
+ 35) .. (-1);\n \\arc (-3) to (1);\n \\arc (-3) to (2);\n \\arc (-3) to (3);\
312
+ \n\n\\end{tikzpicture}\n\n\\bigskip\\bigskip\n\n\\end{center}\\end{document}"
313
+
314
+ # TikzString for a bipartition collection
315
+ gap> TikzString(PartitionMonoid(2));
316
+ "%latex\n\\documentclass{minimal}\n\\usepackage{tikz}\n\n\\begin{document}\n\\\
317
+ begin{center}\n\\begin{tikzpicture}\n\n %block number 1\n %vertices and labe\
318
+ ls\n \\fill(1, 2)circle(.125);\n \\draw(0.94999999999999996, 2.2) node [abov\
319
+ e] {$1$};\n \\fill(1, 0)circle(.125);\n \\draw(1, -0.2) node [below] {$-1$};\
320
+ \n\n %lines\n \\draw(1, 2)--(1, 0);\n\n %block number 2\n %vertices and la\
321
+ bels\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) node [above] {$2$};\n \
322
+ \\fill(2, 0)circle(.125);\n \\draw(2, -0.2) node [below] {$-2$};\n\n %lines\
323
+ \n \\draw(2, 2)--(2, 0);\n\\end{tikzpicture}\n\n\n\\bigskip\\bigskip\n\n\\beg\
324
+ in{tikzpicture}\n\n %block number 1\n %vertices and labels\n \\fill(1, 2)ci\
325
+ rcle(.125);\n \\draw(0.94999999999999996, 2.2) node [above] {$1$};\n \\fill(\
326
+ 2, 0)circle(.125);\n \\draw(2, -0.2) node [below] {$-2$};\n\n %lines\n \\dr\
327
+ aw(1, 2)--(2, 0);\n\n %block number 2\n %vertices and labels\n \\fill(2, 2)\
328
+ circle(.125);\n \\draw(1.95, 2.2) node [above] {$2$};\n \\fill(1, 0)circle(.\
329
+ 125);\n \\draw(1, -0.2) node [below] {$-1$};\n\n %lines\n \\draw(2, 2)--(1,\
330
+ 0);\n\\end{tikzpicture}\n\n\n\\bigskip\\bigskip\n\n\\begin{tikzpicture}\n\n \
331
+ %block number 1\n %vertices and labels\n \\fill(1, 2)circle(.125);\n \\draw\
332
+ (0.94999999999999996, 2.2) node [above] {$1$};\n\n %lines\n\n %block number \
333
+ 2\n %vertices and labels\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) no\
334
+ de [above] {$2$};\n \\fill(2, 0)circle(.125);\n \\draw(2, -0.2) node [below]\
335
+ {$-2$};\n\n %lines\n \\draw(2, 2)--(2, 0);\n\n %block number 3\n %vertice\
336
+ s and labels\n \\fill(1, 0)circle(.125);\n \\draw(1, -0.2) node [below] {$-1\
337
+ $};\n\n %lines\n\\end{tikzpicture}\n\n\n\\bigskip\\bigskip\n\n\\begin{tikzpic\
338
+ ture}\n\n %block number 1\n %vertices and labels\n \\fill(1, 2)circle(.125)\
339
+ ;\n \\draw(0.94999999999999996, 2.2) node [above] {$1$};\n \\fill(2, 2)circl\
340
+ e(.125);\n \\draw(1.95, 2.2) node [above] {$2$};\n \\fill(1, 0)circle(.125);\
341
+ \n \\draw(1, -0.2) node [below] {$-1$};\n \\fill(2, 0)circle(.125);\n \\dra\
342
+ w(2, -0.2) node [below] {$-2$};\n\n %lines\n \\draw(1, 1.875) .. controls (1\
343
+ , 1.25) and (2, 1.25) .. (2, 1.875);\n \\draw(1, 0.125) .. controls (1, 0.75)\
344
+ and (2, 0.75) .. (2, 0.125);\n \\draw(1, 2)--(1, 0);\n\\end{tikzpicture}\n\n\
345
+ \n\\bigskip\\bigskip\n\n\\begin{tikzpicture}\n\n %block number 1\n %vertices\
346
+ and labels\n \\fill(1, 2)circle(.125);\n \\draw(0.94999999999999996, 2.2) n\
347
+ ode [above] {$1$};\n \\fill(2, 0)circle(.125);\n \\draw(2, -0.2) node [below\
348
+ ] {$-2$};\n\n %lines\n \\draw(1, 2)--(2, 0);\n\n %block number 2\n %vertic\
349
+ es and labels\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) node [above] {\
350
+ $2$};\n\n %lines\n\n %block number 3\n %vertices and labels\n \\fill(1, 0)\
351
+ circle(.125);\n \\draw(1, -0.2) node [below] {$-1$};\n\n %lines\n\\end{tikzp\
352
+ icture}\n\n\n\\bigskip\\bigskip\n\n\\begin{tikzpicture}\n\n %block number 1\n\
353
+ %vertices and labels\n \\fill(1, 2)circle(.125);\n \\draw(0.94999999999999\
354
+ 996, 2.2) node [above] {$1$};\n\n %lines\n\n %block number 2\n %vertices an\
355
+ d labels\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) node [above] {$2$};\
356
+ \n \\fill(1, 0)circle(.125);\n \\draw(1, -0.2) node [below] {$-1$};\n\n %li\
357
+ nes\n \\draw(2, 2)--(1, 0);\n\n %block number 3\n %vertices and labels\n \
358
+ \\fill(2, 0)circle(.125);\n \\draw(2, -0.2) node [below] {$-2$};\n\n %lines\
359
+ \n\\end{tikzpicture}\n\n\n\\bigskip\\bigskip\n\n\\begin{tikzpicture}\n\n %blo\
360
+ ck number 1\n %vertices and labels\n \\fill(1, 2)circle(.125);\n \\draw(0.9\
361
+ 4999999999999996, 2.2) node [above] {$1$};\n\n %lines\n\n %block number 2\n \
362
+ %vertices and labels\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) node [\
363
+ above] {$2$};\n \\fill(1, 0)circle(.125);\n \\draw(1, -0.2) node [below] {$-\
364
+ 1$};\n \\fill(2, 0)circle(.125);\n \\draw(2, -0.2) node [below] {$-2$};\n\n \
365
+ %lines\n \\draw(1, 0.125) .. controls (1, 0.75) and (2, 0.75) .. (2, 0.125);\
366
+ \n \\draw(2, 2)--(2, 0);\n\\end{tikzpicture}\n\n\n\\bigskip\\bigskip\n\n\\beg\
367
+ in{tikzpicture}\n\n %block number 1\n %vertices and labels\n \\fill(1, 2)ci\
368
+ rcle(.125);\n \\draw(0.94999999999999996, 2.2) node [above] {$1$};\n \\fill(\
369
+ 2, 2)circle(.125);\n \\draw(1.95, 2.2) node [above] {$2$};\n \\fill(2, 0)cir\
370
+ cle(.125);\n \\draw(2, -0.2) node [below] {$-2$};\n\n %lines\n \\draw(1, 1.\
371
+ 875) .. controls (1, 1.25) and (2, 1.25) .. (2, 1.875);\n \\draw(2, 2)--(2, 0\
372
+ );\n\n %block number 2\n %vertices and labels\n \\fill(1, 0)circle(.125);\n\
373
+ \\draw(1, -0.2) node [below] {$-1$};\n\n %lines\n\\end{tikzpicture}\n\n\n\\\
374
+ bigskip\\bigskip\n\n\\begin{tikzpicture}\n\n %block number 1\n %vertices and\
375
+ labels\n \\fill(1, 2)circle(.125);\n \\draw(0.94999999999999996, 2.2) node \
376
+ [above] {$1$};\n \\fill(1, 0)circle(.125);\n \\draw(1, -0.2) node [below] {$\
377
+ -1$};\n\n %lines\n \\draw(1, 2)--(1, 0);\n\n %block number 2\n %vertices a\
378
+ nd labels\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) node [above] {$2$}\
379
+ ;\n\n %lines\n\n %block number 3\n %vertices and labels\n \\fill(2, 0)circ\
380
+ le(.125);\n \\draw(2, -0.2) node [below] {$-2$};\n\n %lines\n\\end{tikzpictu\
381
+ re}\n\n\n\\bigskip\\bigskip\n\n\\begin{tikzpicture}\n\n %block number 1\n %v\
382
+ ertices and labels\n \\fill(1, 2)circle(.125);\n \\draw(0.94999999999999996,\
383
+ 2.2) node [above] {$1$};\n \\fill(1, 0)circle(.125);\n \\draw(1, -0.2) node\
384
+ [below] {$-1$};\n \\fill(2, 0)circle(.125);\n \\draw(2, -0.2) node [below] \
385
+ {$-2$};\n\n %lines\n \\draw(1, 0.125) .. controls (1, 0.75) and (2, 0.75) ..\
386
+ (2, 0.125);\n \\draw(1, 2)--(1, 0);\n\n %block number 2\n %vertices and la\
387
+ bels\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) node [above] {$2$};\n\n\
388
+ %lines\n\\end{tikzpicture}\n\n\n\\bigskip\\bigskip\n\n\\begin{tikzpicture}\n\
389
+ \n %block number 1\n %vertices and labels\n \\fill(1, 2)circle(.125);\n \\\
390
+ draw(0.94999999999999996, 2.2) node [above] {$1$};\n\n %lines\n\n %block num\
391
+ ber 2\n %vertices and labels\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2\
392
+ ) node [above] {$2$};\n\n %lines\n\n %block number 3\n %vertices and labels\
393
+ \n \\fill(1, 0)circle(.125);\n \\draw(1, -0.2) node [below] {$-1$};\n\n %li\
394
+ nes\n\n %block number 4\n %vertices and labels\n \\fill(2, 0)circle(.125);\
395
+ \n \\draw(2, -0.2) node [below] {$-2$};\n\n %lines\n\\end{tikzpicture}\n\n\n\
396
+ \\bigskip\\bigskip\n\n\\begin{tikzpicture}\n\n %block number 1\n %vertices a\
397
+ nd labels\n \\fill(1, 2)circle(.125);\n \\draw(0.94999999999999996, 2.2) nod\
398
+ e [above] {$1$};\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) node [above\
399
+ ] {$2$};\n \\fill(1, 0)circle(.125);\n \\draw(1, -0.2) node [below] {$-1$};\
400
+ \n\n %lines\n \\draw(1, 1.875) .. controls (1, 1.25) and (2, 1.25) .. (2, 1.\
401
+ 875);\n \\draw(1, 2)--(1, 0);\n\n %block number 2\n %vertices and labels\n \
402
+ \\fill(2, 0)circle(.125);\n \\draw(2, -0.2) node [below] {$-2$};\n\n %lines\
403
+ \n\\end{tikzpicture}\n\n\n\\bigskip\\bigskip\n\n\\begin{tikzpicture}\n\n %blo\
404
+ ck number 1\n %vertices and labels\n \\fill(1, 2)circle(.125);\n \\draw(0.9\
405
+ 4999999999999996, 2.2) node [above] {$1$};\n\n %lines\n\n %block number 2\n \
406
+ %vertices and labels\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) node [\
407
+ above] {$2$};\n\n %lines\n\n %block number 3\n %vertices and labels\n \\fi\
408
+ ll(1, 0)circle(.125);\n \\draw(1, -0.2) node [below] {$-1$};\n \\fill(2, 0)c\
409
+ ircle(.125);\n \\draw(2, -0.2) node [below] {$-2$};\n\n %lines\n \\draw(1, \
410
+ 0.125) .. controls (1, 0.75) and (2, 0.75) .. (2, 0.125);\n\\end{tikzpicture}\
411
+ \n\n\n\\bigskip\\bigskip\n\n\\begin{tikzpicture}\n\n %block number 1\n %vert\
412
+ ices and labels\n \\fill(1, 2)circle(.125);\n \\draw(0.94999999999999996, 2.\
413
+ 2) node [above] {$1$};\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) node \
414
+ [above] {$2$};\n\n %lines\n \\draw(1, 1.875) .. controls (1, 1.25) and (2, 1\
415
+ .25) .. (2, 1.875);\n\n %block number 2\n %vertices and labels\n \\fill(1, \
416
+ 0)circle(.125);\n \\draw(1, -0.2) node [below] {$-1$};\n\n %lines\n\n %bloc\
417
+ k number 3\n %vertices and labels\n \\fill(2, 0)circle(.125);\n \\draw(2, -\
418
+ 0.2) node [below] {$-2$};\n\n %lines\n\\end{tikzpicture}\n\n\n\\bigskip\\bigs\
419
+ kip\n\n\\begin{tikzpicture}\n\n %block number 1\n %vertices and labels\n \\\
420
+ fill(1, 2)circle(.125);\n \\draw(0.94999999999999996, 2.2) node [above] {$1$}\
421
+ ;\n \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) node [above] {$2$};\n\n %\
422
+ lines\n \\draw(1, 1.875) .. controls (1, 1.25) and (2, 1.25) .. (2, 1.875);\n\
423
+ \n %block number 2\n %vertices and labels\n \\fill(1, 0)circle(.125);\n \\\
424
+ draw(1, -0.2) node [below] {$-1$};\n \\fill(2, 0)circle(.125);\n \\draw(2, -\
425
+ 0.2) node [below] {$-2$};\n\n %lines\n \\draw(1, 0.125) .. controls (1, 0.75\
426
+ ) and (2, 0.75) .. (2, 0.125);\n\\end{tikzpicture}\n\n\n\\bigskip\\bigskip\n\n\
427
+ \\end{center}\\end{document}"
428
+
429
+ # Test TikzString for a bipartition
430
+ gap> TikzString(Bipartition([[1, 3], [2, -1], [-2, -3]]));
431
+ "%latex\n\\documentclass{minimal}\n\\usepackage{tikz}\n\n\\begin{document}\n\\\
432
+ begin{tikzpicture}\n\n %block number 1\n %vertices and labels\n \\fill(1, 2\
433
+ )circle(.125);\n \\draw(0.94999999999999996, 2.2) node [above] {$1$};\n \\fi\
434
+ ll(3, 2)circle(.125);\n \\draw(2.9500000000000002, 2.2) node [above] {$3$};\n\
435
+ \n %lines\n \\draw(1, 1.875) .. controls (1, 1.1666666666666667) and (3, 1.1\
436
+ 666666666666667) .. (3, 1.875);\n\n %block number 2\n %vertices and labels\n\
437
+ \\fill(2, 2)circle(.125);\n \\draw(1.95, 2.2) node [above] {$2$};\n \\fill\
438
+ (1, 0)circle(.125);\n \\draw(1, -0.2) node [below] {$-1$};\n\n %lines\n \\d\
439
+ raw(2, 2)--(1, 0);\n\n %block number 3\n %vertices and labels\n \\fill(2, 0\
440
+ )circle(.125);\n \\draw(2, -0.2) node [below] {$-2$};\n \\fill(3, 0)circle(.\
441
+ 125);\n \\draw(3, -0.2) node [below] {$-3$};\n\n %lines\n \\draw(2, 0.125) \
442
+ .. controls (2, 0.66666666666666663) and (3, 0.66666666666666663) .. (3, 0.125\
443
+ );\n\\end{tikzpicture}\n\n\\end{document}"
444
+ gap> TikzString(Bipartition([[1, 3], [2, -1], [-2, -3]]),
445
+ > rec(colors := true, labels := true, beginDocument := true,
446
+ > endDocument := true));
447
+ "%latex\n\\documentclass{minimal}\n\\usepackage{tikz}\n\n\\begin{document}\n\\\
448
+ begin{tikzpicture}\n\n %block number 1\n %vertices and labels\n \\fill[red]\
449
+ (1, 2)circle(.125);\n \\draw[red](0.94999999999999996, 2.2) node [above] {$1$\
450
+ };\n \\fill[red](3, 2)circle(.125);\n \\draw[red](2.9500000000000002, 2.2) n\
451
+ ode [above] {$3$};\n\n %lines\n \\draw[red](1, 1.875) .. controls (1, 1.1666\
452
+ 666666666667) and (3, 1.1666666666666667) .. (3, 1.875);\n\n %block number 2\
453
+ \n %vertices and labels\n \\fill[green](2, 2)circle(.125);\n \\draw[green](\
454
+ 1.95, 2.2) node [above] {$2$};\n \\fill[green](1, 0)circle(.125);\n \\draw[g\
455
+ reen](1, -0.2) node [below] {$-1$};\n\n %lines\n \\draw[green](2, 2)--(1, 0)\
456
+ ;\n\n %block number 3\n %vertices and labels\n \\fill[blue](2, 0)circle(.12\
457
+ 5);\n \\draw[blue](2, -0.2) node [below] {$-2$};\n \\fill[blue](3, 0)circle(\
458
+ .125);\n \\draw[blue](3, -0.2) node [below] {$-3$};\n\n %lines\n \\draw[blu\
459
+ e](2, 0.125) .. controls (2, 0.66666666666666663) and (3, 0.66666666666666663)\
460
+ .. (3, 0.125);\n\\end{tikzpicture}\n\n\\end{document}"
461
+
462
+ # Test DotString for a semigroup
463
+ gap> DotString(RegularBooleanMatMonoid(3));
464
+ "//dot\ndigraph DClasses {\nnode [shape=plaintext]\nedge [color=black,arrowhe\
465
+ ad=none]\n1 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER\
466
+ =\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"1\">\n<TR BORDER=\"0\"><TD \
467
+ COLSPAN=\"1\" BORDER = \"0\" > 1</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD></TR>\
468
+ \n</TABLE>>];\n2 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLB\
469
+ ORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"2\">\n<TR BORDER=\"0\"\
470
+ ><TD COLSPAN=\"7\" BORDER = \"0\" > 2</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD>\
471
+ <TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</\
472
+ TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">\
473
+ *</TD></TR>\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGC\
474
+ OLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD \
475
+ BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"gra\
476
+ y\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"\
477
+ gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR\
478
+ =\"gray\">*</TD></TR>\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</\
479
+ TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"\
480
+ ></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD></TR>\n<TR><TD BGC\
481
+ OLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD \
482
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><\
483
+ TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"\
484
+ gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR\
485
+ =\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<\
486
+ TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">\
487
+ *</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"whit\
488
+ e\"></TD><TD BGCOLOR=\"gray\">*</TD></TR>\n</TABLE>>];\n3 [shape=box style=inv\
489
+ isible label=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSP\
490
+ ACING=\"0\" PORT=\"3\">\n<TR BORDER=\"0\"><TD COLSPAN=\"12\" BORDER = \"0\" > \
491
+ 3</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOL\
492
+ OR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BG\
493
+ COLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD\
494
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD>\
495
+ <TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\
496
+ \"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOL\
497
+ OR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BG\
498
+ COLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD\
499
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"gr\
500
+ ay\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\
501
+ \"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOL\
502
+ OR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BG\
503
+ COLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></T\
504
+ R>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gr\
505
+ ay\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\
506
+ \"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOL\
507
+ OR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BG\
508
+ COLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\
509
+ \">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"g\
510
+ ray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\
511
+ \"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOL\
512
+ OR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\">\
513
+ </TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\
514
+ \">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"w\
515
+ hite\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\
516
+ \"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<T\
517
+ R><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\">\
518
+ </TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\
519
+ \">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"g\
520
+ ray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\
521
+ \"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></T\
522
+ D><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*\
523
+ </TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\
524
+ \"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gr\
525
+ ay\">*</TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><T\
526
+ D BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD\
527
+ ><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*<\
528
+ /TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\"\
529
+ >*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD></TR>\n<TR><TD BG\
530
+ COLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD\
531
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD>\
532
+ <TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</\
533
+ TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"\
534
+ ></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGC\
535
+ OLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD \
536
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><\
537
+ TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></T\
538
+ D><TD BGCOLOR=\"gray\">*</TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR\
539
+ =\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCO\
540
+ LOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD B\
541
+ GCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><T\
542
+ D BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD></TR>\n</TABLE>>];\n4 [sha\
543
+ pe=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDI\
544
+ NG=\"10\" CELLSPACING=\"0\" PORT=\"4\">\n<TR BORDER=\"0\"><TD COLSPAN=\"6\" BO\
545
+ RDER = \"0\" > 4</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"\
546
+ ></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"whit\
547
+ e\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD \
548
+ BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><\
549
+ TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"\
550
+ white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR\
551
+ =\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<\
552
+ TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"\
553
+ ></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"whit\
554
+ e\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD \
555
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><\
556
+ TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"\
557
+ white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR\
558
+ =\"white\"></TD><TD BGCOLOR=\"gray\">*</TD></TR>\n</TABLE>>];\n5 [shape=box st\
559
+ yle=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\"\
560
+ CELLSPACING=\"0\" PORT=\"5\">\n<TR BORDER=\"0\"><TD COLSPAN=\"9\" BORDER = \"\
561
+ 0\" > 5</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD\
562
+ BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD>\
563
+ <TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></\
564
+ TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLO\
565
+ R=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGC\
566
+ OLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD \
567
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"gra\
568
+ y\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"\
569
+ white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR\
570
+ =\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<\
571
+ TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"\
572
+ ></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"whit\
573
+ e\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"w\
574
+ hite\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><\
575
+ TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</T\
576
+ D><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*\
577
+ </TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCO\
578
+ LOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD B\
579
+ GCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><T\
580
+ D BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD></TR>\n<TR><TD BGCOLOR=\"w\
581
+ hite\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\
582
+ \"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOL\
583
+ OR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\
584
+ \n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"whit\
585
+ e\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"w\
586
+ hite\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\
587
+ \"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></T\
588
+ D><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\">\
589
+ </TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\
590
+ \"></TD><TD BGCOLOR=\"white\"></TD></TR>\n</TABLE>>];\n6 [shape=box style=invi\
591
+ sible label=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPA\
592
+ CING=\"0\" PORT=\"6\">\n<TR BORDER=\"0\"><TD COLSPAN=\"6\" BORDER = \"0\" > 6<\
593
+ /TD></TR><TR><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*<\
594
+ /font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</f\
595
+ ont></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</fon\
596
+ t></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font>\
597
+ </TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></\
598
+ TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD\
599
+ ></TR>\n<TR><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</\
600
+ font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</fo\
601
+ nt></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font\
602
+ ></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font><\
603
+ /TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></T\
604
+ D><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD>\
605
+ </TR>\n<TR><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</f\
606
+ ont></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</fon\
607
+ t></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font>\
608
+ </TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></\
609
+ TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD\
610
+ ><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD><\
611
+ /TR>\n<TR><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</fo\
612
+ nt></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font\
613
+ ></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font><\
614
+ /TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></T\
615
+ D><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD>\
616
+ <TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD></\
617
+ TR>\n<TR><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</fon\
618
+ t></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font>\
619
+ </TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></\
620
+ TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD\
621
+ ><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD><\
622
+ TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD></T\
623
+ R>\n<TR><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font\
624
+ ></TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font><\
625
+ /TD><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></T\
626
+ D><TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD>\
627
+ <TD CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD><T\
628
+ D CELLPADDING=\"10\" BGCOLOR=\"white\"><font color=\"white\">*</font></TD></TR\
629
+ >\n</TABLE>>];\n7 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELL\
630
+ BORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"7\">\n<TR BORDER=\"0\
631
+ \"><TD COLSPAN=\"3\" BORDER = \"0\" > 7</TD></TR><TR><TD BGCOLOR=\"gray\">*</T\
632
+ D><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR\
633
+ =\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD></TR>\n<\
634
+ TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">\
635
+ *</TD></TR>\n</TABLE>>];\n8 [shape=box style=invisible label=<\n<TABLE BORDER=\
636
+ \"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"8\">\n<TR B\
637
+ ORDER=\"0\"><TD COLSPAN=\"3\" BORDER = \"0\" > 8</TD></TR><TR><TD BGCOLOR=\"gr\
638
+ ay\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><T\
639
+ D BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD\
640
+ ></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\
641
+ \"gray\">*</TD></TR>\n</TABLE>>];\n9 [shape=box style=invisible label=<\n<TABL\
642
+ E BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"9\
643
+ \">\n<TR BORDER=\"0\"><TD COLSPAN=\"6\" BORDER = \"0\" > 9</TD></TR><TR><TD BG\
644
+ COLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD\
645
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD>\
646
+ </TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\
647
+ \"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOL\
648
+ OR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\">\
649
+ </TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\
650
+ \"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD B\
651
+ GCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><T\
652
+ D BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"w\
653
+ hite\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\
654
+ \"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD></TR>\n<T\
655
+ R><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\">\
656
+ </TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\
657
+ \">*</TD></TR>\n</TABLE>>];\n10 [shape=box style=invisible label=<\n<TABLE BOR\
658
+ DER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"10\">\n\
659
+ <TR BORDER=\"0\"><TD COLSPAN=\"1\" BORDER = \"0\" > 10</TD></TR><TR><TD BGCOLO\
660
+ R=\"gray\">*</TD></TR>\n</TABLE>>];\n2 -> 1\n3 -> 2\n4 -> 3\n5 -> 3\n6 -> 4\n6\
661
+ -> 5\n7 -> 4\n7 -> 5\n8 -> 4\n8 -> 5\n9 -> 6\n9 -> 7\n9 -> 8\n10 -> 9\n }"
662
+ gap> DotString(RegularBooleanMatMonoid(2), rec(maximal := true));
663
+ "//dot\ndigraph DClasses {\nnode [shape=plaintext]\nedge [color=black,arrowhe\
664
+ ad=none]\n1 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER\
665
+ =\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"1\">\n<TR BORDER=\"0\"><TD \
666
+ COLSPAN=\"1\" BORDER = \"0\" > 1</TD></TR><TR><TD BGCOLOR=\"gray\">1</TD></TR>\
667
+ \n</TABLE>>];\n2 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLB\
668
+ ORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"2\">\n<TR BORDER=\"0\"\
669
+ ><TD COLSPAN=\"3\" BORDER = \"0\" > 2</TD></TR><TR><TD BGCOLOR=\"gray\">1</TD>\
670
+ <TD BGCOLOR=\"gray\">1</TD><TD BGCOLOR=\"gray\">1</TD></TR>\n<TR><TD BGCOLOR=\
671
+ \"gray\">1</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">1</TD></TR>\n<T\
672
+ R><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">1</TD><TD BGCOLOR=\"gray\">1\
673
+ </TD></TR>\n</TABLE>>];\n3 [shape=box style=invisible label=<\n<TABLE BORDER=\
674
+ \"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"3\">\n<TR B\
675
+ ORDER=\"0\"><TD COLSPAN=\"2\" BORDER = \"0\" > 3</TD></TR><TR><TD BGCOLOR=\"gr\
676
+ ay\">1</TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><T\
677
+ D BGCOLOR=\"gray\">1</TD></TR>\n</TABLE>>];\n4 [shape=box style=invisible labe\
678
+ l=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\"\
679
+ PORT=\"4\">\n<TR BORDER=\"0\"><TD COLSPAN=\"1\" BORDER = \"0\" > 4</TD></TR><\
680
+ TR><TD BGCOLOR=\"gray\">C2</TD></TR>\n</TABLE>>];\n2 -> 1\n3 -> 2\n4 -> 3\n }"
681
+ gap> DotString(RegularBooleanMatMonoid(2), rec(number := false));
682
+ "//dot\ndigraph DClasses {\nnode [shape=plaintext]\nedge [color=black,arrowhe\
683
+ ad=none]\n1 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER\
684
+ =\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"1\">\n<TR><TD BGCOLOR=\"gra\
685
+ y\">*</TD></TR>\n</TABLE>>];\n2 [shape=box style=invisible label=<\n<TABLE BOR\
686
+ DER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"2\">\n<\
687
+ TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">\
688
+ *</TD></TR>\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGC\
689
+ OLOR=\"gray\">*</TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\"\
690
+ >*</TD><TD BGCOLOR=\"gray\">*</TD></TR>\n</TABLE>>];\n3 [shape=box style=invis\
691
+ ible label=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPAC\
692
+ ING=\"0\" PORT=\"3\">\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></\
693
+ TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD></TR>\n</T\
694
+ ABLE>>];\n4 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER\
695
+ =\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"4\">\n<TR><TD BGCOLOR=\"gra\
696
+ y\">*</TD></TR>\n</TABLE>>];\n2 -> 1\n3 -> 2\n4 -> 3\n }"
697
+ gap> DotString(RegularBooleanMatMonoid(2), rec(normal := false));
698
+ "//dot\ndigraph DClasses {\nnode [shape=plaintext]\nedge [color=black,arrowhe\
699
+ ad=none]\n1 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER\
700
+ =\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"1\">\n<TR BORDER=\"0\"><TD \
701
+ COLSPAN=\"1\" BORDER = \"0\" > 1</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD></TR>\
702
+ \n</TABLE>>];\n2 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLB\
703
+ ORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"2\">\n<TR BORDER=\"0\"\
704
+ ><TD COLSPAN=\"3\" BORDER = \"0\" > 2</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD>\
705
+ <TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD></TR>\n<TR><TD BGCOLOR=\
706
+ \"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD></TR>\n<T\
707
+ R><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*\
708
+ </TD></TR>\n</TABLE>>];\n3 [shape=box style=invisible label=<\n<TABLE BORDER=\
709
+ \"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"3\">\n<TR B\
710
+ ORDER=\"0\"><TD COLSPAN=\"2\" BORDER = \"0\" > 3</TD></TR><TR><TD BGCOLOR=\"gr\
711
+ ay\">*</TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><T\
712
+ D BGCOLOR=\"gray\">*</TD></TR>\n</TABLE>>];\n4 [shape=box style=invisible labe\
713
+ l=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\"\
714
+ PORT=\"4\">\n<TR BORDER=\"0\"><TD COLSPAN=\"1\" BORDER = \"0\" > 4</TD></TR><\
715
+ TR><TD BGCOLOR=\"gray\">*</TD></TR>\n</TABLE>>];\n2 -> 1\n3 -> 2\n4 -> 3\n }"
716
+ gap> S := RegularBooleanMatMonoid(3);;
717
+ gap> DotString(S, rec(highlight := [rec(HClasses := [HClass(S, One(S))]),
718
+ > rec(HClasses := [First(HClasses(S), x -> not IsGroupHClass(x))]),
719
+ > rec(HClasses := HClasses(First(DClasses(S), x -> not IsRegularDClass(x))))
720
+ > ]));
721
+ "//dot\ndigraph DClasses {\nnode [shape=plaintext]\nedge [color=black,arrowhe\
722
+ ad=none]\n1 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER\
723
+ =\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"1\">\n<TR BORDER=\"0\"><TD \
724
+ COLSPAN=\"1\" BORDER = \"0\" > 1</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD></TR>\
725
+ \n</TABLE>>];\n2 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLB\
726
+ ORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"2\">\n<TR BORDER=\"0\"\
727
+ ><TD COLSPAN=\"7\" BORDER = \"0\" > 2</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD>\
728
+ <TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</\
729
+ TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">\
730
+ *</TD></TR>\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGC\
731
+ OLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD \
732
+ BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"gra\
733
+ y\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"\
734
+ gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR\
735
+ =\"gray\">*</TD></TR>\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</\
736
+ TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"\
737
+ ></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD></TR>\n<TR><TD BGC\
738
+ OLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD \
739
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><\
740
+ TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"\
741
+ gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR\
742
+ =\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<\
743
+ TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"#FF0000\"></TD><TD BGCOLOR=\"gray\
744
+ \">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"w\
745
+ hite\"></TD><TD BGCOLOR=\"gray\">*</TD></TR>\n</TABLE>>];\n3 [shape=box style=\
746
+ invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CEL\
747
+ LSPACING=\"0\" PORT=\"3\">\n<TR BORDER=\"0\"><TD COLSPAN=\"12\" BORDER = \"0\"\
748
+ > 3</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BG\
749
+ COLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD\
750
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD>\
751
+ <TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></\
752
+ TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLO\
753
+ R=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGC\
754
+ OLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD \
755
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><\
756
+ TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"\
757
+ gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR\
758
+ =\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCO\
759
+ LOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD B\
760
+ GCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></\
761
+ TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"g\
762
+ ray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\
763
+ \"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOL\
764
+ OR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BG\
765
+ COLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\
766
+ \">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"g\
767
+ ray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\
768
+ \"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOL\
769
+ OR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\">\
770
+ </TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\
771
+ \">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"w\
772
+ hite\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\
773
+ \"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<T\
774
+ R><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\">\
775
+ </TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\
776
+ \">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"g\
777
+ ray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\
778
+ \"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></T\
779
+ D><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*\
780
+ </TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\
781
+ \"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gr\
782
+ ay\">*</TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><T\
783
+ D BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD\
784
+ ><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*<\
785
+ /TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\"\
786
+ >*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD></TR>\n<TR><TD BG\
787
+ COLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD\
788
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD>\
789
+ <TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</\
790
+ TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"\
791
+ ></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGC\
792
+ OLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD \
793
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><\
794
+ TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></T\
795
+ D><TD BGCOLOR=\"gray\">*</TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR\
796
+ =\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCO\
797
+ LOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD B\
798
+ GCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><T\
799
+ D BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD></TR>\n</TABLE>>];\n4 [sha\
800
+ pe=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDI\
801
+ NG=\"10\" CELLSPACING=\"0\" PORT=\"4\">\n<TR BORDER=\"0\"><TD COLSPAN=\"6\" BO\
802
+ RDER = \"0\" > 4</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"\
803
+ ></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"whit\
804
+ e\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD \
805
+ BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><\
806
+ TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"\
807
+ white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR\
808
+ =\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<\
809
+ TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"\
810
+ ></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"whit\
811
+ e\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD \
812
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><\
813
+ TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"\
814
+ white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR\
815
+ =\"white\"></TD><TD BGCOLOR=\"gray\">*</TD></TR>\n</TABLE>>];\n5 [shape=box st\
816
+ yle=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\"\
817
+ CELLSPACING=\"0\" PORT=\"5\">\n<TR BORDER=\"0\"><TD COLSPAN=\"9\" BORDER = \"\
818
+ 0\" > 5</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD\
819
+ BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD>\
820
+ <TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></\
821
+ TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLO\
822
+ R=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGC\
823
+ OLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD \
824
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"gra\
825
+ y\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"\
826
+ white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR\
827
+ =\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<\
828
+ TR><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"\
829
+ ></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"whit\
830
+ e\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"w\
831
+ hite\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><\
832
+ TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</T\
833
+ D><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*\
834
+ </TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCO\
835
+ LOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD B\
836
+ GCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><T\
837
+ D BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD></TR>\n<TR><TD BGCOLOR=\"w\
838
+ hite\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\
839
+ \"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOL\
840
+ OR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\
841
+ \n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"whit\
842
+ e\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"w\
843
+ hite\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\
844
+ \"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></T\
845
+ D><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\">\
846
+ </TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\
847
+ \"></TD><TD BGCOLOR=\"white\"></TD></TR>\n</TABLE>>];\n6 [shape=box style=invi\
848
+ sible label=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPA\
849
+ CING=\"0\" PORT=\"6\">\n<TR BORDER=\"0\"><TD COLSPAN=\"6\" BORDER = \"0\" > 6<\
850
+ /TD></TR><TR><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">\
851
+ *</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">\
852
+ *</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">\
853
+ *</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">\
854
+ *</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">\
855
+ *</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">\
856
+ *</font></TD></TR>\n<TR><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color\
857
+ =\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color\
858
+ =\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color\
859
+ =\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color\
860
+ =\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color\
861
+ =\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\"><font color\
862
+ =\"white\">*</font></TD></TR>\n<TR><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\">\
863
+ <font color=\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\">\
864
+ <font color=\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\">\
865
+ <font color=\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\">\
866
+ <font color=\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\">\
867
+ <font color=\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\"#FF0000\">\
868
+ <font color=\"white\">*</font></TD></TR>\n<TR><TD CELLPADDING=\"10\" BGCOLOR=\
869
+ \"#FF0000\"><font color=\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\
870
+ \"#FF0000\"><font color=\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\
871
+ \"#FF0000\"><font color=\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\
872
+ \"#FF0000\"><font color=\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\
873
+ \"#FF0000\"><font color=\"white\">*</font></TD><TD CELLPADDING=\"10\" BGCOLOR=\
874
+ \"#FF0000\"><font color=\"white\">*</font></TD></TR>\n<TR><TD CELLPADDING=\"10\
875
+ \" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD><TD CELLPADDING=\"10\
876
+ \" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD><TD CELLPADDING=\"10\
877
+ \" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD><TD CELLPADDING=\"10\
878
+ \" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD><TD CELLPADDING=\"10\
879
+ \" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD><TD CELLPADDING=\"10\
880
+ \" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD></TR>\n<TR><TD CELLP\
881
+ ADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD><TD CELLP\
882
+ ADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD><TD CELLP\
883
+ ADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD><TD CELLP\
884
+ ADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD><TD CELLP\
885
+ ADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD><TD CELLP\
886
+ ADDING=\"10\" BGCOLOR=\"#FF0000\"><font color=\"white\">*</font></TD></TR>\n</\
887
+ TABLE>>];\n7 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDE\
888
+ R=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"7\">\n<TR BORDER=\"0\"><TD\
889
+ COLSPAN=\"3\" BORDER = \"0\" > 7</TD></TR><TR><TD BGCOLOR=\"gray\">*</TD><TD \
890
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"whi\
891
+ te\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD\
892
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD>\
893
+ </TR>\n</TABLE>>];\n8 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" \
894
+ CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"8\">\n<TR BORDER=\
895
+ \"0\"><TD COLSPAN=\"3\" BORDER = \"0\" > 8</TD></TR><TR><TD BGCOLOR=\"gray\">*\
896
+ </TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCO\
897
+ LOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD></TR>\
898
+ \n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\
899
+ \">*</TD></TR>\n</TABLE>>];\n9 [shape=box style=invisible label=<\n<TABLE BORD\
900
+ ER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"9\">\n<T\
901
+ R BORDER=\"0\"><TD COLSPAN=\"6\" BORDER = \"0\" > 9</TD></TR><TR><TD BGCOLOR=\
902
+ \"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOL\
903
+ OR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\
904
+ \n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"whit\
905
+ e\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"w\
906
+ hite\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><\
907
+ TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></T\
908
+ D><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR\
909
+ =\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCO\
910
+ LOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"\
911
+ ></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"whit\
912
+ e\"></TD><TD BGCOLOR=\"gray\">*</TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD \
913
+ BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><\
914
+ TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\">*</T\
915
+ D></TR>\n</TABLE>>];\n10 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\
916
+ \" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"10\">\n<TR BOR\
917
+ DER=\"0\"><TD COLSPAN=\"1\" BORDER = \"0\" > 10</TD></TR><TR><TD BGCOLOR=\"#88\
918
+ 0000\">*</TD></TR>\n</TABLE>>];\n2 -> 1\n3 -> 2\n4 -> 3\n5 -> 3\n6 -> 4\n6 -> \
919
+ 5\n7 -> 4\n7 -> 5\n8 -> 4\n8 -> 5\n9 -> 6\n9 -> 7\n9 -> 8\n10 -> 9\n }"
920
+
921
+ # DotString with option idempotentsemilattice
922
+ gap> S := Semigroup(SymmetricInverseMonoid(3), rec(acting := true));;
923
+ gap> DotString(S, rec(idempotentsemilattice := true));
924
+ "//dot\ndigraph DClasses {\nnode [shape=plaintext]\nedge [color=black,arrowhe\
925
+ ad=none]\n1 [shape=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER\
926
+ =\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"1\">\n<TR BORDER=\"0\"><TD \
927
+ COLSPAN=\"1\" BORDER = \"0\" > 1</TD></TR><TR><TD BGCOLOR=\"gray\" PORT=\"e8\"\
928
+ >*</TD></TR>\n</TABLE>>];\n2 [shape=box style=invisible label=<\n<TABLE BORDER\
929
+ =\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\"2\">\n<TR \
930
+ BORDER=\"0\"><TD COLSPAN=\"3\" BORDER = \"0\" > 2</TD></TR><TR><TD BGCOLOR=\"g\
931
+ ray\" PORT=\"e6\">*</TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD>\
932
+ </TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\" PORT=\"e4\">*</TD><\
933
+ TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"\
934
+ white\"></TD><TD BGCOLOR=\"gray\" PORT=\"e7\">*</TD></TR>\n</TABLE>>];\n3 [sha\
935
+ pe=box style=invisible label=<\n<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDI\
936
+ NG=\"10\" CELLSPACING=\"0\" PORT=\"3\">\n<TR BORDER=\"0\"><TD COLSPAN=\"3\" BO\
937
+ RDER = \"0\" > 3</TD></TR><TR><TD BGCOLOR=\"gray\" PORT=\"e3\">*</TD><TD BGCOL\
938
+ OR=\"white\"></TD><TD BGCOLOR=\"white\"></TD></TR>\n<TR><TD BGCOLOR=\"white\">\
939
+ </TD><TD BGCOLOR=\"gray\" PORT=\"e5\">*</TD><TD BGCOLOR=\"white\"></TD></TR>\n\
940
+ <TR><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"white\"></TD><TD BGCOLOR=\"gray\"\
941
+ PORT=\"e2\">*</TD></TR>\n</TABLE>>];\n4 [shape=box style=invisible label=<\n<\
942
+ TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLPADDING=\"10\" CELLSPACING=\"0\" PORT=\
943
+ \"4\">\n<TR BORDER=\"0\"><TD COLSPAN=\"1\" BORDER = \"0\" > 4</TD></TR><TR><TD\
944
+ BGCOLOR=\"gray\" PORT=\"e1\">*</TD></TR>\n</TABLE>>];\n1 -> 2\n2 -> 3\n3 -> 4\
945
+ \nedge [color=blue,arrowhead=none,style=dashed]\n3:e2 -> 4:e1\n3:e3 -> 4:e1\n2\
946
+ :e4 -> 3:e2\n2:e4 -> 3:e3\n3:e5 -> 4:e1\n2:e6 -> 3:e3\n2:e6 -> 3:e5\n2:e7 -> 3\
947
+ :e2\n2:e7 -> 3:e5\n1:e8 -> 2:e4\n1:e8 -> 2:e6\n1:e8 -> 2:e7\n }"
948
+
949
+ # DotSemilatticeOfIdempotents
950
+ gap> S := Semigroup(SymmetricInverseMonoid(3), rec(acting := true));;
951
+ gap> DotSemilatticeOfIdempotents(S);
952
+ "//dot\ngraph graphname {\n node [shape=point]\nranksep=2;\nsubgraph cluster_\
953
+ 1{\n8 \n}\nsubgraph cluster_2{\n6 4 7 \n}\nsubgraph cluster_3{\n3 5 2 \n}\nsub\
954
+ graph cluster_4{\n1 \n}\n2 -- 1\n3 -- 1\n4 -- 2\n4 -- 3\n5 -- 1\n6 -- 3\n6 -- \
955
+ 5\n7 -- 2\n7 -- 5\n8 -- 4\n8 -- 6\n8 -- 7\n }"
956
+ gap> S := Semigroup(SymmetricInverseMonoid(3), rec(acting := false));;
957
+ gap> DotSemilatticeOfIdempotents(S);
958
+ "//dot\ngraph graphname {\n node [shape=point]\nranksep=2;\nsubgraph cluster_\
959
+ 1{\n1 \n}\nsubgraph cluster_2{\n2 3 5 \n}\nsubgraph cluster_3{\n4 6 7 \n}\nsub\
960
+ graph cluster_4{\n8 \n}\n2 -- 1\n3 -- 1\n4 -- 2\n4 -- 3\n5 -- 1\n6 -- 3\n6 -- \
961
+ 5\n7 -- 2\n7 -- 5\n8 -- 4\n8 -- 6\n8 -- 7\n }"
962
+
963
+ # TexString for a transformation
964
+ gap> TexString(Transformation([1, 1, 1]));
965
+ "\\begin{pmatrix}\n 1 & 2 & 3 \\\\\n 1 & 1 & 1\n\\end{pmatrix}"
966
+ gap> TexString(Transformation([1, 1, 1]), 5);
967
+ "\\begin{pmatrix}\n 1 & 2 & 3 & 4 & 5 \\\\\n 1 & 1 & 1 & 4 & 5\n\\end{pmatri\
968
+ x}"
969
+ gap> TexString(Idempotents(FullTransformationMonoid(2)));
970
+ "\\begin{pmatrix}\n 1 & 2 \\\\\n 1 & 2\n\\end{pmatrix}\n\\begin{pmatrix}\n \
971
+ 1 & 2 \\\\\n 1 & 1\n\\end{pmatrix}\n\\begin{pmatrix}\n 1 & 2 \\\\\n 2 & 2\n\
972
+ \\end{pmatrix}"
973
+ gap> TexString(Transformation([1, 1, 1]), 2);
974
+ Error, the 2nd argument (a pos. int.) is less than the degree of the 1st argum\
975
+ ent (a transformation)
976
+
977
+ # Tikz/DotLeft/RightCayleyDigraph
978
+ gap> TikzLeftCayleyDigraph(FullTransformationMonoid(2));
979
+ "\\begin{tikzpicture}[scale=1, auto, \n vertex/.style={circle, draw, thick, f\
980
+ ill=white, minimum size=0.65cm},\n edge/.style={arrows={-angle 90}, thick},\n\
981
+ loop/.style={min distance=5mm,looseness=5,arrows={-angle 90},thick}]\n\n % \
982
+ Vertices . . .\n \\node [vertex] (a) at (0, 0) {};\n \\node at (0, 0) {$a$};\
983
+ \n\n \\node [vertex] (b) at (0, 0) {};\n \\node at (0, 0) {$b$};\n\n \\node\
984
+ [vertex] (c) at (0, 0) {};\n \\node at (0, 0) {$c$};\n\n \\node [vertex] (c\
985
+ b) at (0, 0) {};\n \\node at (0, 0) {$cb$};\n\n % Edges . . .\n \\path[->] \
986
+ (a) edge [loop]\n node {$a$} (a);\n \\path[->] (a) edge [edge] node\
987
+ {$b$} (b);\n \\path[->] (a) edge [edge] node {$c$} (c);\n \\path[->] (b) ed\
988
+ ge [loop]\n node {$a$} (b);\n \\path[->] (b) edge [edge] node {$b$}\
989
+ (a);\n \\path[->] (b) edge [edge] node {$c$} (cb);\n \\path[->] (c) edge [l\
990
+ oop]\n node {$a$} (c);\n \\path[->] (c) edge [loop]\n nod\
991
+ e {$b$} (c);\n \\path[->] (c) edge [loop]\n node {$c$} (c);\n \\pa\
992
+ th[->] (cb) edge [loop]\n node {$a$} (cb);\n \\path[->] (cb) edge [\
993
+ loop]\n node {$b$} (cb);\n \\path[->] (cb) edge [loop]\n \
994
+ node {$c$} (cb);\n\\end{tikzpicture}"
995
+ gap> TikzRightCayleyDigraph(FullTransformationMonoid(2));
996
+ "\\begin{tikzpicture}[scale=1, auto, \n vertex/.style={circle, draw, thick, f\
997
+ ill=white, minimum size=0.65cm},\n edge/.style={arrows={-angle 90}, thick},\n\
998
+ loop/.style={min distance=5mm,looseness=5,arrows={-angle 90},thick}]\n\n % \
999
+ Vertices . . .\n \\node [vertex] (a) at (0, 0) {};\n \\node at (0, 0) {$a$};\
1000
+ \n\n \\node [vertex] (b) at (0, 0) {};\n \\node at (0, 0) {$b$};\n\n \\node\
1001
+ [vertex] (c) at (0, 0) {};\n \\node at (0, 0) {$c$};\n\n \\node [vertex] (c\
1002
+ b) at (0, 0) {};\n \\node at (0, 0) {$cb$};\n\n % Edges . . .\n \\path[->] \
1003
+ (a) edge [loop]\n node {$a$} (a);\n \\path[->] (a) edge [edge] node\
1004
+ {$b$} (b);\n \\path[->] (a) edge [edge] node {$c$} (c);\n \\path[->] (b) ed\
1005
+ ge [loop]\n node {$a$} (b);\n \\path[->] (b) edge [edge] node {$b$}\
1006
+ (a);\n \\path[->] (b) edge [edge] node {$c$} (c);\n \\path[->] (c) edge [lo\
1007
+ op]\n node {$a$} (c);\n \\path[->] (c) edge [edge] node {$b$} (cb);\
1008
+ \n \\path[->] (c) edge [loop]\n node {$c$} (c);\n \\path[->] (cb) \
1009
+ edge [loop]\n node {$a$} (cb);\n \\path[->] (cb) edge [edge] node {\
1010
+ $b$} (c);\n \\path[->] (cb) edge [edge] node {$c$} (c);\n\\end{tikzpicture}"
1011
+ gap> DotRightCayleyDigraph(FullTransformationMonoid(2));
1012
+ "//dot\ndigraph hgn{\nnode [shape=circle]\n1 [label=\"a\"]\n2 [label=\"b\"]\n3\
1013
+ [label=\"c\"]\n4 [label=\"cb\"]\n1 -> 1\n1 -> 2\n1 -> 3\n2 -> 2\n2 -> 1\n2 ->\
1014
+ 3\n3 -> 3\n3 -> 4\n3 -> 3\n4 -> 4\n4 -> 3\n4 -> 3\n}\n"
1015
+ gap> DotLeftCayleyDigraph(FullTransformationMonoid(2));
1016
+ "//dot\ndigraph hgn{\nnode [shape=circle]\n1 [label=\"a\"]\n2 [label=\"b\"]\n3\
1017
+ [label=\"c\"]\n4 [label=\"cb\"]\n1 -> 1\n1 -> 2\n1 -> 3\n2 -> 2\n2 -> 1\n2 ->\
1018
+ 4\n3 -> 3\n3 -> 3\n3 -> 3\n4 -> 4\n4 -> 4\n4 -> 4\n}\n"
1019
+ gap> S := LeftZeroSemigroup(27);;
1020
+ gap> DotLeftCayleyDigraph(S);
1021
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
1022
+ Error, no 2nd choice method found for `DotString' on 1 arguments
1023
+ gap> TikzLeftCayleyDigraph(S);
1024
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
1025
+ Error, no 2nd choice method found for `TikzString' on 1 arguments
1026
+ gap> DotRightCayleyDigraph(S);
1027
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
1028
+ Error, no 2nd choice method found for `DotString' on 1 arguments
1029
+ gap> TikzRightCayleyDigraph(S);
1030
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
1031
+ Error, no 2nd choice method found for `TikzString' on 1 arguments
1032
+
1033
+ # Unbind local variables, auto-generated by etc/tst-unbind-local-vars.py
1034
+ gap> Unbind(S);
1035
+ gap> Unbind(x);
1036
+ gap> Unbind(y);
1037
+
1038
+ #
1039
+ gap> SEMIGROUPS.StopTest();
1040
+ gap> STOP_TEST("Semigroups package: standard/tools/display.tst");