File: CHANGES.md

package info (click to toggle)
gap 4.11.0-4
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 49,632 kB
  • sloc: ansic: 104,958; xml: 47,068; cpp: 11,393; sh: 4,165; perl: 1,652; makefile: 291
file content (5948 lines) | stat: -rw-r--r-- 266,681 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
# GAP - history of changes

## GAP 4.11.0 (February 2020)

These changes are also listed on the
[Wiki page](https://github.com/gap-system/GAP/wiki/gap-4.11-release-notes)

### New features and major changes

- **Removed ability to return objects from many error break loops**

  Many error break loops in GAP used to allow replacing an object in a
  computation by another one. This ability was very tricky to use, and leads
  to computation results that are difficult to reproduce. At the same time,
  supporting this adds complexity to the GAP kernel. We therefore decided to
  remove this feature. Right now, this is not yet fully done, but we removed
  about 3/4 of these, and will remove the rest in a future GAP release. (See
  e.g. PR [#2966](https://github.com/gap-system/gap/pull/2966)).

- **GAP now contains some C++ code**

  Therefore, in order to compile it, you need a C++ compiler. See
  [#2667](https://github.com/gap-system/gap/pull/2667) for the rationale.

- **HPC-GAP**

  The `ward` tool has been decommissioned in PR
  [#2870](https://github.com/gap-system/gap/pull/2870). In the future, guard
  checks will be performed in a different way; however, this code is not yet
  complete (see PR [#2845](https://github.com/gap-system/gap/pull/2845)). In
  the meantime, guard checking is broken. If you are interested in using
  HPC-GAP, please consider helping us to fix this and other issues with it.

- **Syntax trees**

  Functions were added which allow converting a GAP function object into an
  abstract syntax tree which can be parsed and modified from within GAP code
  (see PR [#2628](https://github.com/gap-system/gap/pull/2628)). Moreover, it
  is possible to convert such a syntax tree (possibly after modifying it) back
  into a GAP function object (see PR
  [#3371](https://github.com/gap-system/gap/pull/3371)).

### Improved and extended functionality

- [#1633](https://github.com/gap-system/gap/pull/1633) Allow local variables in test files via `#@local <list of variables to be local>`, and conditional execution of tests via `#@if`, `#@else`, `#@endif`
- [#2520](https://github.com/gap-system/gap/pull/2520) Overhaul tracking of current statement, fixing several bugs where the break loop error message referenced the wrong statement
- [#2772](https://github.com/gap-system/gap/pull/2772) Add support for profiling interpreted code
- [#2773](https://github.com/gap-system/gap/pull/2773) Reorder methods after new implications are added
- [#2830](https://github.com/gap-system/gap/pull/2830) Undocumented functionality has now been extended and documented that allows one to construct the Green's classes of a semigroup that are contained in another Green's class (e.g. constructing the H-classes contained in an R-class)
- [#2856](https://github.com/gap-system/gap/pull/2856) Make `AtExit` a stack and make `DirectoryTemporary` more robust
- [#2869](https://github.com/gap-system/gap/pull/2869) Fix `+` and `*` methods for a `DirectProductElement` and a non-list collection
- [#2873](https://github.com/gap-system/gap/pull/2873) The GAP kernel version is now available in the configure script
- [#2876](https://github.com/gap-system/gap/pull/2876) `IsomorphismTransformationSemigroup` now returns an `IdentityMapping` for a transformation semigroup
- [#2923](https://github.com/gap-system/gap/pull/2923) Extend obsolete to support multiple levels
- [#2936](https://github.com/gap-system/gap/pull/2936) Add back `ViewObj` method for generic fields
- [#2946](https://github.com/gap-system/gap/pull/2946),
  [#2955](https://github.com/gap-system/gap/pull/2955),
- [#2952](https://github.com/gap-system/gap/pull/2952) Add command line option `--bare` to start GAP without even needed packages (developer tool)
- [#2960](https://github.com/gap-system/gap/pull/2960) Add `List` method accepting an iterator and a function
- [#2974](https://github.com/gap-system/gap/pull/2974),
  [#3372](https://github.com/gap-system/gap/pull/3372) Improve many error messages
- [#2985](https://github.com/gap-system/gap/pull/2985) Improve support for custom list object implementations
- [#2998](https://github.com/gap-system/gap/pull/2998),
  [#2999](https://github.com/gap-system/gap/pull/2999),
  [#3007](https://github.com/gap-system/gap/pull/3007) Expose additional functionality related to chars, floats and integers via the libgap API
- [#2900](https://github.com/gap-system/gap/pull/2900) Teach `Test` to abort test if ctrl-C is pressed
- [#2910](https://github.com/gap-system/gap/pull/2910) Add custom `SetDimension` implementation, and call `SetDimension(A,0)` in places creating trivial modules or algebras
- [#2924](https://github.com/gap-system/gap/pull/2924) Improve performance of `NormalizerViaRadical`
- [#3031](https://github.com/gap-system/gap/pull/3031) Improve performance of `ConjugacyClasses` for solvable groups
- [#3053](https://github.com/gap-system/gap/pull/3053) More properties can now be preserved when constructing direct products of semigroups
- [#3075](https://github.com/gap-system/gap/pull/3075) Special redispatch for `Nat.Hom.ByNS` if group is found out to be finite
- [#3076](https://github.com/gap-system/gap/pull/3076) Add `IsAutoGlobal` for testing whether a variable was declared using `DeclareAutoreadableVariables`
- [#3077](https://github.com/gap-system/gap/pull/3077) Allow appending to the command line history
- [#3078](https://github.com/gap-system/gap/pull/3078) Avoid memory issues in solvable conjugacy classes routine
- [#3080](https://github.com/gap-system/gap/pull/3080) Method to compute Hall subgroups of arbitrary finite groups.
- [#3093](https://github.com/gap-system/gap/pull/3093) Methods transforming small matrix groups into permutation groups now work for objects of type `IsMatrixObj`
- [#3099](https://github.com/gap-system/gap/pull/3099) Show a warning when `GroupWithGenerators` called on a domain
- [#3104](https://github.com/gap-system/gap/pull/3104) Extend `IntegratedStraightLineProgram` to the situation that some of the input programs return lists of elements
- [#3118](https://github.com/gap-system/gap/pull/3118) Make `Refinements` an `AtomicRecord` so it can be added to by users
- [#3129](https://github.com/gap-system/gap/pull/3129) `BrauerTableOp` now works for cyclic defect such that all Brauer characters lift to characteristic zero
- [#3168](https://github.com/gap-system/gap/pull/3168) Allow input and output to be mixed in `Test`
- [#3207](https://github.com/gap-system/gap/pull/3207) Display for functions with large literals is improved
- [#3626](https://github.com/gap-system/gap/pull/3626) Customisable names of classes and characters in `Display` of character tables
- [#3621](https://github.com/gap-system/gap/pull/3621) Add `Display` method for PC group
- [#3209](https://github.com/gap-system/gap/pull/3209) Enable backtraces with `--enable-debug`
- [#3226](https://github.com/gap-system/gap/pull/3226) Make `last`, `last2`, `last3`,`time` and `memory_allocated` read-only
- [#3231](https://github.com/gap-system/gap/pull/3231) Speed up `IsConjugate` for `IsNaturalSymmetricGroup`
- [#3247](https://github.com/gap-system/gap/pull/3247) `CloseMutableBasis` now returns `true` if the basis was extended and `false` otherwise
- [#3252](https://github.com/gap-system/gap/pull/3252) Improve gac to preserve argument names of compiled functions
- [#3253](https://github.com/gap-system/gap/pull/3253) `CharacterTableIsoclinic` now works for groups of type p.G.p
- [#3267](https://github.com/gap-system/gap/pull/3267) Change `StructureDescription` of an infinite cyclic group from `C0` to `Z`
- [#3278](https://github.com/gap-system/gap/pull/3278) Improve method for `IsSolvableGroup`
- [#3335](https://github.com/gap-system/gap/pull/3335) Reduce memory usage on windows when running external programs
- [#3365](https://github.com/gap-system/gap/pull/3365) Add `First(list)`, `Last(list)` and `Last(list,func)`
- [#3370](https://github.com/gap-system/gap/pull/3370) Pragmas are now available
- [#3376](https://github.com/gap-system/gap/pull/3376) `SortedList` now accepts a function as the second argument
- [#3383](https://github.com/gap-system/gap/pull/3383) Implement 2-cohomology and module computations for arbitrary finite groups, not just solvable ones, via `TwoCohomologyGeneric`
- [#3384](https://github.com/gap-system/gap/pull/3384) Improve performance of subgroup calculations (e.g. via `ConjugacyClassesSubgroups`) in some cases
- [#3385](https://github.com/gap-system/gap/pull/3385) Add `FlipBlist`, `ClearAllBlist`, `SetAllBlist`
- [#3387](https://github.com/gap-system/gap/pull/3387) Add `ShowUsedInfoClasses`
- [#3394](https://github.com/gap-system/gap/pull/3394) Make the descriptions for TNUMs (which we print in some error messages) more user friendly
- [#3399](https://github.com/gap-system/gap/pull/3399) Support floating point numbers when specifying how much memory GAP should use, for example "-o 2.5G"
- [#3420](https://github.com/gap-system/gap/pull/3420) Give more library methods human-readable names. These are used when profiling
- [#3423](https://github.com/gap-system/gap/pull/3423) Improve gac to support calls to custom function objects
- [#3430](https://github.com/gap-system/gap/pull/3430) `NameFunction` now is an attribute so that custom function objects can implement support for it
- [#3454](https://github.com/gap-system/gap/pull/3454) Improve error handling for `Image`, `Images`, `PreImage` and `PreImages`
- [#3455](https://github.com/gap-system/gap/pull/3455) New function `DirectProductFamily`
- [#3459](https://github.com/gap-system/gap/pull/3459) Add `ShowDeclarationsOfOperation` helper
- [#3473](https://github.com/gap-system/gap/pull/3473) Improve an `AsList` method for domains with stored `GeneratorsOfDomain`
- [#3483](https://github.com/gap-system/gap/pull/3483) Change the pre-set memory limit default from 2GB to 3/4 of physical memory. Use the `-o` option if you want to change this limit.
- [#3501](https://github.com/gap-system/gap/pull/3501) `MaximalSubgroups` now works even if `tomlib` is not available
- [#3504](https://github.com/gap-system/gap/pull/3504) `make bootstrap` now uses `curl` if `wget` is unavailable under macOS
- [#3516](https://github.com/gap-system/gap/pull/3516) Improve performance of the Julia GC integration
- [#3520](https://github.com/gap-system/gap/pull/3520) Clarify when *nonabelian* simple groups are meant in the documentation
- [#3522](https://github.com/gap-system/gap/pull/3522) Add `IsNonabelianSimpleGroup`
- [#3542](https://github.com/gap-system/gap/pull/3542) Add `--add-package-config-<PACKAGENAME>="<CONFIG_ARGS>"` option to `BuildPackages.sh` where `<CONFIG_ARGS>` are passed through to the configure script of package `<PACKAGENAME>`
- [#3543](https://github.com/gap-system/gap/pull/3543) Add `PositionSortedBy`
- [#3551](https://github.com/gap-system/gap/pull/3551) Add new kernel operations `ELM_MAT`, `ASS_MAT`
- [#3513](https://github.com/gap-system/gap/pull/3513) Use `posix_spawn` in `iostreams` if available
- [#3554](https://github.com/gap-system/gap/pull/3554) Add basic libgap APIs for working with matrices
- [#3564](https://github.com/gap-system/gap/pull/3564) Add `WhereWithVars`, an extended version of `Where` which prints the values of all arguments and locals
- [#3566](https://github.com/gap-system/gap/pull/3566) Optimise operations involving identity permutations, improve printing of permutations
- [#3630](https://github.com/gap-system/gap/pull/3630) Speed up `MaximalAbelianQuotient` for subgroups of fp groups
- [#3579](https://github.com/gap-system/gap/pull/3579) Speed up writing to global variables
- [#3592](https://github.com/gap-system/gap/pull/3592) The values of computed attributes will no longer be stored automatically in mutable attribute-storing objects
- [#3604](https://github.com/gap-system/gap/pull/3604) Add `EuclideanDegree` and `QuotientRemainder` for Z/nZ
- [#3619](https://github.com/gap-system/gap/pull/3619) `Randomize` is now documented, and its definition changed: **note** that it is now `Randomize(random_source, obj)`
- [#3620](https://github.com/gap-system/gap/pull/3620) `make html` can be used to compile only HTML versions of the GAP manuals, without a PDF.
- [#3683](https://github.com/gap-system/gap/pull/3683) Add `etc/Makefile.gappkg`, for use in the build system of GAP package with kernel extensions
- [#3690](https://github.com/gap-system/gap/pull/3690) Improve `NullspaceModQ` to support arbitrary moduli, and renamed it to `NullspaceModN` (the old name is still available as a synonym)
- [#3711](https://github.com/gap-system/gap/pull/3711) Adjust `TestPackage` to return information about the test result
- [#3715](https://github.com/gap-system/gap/pull/3715) Allow HPC-GAP to run as a forkable server process
- [#3745](https://github.com/gap-system/gap/pull/3745) Add a new kernel header `gap_all.h` for use by package authors instead of `compiled.h`
- [#3746](https://github.com/gap-system/gap/pull/3746) Allow package build systems to detect GAP version by inserting `GAP_VERSION` into `sysinfo.gap`
- [#3606](https://github.com/gap-system/gap/pull/3606) Add BindingsOfClosure helper (_Work in progress_)


### Changed documentation

- [#3886](https://github.com/gap-system/gap/pull/3886) Convert `Changes` manuals book into markdown
- [#2798](https://github.com/gap-system/gap/pull/2798) Clarify `MemoizePosIntFunction` documentation
- [#2946](https://github.com/gap-system/gap/pull/2946) Document what a "small integer" resp. "immediate integer" is
- [#2953](https://github.com/gap-system/gap/pull/2953) Document that `PermutationGModule` works not just for finite fields
- [#3101](https://github.com/gap-system/gap/pull/3101) Remove Section 87.2-5 on "Avoiding multiplication of permutations" in the reference manual (the described functionality does not actually work)
- [#3348](https://github.com/gap-system/gap/pull/3348) Add explanation for a workaround regarding the ^-key on OSX to `INSTALL.md`
- [#3358](https://github.com/gap-system/gap/pull/3358) Document the two-argument version of `Set`
- [#3360](https://github.com/gap-system/gap/pull/3360) Improve discoverability of `rewriteToFile` option in `Test`
- [#3363](https://github.com/gap-system/gap/pull/3363) Add some information in the documentation of `IsPrimitive`.
- [#3374](https://github.com/gap-system/gap/pull/3374) Document that InputTextFile should not be used for binary files
- [#3449](https://github.com/gap-system/gap/pull/3449) Clarify and corrects documentation of `CompositionMapping`
- [#3453](https://github.com/gap-system/gap/pull/3453) Improve documentation of `GeneratorsOfDomain`
- [#3468](https://github.com/gap-system/gap/pull/3468) New `PrintObj` method for general domains which know their `GeneratorsOfDomain`
- [#3469](https://github.com/gap-system/gap/pull/3469) `DeclareCategoryCollections`, `constructors` are now documented and parts of the reference manual are refactored
- [#3472](https://github.com/gap-system/gap/pull/3472) Document `IsRangeRep` and improve the documentation of `ConvertToRangeRep`, `IsRange`, and the section `Ranges`
- [#3529](https://github.com/gap-system/gap/pull/3529) Document `CharacteristicSubgroups`
- [#3591](https://github.com/gap-system/gap/pull/3591) Improve parts of the documentation in Chapter 41.
- [#3615](https://github.com/gap-system/gap/pull/3615) Document basic representations of objects (`IsInternalRep`, `IsDataObjectRep`, `IsComponentObjectRep`, `IsPositionalObjectRep`, `IsAttributeStoringRep`, `IsPlistRep`)
- [#3612](https://github.com/gap-system/gap/pull/3612) Improves the documentation of `Quotient` to make it sensible for non-commutative rings, and rings with zero divisors

### Fixed bugs that could lead to crashes

- [#3151](https://github.com/gap-system/gap/pull/3151) Fix crash when `ApplicableMethod` is called incorrectly
- [#3221](https://github.com/gap-system/gap/pull/3221) Handle infinite recursion in attribute methods
- [#3491](https://github.com/gap-system/gap/pull/3491) Fix crashes when passing invalid arguments to functions for records: `\.`, `IsBound\.`, `Unbind\.` and `\.\:\=`
- [#3738](https://github.com/gap-system/gap/pull/3738) Fix bug in `CycleStructurePerm` for a single cycle of length 2^16 that caused wrong answers and memory corruption

### Fixed bugs that could lead to incorrect results

- [#2938](https://github.com/gap-system/gap/pull/2938) Fix bug related to `ImaginaryPart` for quaternion algebras
- [#3103](https://github.com/gap-system/gap/pull/3103) This fixes [#3097](https://github.com/gap-system/gap/issues/3097), a problem with `Order` of automorphism
    and [#3100](https://github.com/gap-system/gap/issues/3100), a problem with `GroupHomomorphismByImages`
- [#3392](https://github.com/gap-system/gap/pull/3392) Prevent blist functions that modify an argument in-place (such as `UniteBlist`) from modifying immutable blists
- [#3522](https://github.com/gap-system/gap/pull/3522) `IsSimpleGroup` does not implies `IsAlmostSimpleGroup` anymore
- [#3575](https://github.com/gap-system/gap/pull/3575) Fix bug in calculating x/p for an integer x and permutation p, if p has been 'trimmed'.
- [#3603](https://github.com/gap-system/gap/pull/3603) Fix bug where the result of `StandardAssociateUnit` could be not a unit.
- [#3611](https://github.com/gap-system/gap/pull/3611) Fix `StandardAssociateUnit` for polynomial rings to return a polynomial, not an element of the coefficient ring
- [#3646](https://github.com/gap-system/gap/pull/3646) Fix bug in `MinimalFaithfulPermutationDegree` that reported a too large degree for certain groups representable as subdirect product
- [#3662](https://github.com/gap-system/gap/pull/3662) Fix bug in `MaximalSubgroupClassReps` that could lead to a wrong result
- [#3689](https://github.com/gap-system/gap/pull/3689) Fix bug in `BlistList` for two ranges that could lead to wrong results
- [#3690](https://github.com/gap-system/gap/pull/3690) Fix bug `NullspaceModQ` that could lead to wrong results
- [#3733](https://github.com/gap-system/gap/pull/3733) Fix `ConstituentsOfCharacter` for Brauer character: its result, when called with a Brauer character as its only argument, was not reliable. (This bug has been reported by Gabriel Navarro.) Also, calling it with a Brauer character table and a virtual Brauer character caused error messages

### Fixed bugs that could lead to break loops

- [#3038](https://github.com/gap-system/gap/pull/3038) Fix `RankOfPartialPermSemigroup` for partial perm groups with empty `GeneratorsOfGroup`
- [#3052](https://github.com/gap-system/gap/pull/3052) Fix the viewing of empty transformation semigroups
- [#3110](https://github.com/gap-system/gap/pull/3110) Workaround for Issue [#3055](https://github.com/gap-system/gap/issues/3055) and fix for `GQuotient`
- [#3142](https://github.com/gap-system/gap/pull/3142) Fix `Int` and `Rat` for float values `nan`, `inf`, `-inf`
- [#3192](https://github.com/gap-system/gap/pull/3192) Catch some corner cases for trivial group
- [#3331](https://github.com/gap-system/gap/pull/3331) Fix an issue with `IsomorphismGroups` if one group is finite and the other is infinite.
- [#3375](https://github.com/gap-system/gap/pull/3375) Improve warnings when using tabs in continuations
- [#3401](https://github.com/gap-system/gap/pull/3401) `SSortedLists` is not required to be homogeneous anymore
- [#3437](https://github.com/gap-system/gap/pull/3437) Fix a bug with in calculating `SubdirectProducts` which could sometimes fail on valid input.
- [#3559](https://github.com/gap-system/gap/pull/3559) Fix `IsUpperTriangularMat` for non-square matrices
- [#3571](https://github.com/gap-system/gap/pull/3571) Fix `NrCols` and `NumberColumns` for empty matrices in `IsMatrix`
- [#3763](https://github.com/gap-system/gap/pull/3763) Fix bug in `IrrConlon` leading to unexpected errors
- [#3865](https://github.com/gap-system/gap/pull/3865) Fix the code setting up a subgroup data structure by the solvable radical method, which could lead to unexpected errors

### Other fixed bugs

- [#2595](https://github.com/gap-system/gap/pull/2595) Fix missing syntax warning for using undefined global variable
- [#2756](https://github.com/gap-system/gap/pull/2756) Reject invalid AND-filters such as `Center and IsAssociative`
- [#2903](https://github.com/gap-system/gap/pull/2903) Kernel: make `OnLeftInverse` use `LQUO`
- [#2908](https://github.com/gap-system/gap/pull/2908) Fix profiling when `IO_Fork` from the `IO package` is used
- [#2977](https://github.com/gap-system/gap/pull/2977) This fixes an infinite recursion if the rank of `IsGroup` and `IsFinite` becomes very large
- [#3189](https://github.com/gap-system/gap/pull/3189) Ensure `IsHomogeneousList("")` return `true`
- [#3229](https://github.com/gap-system/gap/pull/3229) Fix the fact that the `^^^^` markers on unbound globals would point to the wrong place.
- [#3320](https://github.com/gap-system/gap/pull/3320) Fix the problem whereby if GAP on windows sees a `\r`, it will remove the next `\n`, no matter how far away it is.
- [#3325](https://github.com/gap-system/gap/pull/3325) Fix libgap's `GAP_ENTER_DEBUG` macro (using it previously lead to a linker error)
- [#3390](https://github.com/gap-system/gap/pull/3390) Corrects input limit on 64Bit `SetCyclotomicsLimit`
- [#3395](https://github.com/gap-system/gap/pull/3395) `PrintObj(1.)` now correctly prints `1.`
- [#3400](https://github.com/gap-system/gap/pull/3440) Fix the line breaking hints in the `ViewString` method for finite lists.
- [#3428](https://github.com/gap-system/gap/pull/3428) Fix GNU readline detection on OpenBSD, and make the configure test for it more robust
- [#3444](https://github.com/gap-system/gap/pull/3444) Remove obsolete `-a` command line option
- [#3481](https://github.com/gap-system/gap/pull/3481) Fix bug which caused code which calls `PrintCSV` many times with a filename to fail eventually
- [#3580](https://github.com/gap-system/gap/pull/3580) Fix potential infinite loop or recursion when computing the size of infinite cyclic groups
- [#3847](https://github.com/gap-system/gap/pull/3847) Fix printing of certain words in free groups (if subexpressions occur as powers iteratedly then nonsense could be displayed, but the data internally was correct)
- [#3610](https://github.com/gap-system/gap/pull/3610) Invalid use of `/` on ZmodZ (e.g. dividing a unit by a zero divisor) will produce an `Error`
- [#3612](https://github.com/gap-system/gap/pull/3612) fixes some methods for `Quotient`, in particular `Quotient(R, x, Zero(R))` now returns `fail`

### Removed or obsolete functionality

- [#2237](https://github.com/gap-system/gap/pull/2237) The undocumented (!) functions `InfoRead1` and `InfoRead2` are obsolete
- [#2237](https://github.com/gap-system/gap/pull/2237),
  [#2961](https://github.com/gap-system/gap/pull/2961) Remove the obsolete synonyms `MutableIdentityMat` (for `IdentityMat`), `MutableNullMat` (for `NullMat`) and `SHALLOW_SIZE` (for `SIZE_OBJ`), `DEBUG_LOADING` (for `GAPInfo.CommandLineOptions.D`)
- [#2919](https://github.com/gap-system/gap/pull/2919) The undocumented (!) function `SetFeatureObj` is obsolete; use `SetFilterObj` resp. `ResetFilterObj` instead.
- [#3185](https://github.com/gap-system/gap/pull/3185) `(Un)HideGlobalVariables` is obsolete
- [#3269](https://github.com/gap-system/gap/pull/3269) `TemporaryGlobalVarName` is obsolete
- [#3409](https://github.com/gap-system/gap/pull/3409) Remove `BANNER`, `QUIET`

### Packages

- [#3215](https://github.com/gap-system/gap/pull/3215) Issue tracker, maintainers and contributors are printed in package banners
- [#3286](https://github.com/gap-system/gap/pull/3286) Teach `ValidatePackageInfo` about the optional `License` field

### Other changes

- [#2709](https://github.com/gap-system/gap/pull/2709) Rename `MultRowVector` to `MultVector` (the old name is still supported, but marked as obsolete)
- [#2729](https://github.com/gap-system/gap/pull/2729) Rename `QuaternionGroup` to `DicyclicGroup`, document `IsDihedralGroup` and `IsQuaternionGroup`
- [#3010](https://github.com/gap-system/gap/pull/3010) Read `lib/transatl.g` before any `gap.ini` file, when GAP is loaded
- [#3406](https://github.com/gap-system/gap/pull/3406) Remove RXVT-shell support for Windows
- [#3480](https://github.com/gap-system/gap/pull/3480) `BuildPackages.sh` now executes `make clean` before full build

### New packages redistributed with GAP

- [AGT](https://gap-packages.github.io/agt/) A library of strongly regular graphs on at most 40 vertices, and functionality to inspect combinatorial and algebraic properties of graphs in GRAPE format, by Rhys J. Evans
- [CddInterface](https://homalg-project.github.io/CddInterface/) GAP interface to cdd, by Kamal Saleh
- [DifSets](https://dylanpeifer.github.io/difsets/)  Enumeration of the difference sets (up to equivalence) in groups, by Dylan Peifer
- [ferret](https://gap-packages.github.io/ferret/) C++ reimplementation of Jeffery Leon’s Partition Backtrack framework for solving problems in permutation groups, by Christopher Jefferson
- [images](https://gap-packages.github.io/images/) Finding minimal and canonical images in permutation groups, by Christopher Jefferson, Markus Pfeiffer, Rebecca Waldecker, Eliza Jonauskyte
- [NCOnvex](https://homalg-project.github.io/NConvex/) Polyhedral constructions and computations for cones, polyhedrons, polytopes and fans, by Kamal Saleh, Sebastian Gutsche
- [NoCK](https://pjastr.github.io/NoCK/) Computation of Tolzanos’s obstruction for compact Clifford-Klein forms, by Maciej Bocheński, Piotr Jastrzębski, Anna Szczepkowska, Aleksy Tralle, Artur Woike
- [RepnDecomp](https://gap-packages.github.io/RepnDecomp/) Algorithms for decomposing linear representations of finite groups, by Kaashif Hymabaccus

## GAP 4.10.2 (June 2019)

### Improvements in the experimental way to allow 3rd party code to link GAP as a library:

  - Add `GAP_AssignGlobalVariable` and
    `GAP_IsNameOfWritableGlobalVariable` to the **libGAP** API
    ([#3438](https://github.com/gap-system/gap/pull/3438)).

### Fixes in the experimental support for using the **Julia** garbage collector:

  - Fix of a problem where the Julia GC during a partial sweep frees
    some, but not all objects of an unreachable data structure, and also
    may erroneously try to mark the deallocated objects
    ([#3412](https://github.com/gap-system/gap/pull/3412)).

  - Fix stack scanning for the Julia GC when GAP is used as a library
    ([#3432](https://github.com/gap-system/gap/pull/3432)).

### Fixed bugs that could lead to crashes:

  - Fix a bug in `TransformationListList` which could cause a crash
    ([#3463](https://github.com/gap-system/gap/pull/3463)).

### Fixed bugs that could lead to incorrect results:

  - Fix a bug in `ClassPositionsOfLowerCentralSeries`. (Reported by Frieder
    Ladisch) ([#3321](https://github.com/gap-system/gap/pull/3321)).

  - Fix a dangerous bug in the comparison of large negative integers,
    introduced in GAP 4.10.1: if `x` and `y` were equal, but not
    identical, large negative numbers then `x < y` returned `true`
    instead of `false`.
    ([#3478](https://github.com/gap-system/gap/pull/3478)).

### Fixed bugs that could lead to break loops:

  - If the group has been obtained as subgroup from a Fitting
    free/solvable radical computation, the data is inherited and might
    not guarantee that the factor group really is Fitting free. Added a
    check and an assertion to catch this situation
    ([#3154](https://github.com/gap-system/gap/pull/3154)).

  - Fix declaration of sparse action homomorphisms
    ([#3281](https://github.com/gap-system/gap/pull/3281)).

  - `LatticeViaRadical` called `ClosureSubgroupNC` assuming that the
    parent contained all generators. It now calls `ClosureSubgroup`
    instead, since this can not be always guaranteed (this could
    happen, for example, in perfect subgroup computation). Also
    added an assertion to `ClosureSubgroupNC` to catch this
    situation in other cases. (Reported by Serge Bouc)
    ([#3397](https://github.com/gap-system/gap/pull/3397)).

  - Fix a "method not found" error in `SubdirectProduct`
    ([#3485](https://github.com/gap-system/gap/pull/3485)).

### Other fixed bugs:

  - Fix corner case in modified Todd-Coxeter algorithm when relator is
    trivial ([#3311](https://github.com/gap-system/gap/pull/3311)).

### New and updated packages since GAP 4.10.1

GAP 4.10.2 distribution contains 145 packages, including updated
versions of 55 packages from GAP 4.10.1 distribution,

A new package **MonoidalCategories** by Mohamed Barakat, Sebastian
Gutsche and Sebastian Posur have been added to the distribution. It is
based on the **CAP** package and implements monoidal structures for
**CAP**.

Unfortunately we had to withdraw the **QaoS** package from distribution
of GAP, as the servers it crucially relies on for its functionality have
been permanently retired some time ago and are not coming back
([details](https://github.com/gap-packages/qaos/issues/13)).


## GAP 4.10.1 (February 2019)

### Fixes in the experimental way to allow 3rd party code to link GAP as a library:

  - Do not start a session when loading workspace if `--nointeract`
    command line option is used
    ([#2840](https://github.com/gap-system/gap/pull/2840)).

  - Add prototype for `GAP_Enter` and `GAP_Leave` macros
    ([#3096](https://github.com/gap-system/gap/pull/3096)).

  - Prevent infinite recursions in `echoandcheck` and `SyWriteandcheck`
    ([#3102](https://github.com/gap-system/gap/pull/3102)).

  - Remove `environ` arguments and `sysenviron`
    ([#3111](https://github.com/gap-system/gap/pull/3111)).

### Fixes in the experimental support for using the Julia garbage collector:

  - Fix task scanning for the Julia GC
    ([#2969](https://github.com/gap-system/gap/pull/2969)).

  - Fix stack marking for the Julia GC
    ([#3199](https://github.com/gap-system/gap/pull/3199)).

  - Specify the Julia binary instead of the Julia prefix
    ([#3243](https://github.com/gap-system/gap/pull/3243)).

  - Export Julia `CFLAGS`, `LDFLAGS`, and `LIBS` to `sysinfo.gap`
    ([#3248](https://github.com/gap-system/gap/pull/3248)).

  - Change `MPtr` Julia type of GAP objects to be a subtype of the
    abstract Julia `GapObj` type provided by the Julia package
    `GAPTypes.jl`
    ([#3497](https://github.com/gap-system/gap/pull/3497)).

### Improved and extended functionality:

  - Always generate `sysinfo.gap` (previously, it was only generated if
    the "compatibility mode" of the build system was enabled)
    ([#3042](https://github.com/gap-system/gap/pull/3042)).

  - Add support for writing to `ERROR_OUTPUT` from kernel code
    ([#3043](https://github.com/gap-system/gap/pull/3043)).

  - Add `make check`
    ([#3285](https://github.com/gap-system/gap/pull/3285)).

### Changed documentation:

  - Fix documentation of `NumberFFVector`
    and add an example
    ([#3079](https://github.com/gap-system/gap/pull/3079)).

### Fixed bugs that could lead to crashes:

  - Fix readline crash when using autocomplete with
    `colored-completion-prefix` turned on in Bash
    ([#2991](https://github.com/gap-system/gap/pull/2991)).

  - Fix overlapping `memcpy` in `APPEND_LIST`
    ([#3216](https://github.com/gap-system/gap/pull/3216)).

### Fixed bugs that could lead to incorrect results:

  - Fix bugs in the code for partial permutations
    ([#3220](https://github.com/gap-system/gap/pull/3220)).

  - Fix a bug in `Gcd` for polynomials not returning standard
    associates, introduced in GAP 4.10.0
    ([#3227](https://github.com/gap-system/gap/pull/3227)).

### Fixed bugs that could lead to break loops:

  - Change `GroupWithGenerators` to
    accept collections again (to avoid regressions in code that relied
    on this undocumented behavior)
    ([#3095](https://github.com/gap-system/gap/pull/3095)).

  - Fix `ShallowCopy` for for a Knuth-Bendix
    rewriting system
    ([#3128](https://github.com/gap-system/gap/pull/3128)). (Reported
    by Ignat Soroko)

  - Fix `IsMonomialMatrix` to work with
    compressed matrices
    ([#3149](https://github.com/gap-system/gap/pull/3149)). (Reported
    by Dominik Bernhardt)

### Removed or obsolete functionality:

  - Disable `make install` (previously it displayed a warning which
    often got ignored)
    ([#3005](https://github.com/gap-system/gap/pull/3005)).

### Other fixed bugs:

  - Fix some errors which stopped triggering a break loop
    ([#3013](https://github.com/gap-system/gap/pull/3013)).

  - Fix compiler error with GCC 4.4.7
    ([#3026](https://github.com/gap-system/gap/pull/3026)).

  - Fix string copying logic
    ([#3071](https://github.com/gap-system/gap/pull/3071)).

### New and updated packages since GAP 4.10.0

GAP 4.10.1 distribution contains 145 packages, including updated
versions of 35 packages from GAP 4.10.0 distribution, and also the
following five new packages:

  - **MajoranaAlgebras** by Markus Pfeiffer and Madeleine Whybrow, which
    constructs Majorana representations of finite groups.

  - **PackageManager** by Michael Torpey, providing a collection of
    functions for installing and removing GAP packages, with the
    eventual aim of becoming a full pip-style package manager for the
    GAP system.

  - **Thelma** by Victor Bovdi and Vasyl Laver, implementing algorithms
    to deal with threshold elements.

  - **walrus** by Markus Pfeiffer, providing methods for proving
    hyperbolicity of finitely presented groups in polynomial time.

  - **YangBaxter** by Leandro Vendramin and Alexander Konovalov, which
    provides functionality to construct classical and skew braces, and
    also includes a database of classical and skew braces of small
    orders.


## GAP 4.10.0 (November 2018)

### New features and major changes

  - **Reduce impact of immediate methods**
    GAP allows declaring so-called "immediate methods". The idea is
    that these are very simple and fast methods which are immediately
    called if information about an object becomes known, in order to
    perform some quick deduction. For example, if the order of a group
    is set, there might be immediate methods which update the filters
    `IsFinite` and `IsTrivial` of the group suitably.

    While this can be very elegant and useful in interactive GAP
    sessions, the overhead for running these immediate methods and
    applying their results can become a major factor in the runtime of
    complex computations that create thousands or millions of objects.

    To address this, various steps were taken:

      - some immediate methods were turned into regular methods;

      - a special handlers for `SetSize` was created that deduces
        properties which previously were taken care of by immediate
        methods;

      - some immediate methods were replaced by implications (set via
        `InstallTrueMethod`), a mechanism that essentially adds zero
        overhead, unlike immediate methods;

      - various group constructors were modified to precompute and
        preset properties of freshly created group objects, to avoid
        triggering immediate methods for these.

    As a result of these and other changes, consider the following
    example; with GAP 4.9, it takes about 130 seconds on one test
    system, while with GAP 4.10 it runs in about 22 seconds, i.e.,
    more than six times
        faster.

        G:=PcGroupCode( 741231213963541373679312045151639276850536621925972119311,11664);;
        IsomorphismGroups(G,PcGroupCode(CodePcGroup(G),Size(G)))<>fail;

    Relevant pull requests and issues:
    [#2386](https://github.com/gap-system/gap/pull/2386),
    [#2387](https://github.com/gap-system/gap/pull/2387),
    [#2522](https://github.com/gap-system/gap/pull/2522).

  - **Change definition of `IsPGroup` to *not* require finiteness**
    This is a small change in terms of amount of code changed, but we
    list it here as it has a potential (albeit rather unlikely) impact
    on the code written by GAP users: In the past, the GAP
    manual entry for `IsPGroup` defined p-groups as being finite groups,
    which differs from the most commonly used definition for p-groups.
    Note however that there was not actual implication installed from
    `IsPGroup` to `IsFinite`, so it always was possible to actually
    created infinite groups in the filter `IsPGroup`. In GAP 4.10,
    we adjusted (in
    [#1545](https://github.com/gap-system/gap/pull/1545)) the
    documentation for `IsPGroup` to the commonly accepted definition for
    p-groups. In addition, code in the GAP library and in packages
    using `IsPGroup` was audited and (in a very few cases) adjusted to
    explicitly check `IsFinite` (see e.g.
    [#2866](https://github.com/gap-system/gap/pull/2866)).

  - **Experimental support for using the **Julia** garbage collector**
    It is now possible to use the garbage collector of the [Julia
    language](https://julialang.org) instead of GAP's traditional
    **GASMAN** garbage collector. This is partly motivated by a desire
    to allow tight integration with GAP and **Julia** in the future.
    Warning: right now, this is *slower*, and also requires a patched
    version of **Julia**.

    Relevant pull requests:
    [#2092](https://github.com/gap-system/gap/pull/2092),
    [#2408](https://github.com/gap-system/gap/pull/2408),
    [#2461](https://github.com/gap-system/gap/pull/2461),
    [#2485](https://github.com/gap-system/gap/pull/2485),
    [#2495](https://github.com/gap-system/gap/pull/2495),
    [#2672](https://github.com/gap-system/gap/pull/2672),
    [#2688](https://github.com/gap-system/gap/pull/2688),
    [#2793](https://github.com/gap-system/gap/pull/2793),
    [#2904](https://github.com/gap-system/gap/pull/2904),
    [#2905](https://github.com/gap-system/gap/pull/2905),
    [#2931](https://github.com/gap-system/gap/pull/2931).

  - ****libGAP** (work in progress)**
    We now provide a experimental way to allow 3rd party code to link
    GAP as a library; this is based on the **libGAP** code by
    [SageMath](https://www.sagemath.org), but different: while we aim to
    provide the same functionality, we do not rename any symbols, and we
    do not provide the same API. We hope that a future version of
    **SageMath** can drop its custom modifications for GAP and use
    this interface instead. Work is underway to achieve this goal. If
    you are interested in this kind of interface, please get in touch
    with us to help us improve it. See also [this
    email](https://mail.gap-system.org/pipermail/gap/2018-August/001123.html).

    To get an idea how **libGAP** works, you can configure GAP as
    normal, and then execute `make testlibgap` which will build a small
    program that uses some of the existing API and links GAP.
    Relevant pull requests:

      - [#1690](https://github.com/gap-system/gap/pull/1690) Add a
        callback to `FuncJUMP_TO_CATCH`

      - [#2528](https://github.com/gap-system/gap/pull/2528) Add
        `IsLIBGAP` constant

      - [#2702](https://github.com/gap-system/gap/pull/2702) Add
        GAP kernel API

      - [#2723](https://github.com/gap-system/gap/pull/2723) Introduce
        command line options `--norepl` and `--nointeract`

### Improved and extended functionality

  - [#2041](https://github.com/gap-system/gap/pull/2041) Teach
    `FrattiniSubgroup` methods to check for solvability

  - [#2053](https://github.com/gap-system/gap/pull/2053) Faster
    computation of modular inverses of integers

  - [#2057](https://github.com/gap-system/gap/pull/2057) Various
    changes, including:

      - Improve computation of automorphism groups for fp groups (we
        still recommend to instead first convert the group to a
        computationally nice representation, such as a perm or pc group)

      - Add `MinimalFaithfulPermutationDegree` attribute for finite groups

      - Improve performance of `GQuotients(F,G)` when `F` is an fp group

      - Some other performance and documentation tweaks

  - [#2061](https://github.com/gap-system/gap/pull/2061),
    [#2086](https://github.com/gap-system/gap/pull/2086),
    [#2159](https://github.com/gap-system/gap/pull/2159),
    [#2306](https://github.com/gap-system/gap/pull/2306) Speed up
    `GcdInt`, `LcmInt`, `PValuation`, `RootInt`, `SmallestRootInt`,
    `IsPrimePowerInt`

  - [#2063](https://github.com/gap-system/gap/pull/2063) Teach GAP
    that BPSW pseudo primes less than 2^64 are all known to be prime
    (the previous limit was 10^13)

  - [#2091](https://github.com/gap-system/gap/pull/2091) Refactor
    `DeclareAttribute` and `NewAttribute` (arguments are now verified
    stricter)

  - [#2115](https://github.com/gap-system/gap/pull/2115),
    [#2204](https://github.com/gap-system/gap/pull/2204),
    [#2272](https://github.com/gap-system/gap/pull/2272) Allow
    (optionally) passing a random source to many more `Random` methods
    than before, and also to `RandomList`

  - [#2136](https://github.com/gap-system/gap/pull/2136) Add
    `shortname` entry to record returned by
    `IsomorphismTypeInfoFiniteSimpleGroup`

  - [#2181](https://github.com/gap-system/gap/pull/2181) Implement
    `Union(X,Y)`, where `X` and `Y` are in `PositiveIntegers`,
    `NonnegativeIntegers`, `Integers`, `GaussianIntegers`, `Rationals`,
    `GaussianRationals`, `Cyclotomics`, at least where a suitable output
    object exists (we already provided `Intersection(X,Y)` for a long
    time)

  - [#2185](https://github.com/gap-system/gap/pull/2185) Implement
    `IsCentral(M,x)`, where `M` is a magma, monoid, group, ring,
    algebra, etc. and `x` an element of `M` (the documentation already
    claimed that these exist for a long time)

  - [#2199](https://github.com/gap-system/gap/pull/2199) Optimize
    true/false conditions when coding if-statements

  - [#2200](https://github.com/gap-system/gap/pull/2200) Add
    `StringFormatted`, `PrintFormatted`, `PrintToFormatted`

  - [#2222](https://github.com/gap-system/gap/pull/2222) Turn hidden
    implications into actual implications

  - [#2223](https://github.com/gap-system/gap/pull/2223) Add operation
    `PositionsBound` which returns the set
    of all bound positions in a given list

  - [#2224](https://github.com/gap-system/gap/pull/2224),
    [#2243](https://github.com/gap-system/gap/pull/2243),
    [#2340](https://github.com/gap-system/gap/pull/2340) Improve
    `ShowImpliedFilters` output

  - [#2225](https://github.com/gap-system/gap/pull/2225) Improve
    `LocationFunc` for kernel function

  - [#2232](https://github.com/gap-system/gap/pull/2232) Make
    `ValueGlobal` faster

  - [#2242](https://github.com/gap-system/gap/pull/2242) Add global
    function `CycleFromList`

  - [#2244](https://github.com/gap-system/gap/pull/2244) Make `rank`
    argument to `InstallImmediateMethod` optional, similar to
    `InstallMethod`

  - [#2274](https://github.com/gap-system/gap/pull/2274) Ensure uniform
    printing of machine floats `nan`, `inf`, `-inf` across different
    operating systems

  - [#2287](https://github.com/gap-system/gap/pull/2287) Turn
    `IsInfiniteAbelianizationGroup` into a property and add some
    implications involving it

  - [#2293](https://github.com/gap-system/gap/pull/2293),
    [#2602](https://github.com/gap-system/gap/pull/2602),
    [#2718](https://github.com/gap-system/gap/pull/2718) Improved and
    documented various kernel and memory debugging facilities (requires
    recompiling GAP with `--enable-debug`, `--enable-valgrind` resp.
    `--enable-memory-checking`)

  - [#2308](https://github.com/gap-system/gap/pull/2308) Method
    selection code was rewritten from GAP to C

  - [#2326](https://github.com/gap-system/gap/pull/2326) Change
    `SimpleGroup` to perform better input validation and improve or
    correct error message for type 2E

  - [#2375](https://github.com/gap-system/gap/pull/2375) Make `last2`
    and `last3` available in break loops

  - [#2383](https://github.com/gap-system/gap/pull/2383) Speed
    improvements for automorphism groups

  - [#2393](https://github.com/gap-system/gap/pull/2393) Track location
    of `InstallMethod` and `InstallImmediateMethod`

  - [#2422](https://github.com/gap-system/gap/pull/2422) Improve
    tracking of `InstallMethod` and `DeclareOperation`

  - [#2426](https://github.com/gap-system/gap/pull/2426) Speed up
    `InverseMatMod` with integer modulus

  - [#2427](https://github.com/gap-system/gap/pull/2427) Fix and
    complete support for custom functions (i.e., objects which can be
    called like a function using `obj(arg)` syntax)

  - [#2456](https://github.com/gap-system/gap/pull/2456) Add
    `PrintString` and `ViewString` methods for character tables

  - [#2474](https://github.com/gap-system/gap/pull/2474) Change
    `IsConstantRationalFunction` and `IsUnivariateRationalFunction` to
    return `false` if input isn't a rational function (instead of an
    error)

  - [#2474](https://github.com/gap-system/gap/pull/2474) Add methods
    for multiplying rational functions over arbitrary rings by rationals

  - [#2496](https://github.com/gap-system/gap/pull/2496) Finite groups
    whose order is known and not divisible by 4 are immediately marked
    as solvable

  - [#2509](https://github.com/gap-system/gap/pull/2509) Rewrite
    support for `.gz` compressed files to use **zlib**, now works on
    Windows

  - [#2519](https://github.com/gap-system/gap/pull/2519),
    [#2524](https://github.com/gap-system/gap/pull/2524),
    [#2531](https://github.com/gap-system/gap/pull/2531) `Test` now
    rejects empty inputs and warns if the input contains no test

  - [#2574](https://github.com/gap-system/gap/pull/2574) When reporting
    syntax errors, GAP now "underlines" the complete last token, not
    just the position where it stopped parsing

  - [#2577](https://github.com/gap-system/gap/pull/2577),
    [#2613](https://github.com/gap-system/gap/pull/2613) Add quadratic
    and bilinear add forms for `Omega(e,d,q)`

  - [#2598](https://github.com/gap-system/gap/pull/2598) Add
    `BannerFunction` to `PackageInfo.g`

  - [#2606](https://github.com/gap-system/gap/pull/2606) Improve
    `PageSource` to work on functions that were read from a file given
    by a relative path

  - [#2616](https://github.com/gap-system/gap/pull/2616) Speed up
    computation of quotients of associative words by using existing (but
    previously unused) kernel functions for that

  - [#2640](https://github.com/gap-system/gap/pull/2640) Work on
    `MatrixObj` and `VectorObj`

  - [#2654](https://github.com/gap-system/gap/pull/2654) Make `Sortex`
    stable

  - [#2666](https://github.com/gap-system/gap/pull/2666),
    [#2686](https://github.com/gap-system/gap/pull/2686) Add
    `IsBiCoset` attribute for right cosets, which is true if the right
    coset is also a left coset

  - [#2684](https://github.com/gap-system/gap/pull/2684) Add
    `NormalSubgroups` methods for symmetric and alternating permutation
    groups

  - [#2726](https://github.com/gap-system/gap/pull/2726) Validate
    `PackageInfo.g` when loading packages

  - [#2733](https://github.com/gap-system/gap/pull/2733) Minor
    performance improvements, code cleanup and very local fixes

  - [#2750](https://github.com/gap-system/gap/pull/2750) Reject some
    invalid uses of `~`

  - [#2812](https://github.com/gap-system/gap/pull/2812) Reduce memory
    usage and improve performance the MTC (modified Todd-Coxeter) code
    that was rewritten in GAP 4.9, but which was much slower than
    the old (but buggy) code it replaced; the difference is now small,
    but the old code still is faster in some case.

  - [#2855](https://github.com/gap-system/gap/pull/2855),
    [#2877](https://github.com/gap-system/gap/pull/2877) Add
    `IsPackageLoaded`

  - [#2878](https://github.com/gap-system/gap/pull/2878) Speed up
    conjugacy tests for permutation by using random permutation of
    points when selecting base in centraliser

  - [#2899](https://github.com/gap-system/gap/pull/2899)
    `TestDirectory` reports number of failures and failed files

### Changed documentation

  - [#2192](https://github.com/gap-system/gap/pull/2192) Add an example
    for `PRump`

  - [#2219](https://github.com/gap-system/gap/pull/2219) Add examples
    to the relations chapter.

  - [#2360](https://github.com/gap-system/gap/pull/2360) Document
    `IdealDecompositionsOfPolynomial` (also accessible via its synonym
    `DecomPoly`) and `NormalizerViaRadical`

  - [#2366](https://github.com/gap-system/gap/pull/2366) Do not
    recommend avoiding `X` which is a synonym for `Indeterminate`

  - [#2432](https://github.com/gap-system/gap/pull/2432) Correct a
    claim about the index of `Omega(e,p,q)` in `SO(e,p,q)` (see `SO`)

  - [#2549](https://github.com/gap-system/gap/pull/2549) Update
    documentation of the `-T` command line option

  - [#2551](https://github.com/gap-system/gap/pull/2551) Add new
    command line option `--alwaystrace` which ensures error backtraces
    are printed even if break loops are disabled

  - [#2681](https://github.com/gap-system/gap/pull/2681) Documented
    `ClassPositionsOfSolvableRadical` and
    `CharacterTableOfNormalSubgroup`

  - [#2834](https://github.com/gap-system/gap/pull/2834) Improve manual
    section about `Info` classes

### Fixed bugs that could lead to crashes

  - [#2154](https://github.com/gap-system/gap/pull/2154),
    [#2242](https://github.com/gap-system/gap/pull/2242),
    [#2294](https://github.com/gap-system/gap/pull/2294),
    [#2344](https://github.com/gap-system/gap/pull/2344),
    [#2353](https://github.com/gap-system/gap/pull/2353),
    [#2736](https://github.com/gap-system/gap/pull/2736) Fix several
    potential (albeit rare) crashes related to garbage collection

  - [#2196](https://github.com/gap-system/gap/pull/2196) Fix crash in
    `HasKeyBag` on SPARC Solaris 11

  - [#2305](https://github.com/gap-system/gap/pull/2305) Fix crash in
    `PartialPerm([1,2,8],[3,4,1,2]);`

  - [#2477](https://github.com/gap-system/gap/pull/2477) Fix crash if
    `~` is used to modify list

  - [#2499](https://github.com/gap-system/gap/pull/2499) Fix crash in
    the kernel functions `{8,16,32}Bits_ExponentSums3`

  - [#2601](https://github.com/gap-system/gap/pull/2601) Fix crash in
    `MakeImmutable(rec(x:=~));`

  - [#2665](https://github.com/gap-system/gap/pull/2665) Fix crash when
    an empty filename is passed

  - [#2711](https://github.com/gap-system/gap/pull/2711) Fix crash when
    tracing buggy attribute/property methods that fail to return a value

  - [#2766](https://github.com/gap-system/gap/pull/2766) Fix obscure
    crashes by using `a!{l}` syntax inside a function (this syntax never
    was fully implemented and was unusable, and now has been removed)

### Fixed bugs that could lead to incorrect results

  - [#2085](https://github.com/gap-system/gap/pull/2085) Fix bugs in
    `JenningsLieAlgebra` and `PCentralLieAlgebra` that could e.g. lead
    to incorrect `LieLowerCentralSeries` results

  - [#2113](https://github.com/gap-system/gap/pull/2113) Fix
    `IsMonomial` for reducible characters and some related improvements

  - [#2183](https://github.com/gap-system/gap/pull/2183) Fix bug in
    `ValueMolienSeries` that could lead to `ValueMolienSeries(m,0)` not
    being 1

  - [#2198](https://github.com/gap-system/gap/pull/2198) Make
    multiplication of larger integers by tiny floats commutative (e.g.
    now 10.^-300 \* 10^400 and 10^400 \* 10.^-300 both give infinity,
    while before 10^400 \* 10.^-300 gave 1.e+100); also ensure various
    strange inputs, like `rec()^1;`, produce an error (instead of
    setting `a^1 = a` and `1*a = a` for almost any kind of object)

  - [#2273](https://github.com/gap-system/gap/pull/2273) Fix
    `TypeOfOperation` for setters of and-filters

  - [#2275](https://github.com/gap-system/gap/pull/2275),
    [#2280](https://github.com/gap-system/gap/pull/2280) Fix
    `IsFinitelyGeneratedGroup` and `IsFinitelyGeneratedMonoid` to not
    (incorrectly) assume that a given infinite generating set implies
    that there is no finite generating set

  - [#2311](https://github.com/gap-system/gap/pull/2311) Do not set
    `IsFinitelyGeneratedGroup` for finitely generated magmas which are
    not groups

  - [#2452](https://github.com/gap-system/gap/pull/2452) Fix bug that
    allowed creating empty magmas in the filters `IsTrivial` and
    `IsMagmaWithInverses`

  - [#2689](https://github.com/gap-system/gap/pull/2689) Fix `LogFFE`
    to not return negative results on 32 bit systems

  - [#2766](https://github.com/gap-system/gap/pull/2766) Fix a bug that
    allowed creating corrupt permutations

### Fixed bugs that could lead to break loops

  - [#2040](https://github.com/gap-system/gap/pull/2040) Raise error if
    eager float literal conversion fails (fixes
    [#1105](https://github.com/gap-system/gap/pull/1105))

  - [#2582](https://github.com/gap-system/gap/pull/2582) Fix
    `ExtendedVectors` for trivial vector spaces

  - [#2617](https://github.com/gap-system/gap/pull/2617) Fix
    `HighestWeightModule` for Lie algebras in certain cases

  - [#2829](https://github.com/gap-system/gap/pull/2829) Fix
    `ShallowCopy` for `IteratorOfCartesianProduct`

### Other fixed bugs

  - [#2220](https://github.com/gap-system/gap/pull/2220) Do not set
    `IsSubsetLocallyFiniteGroup` filter for finite fields

  - [#2268](https://github.com/gap-system/gap/pull/2268) Handle spaces
    in filenames of gzipped filenames

  - [#2269](https://github.com/gap-system/gap/pull/2269),
    [#2660](https://github.com/gap-system/gap/pull/2660) Fix some
    issues with the interface between GAP and **XGAP** (or other
    similar frontends for GAP)

  - [#2315](https://github.com/gap-system/gap/pull/2315) Prevent
    creation of groups of floats, just like we prevent creation of
    groups of cyclotomics

  - [#2350](https://github.com/gap-system/gap/pull/2350) Fix prompt
    after line continuation

  - [#2365](https://github.com/gap-system/gap/pull/2365) Fix tracing of
    mutable variants of `One`/`Zero`/`Inv`/`AInv`

  - [#2398](https://github.com/gap-system/gap/pull/2398) Fix
    `PositionStream` to report correct position

  - [#2467](https://github.com/gap-system/gap/pull/2467) Fix support
    for identifiers of length 1023 and more

  - [#2470](https://github.com/gap-system/gap/pull/2470) Do not display
    garbage after certain syntax error messages

  - [#2533](https://github.com/gap-system/gap/pull/2533) Fix composing
    a map with an identity map to not produce a range that is too big

  - [#2638](https://github.com/gap-system/gap/pull/2638) Fix result of
    `Random` on 64 bit big endian system to match those on little
    endian, and on 32 bit big endian

  - [#2672](https://github.com/gap-system/gap/pull/2672) Fix
    `MakeImmutable` for weak pointer objects, which previously failed to
    make subobjects immutable

  - [#2674](https://github.com/gap-system/gap/pull/2674) Fix
    `SaveWorkspace` to return `false` in case of an error, and `true`
    only if successful

  - [#2681](https://github.com/gap-system/gap/pull/2681) Fix `Display`
    for the character table of a trivial group

  - [#2716](https://github.com/gap-system/gap/pull/2716) When seeding a
    Mersenne twister from a string, the last few characters would not be
    used if the string length was not a multiple of 4. Fixing this may
    lead to different series of random numbers being generated.

  - [#2720](https://github.com/gap-system/gap/pull/2720) Reject
    workspaces made in a GAP with readline support in a GAP
    without, and vice versa, instead of crashing

  - [#2657](https://github.com/gap-system/gap/pull/2657) The subobjects
    of the mutable values of the attributes `ComputedClassFusions`,
    `ComputedIndicators`, `ComputedPowerMaps`, `ComputedPrimeBlockss`
    are now immutable. This makes sure that the values are not
    accidentally changed. This change may have side-effects in users'
    code, for example the object returned by `0 * ComputedPowerMaps(
    CharacterTable( "A5" ) )[2]` had been a mutable list before the
    change, and is an immutable list from now on.

### Removed or obsolete functionality

  - Remove multiple undocumented internal functions. Nobody should have
    been using them, but if you were, you may extract it from a previous
    GAP release that still contained it.
    ([#2670](https://github.com/gap-system/gap/pull/2670),
    [#2781](https://github.com/gap-system/gap/pull/2781) and more)

  - [#2335](https://github.com/gap-system/gap/pull/2335) Remove several
    functions and variables that were deprecated for a long time:
    `DiagonalizeIntMatNormDriven`, `DeclarePackageDocumentation`,
    `KERNEL_VERSION`, `GAP_ROOT_PATHS`, `LOADED_PACKAGES`,
    `PACKAGES_VERSIONS`, `IsTuple`, `StateRandom`, `RestoreStateRandom`,
    `StatusRandom`, `FactorCosetOperation`, `ShrinkCoeffs`,
    `ExcludeFromAutoload`, `CharacterTableDisplayPrintLegendDefault`,
    `ConnectGroupAndCharacterTable`, `IsSemilatticeAsSemigroup`,
    `CreateCompletionFiles`, `PositionFirstComponent`, `ViewLength`

  - [#2502](https://github.com/gap-system/gap/pull/2502) Various kernel
    functions now validate their inputs more carefully (making it harder
    to produce bad effects by accidentally passing bad data to them)

  - [#2700](https://github.com/gap-system/gap/pull/2700) Forbid
    constructors with 0 arguments (they were never meaningful)

### Packages

GAP 4.10.0 distribution includes 140 packages.

Added to the distribution:

  - The **francy** package by Manuel Martins, which provides an
    interface to draw graphics using objects. This interface allows
    creation of directed and undirected graphs, trees, line charts, bar
    charts and scatter charts. These graphical objects are drawn inside
    a canvas that includes a space for menus and to display informative
    messages. Within the canvas it is possible to interact with the
    graphical objects by clicking, selecting, dragging and zooming.

  - The **JupyterVis** package by Nathan Carter, which is intended for
    use in Jupyter Notebooks running GAP kernels and adds
    visualization tools for use in such notebooks, such as charts and
    graphs.

No longer redistributed with GAP:

  - The **linboxing** package has been unusable (it does not compile)
    for several years now, and is unmaintained. It was therefore dropped
    from the GAP package distribution. If anybody is willing to take
    over and fix the package, the latest sources are available at
    <https://github.com/gap-packages/linboxing>.

  - The **recogbase** package has been merged into the `recog` package,
    and therefore is no longer distributed with GAP.

## GAP 4.9.3 (September 2018)

### Fixed bugs that could lead to break loops:

  - Fixed a regression in `HighestWeightModule` caused by changes in
    sort functions introduced in GAP 4.9 release
    ([#2617](https://github.com/gap-system/gap/pull/2617)).

### Other fixed bugs and further improvements:

  - Fixed a compile time assertion that caused compiler error on some
    systems ([#2691](https://github.com/gap-system/gap/pull/2691)).

### New and updated packages since GAP 4.9.2

This release contains updated versions of 18 packages from GAP 4.9.2
distribution. Additionally, it has three new packages:

  - The **curlInterface** package by Christopher Jefferson and Michael
    Torpey, which provides a simple wrapper around [**libcurl**](https://curl.haxx.se/)
    to allow downloading files over http, ftp and https protocols.

  - The **datastructures** package by Markus Pfeiffer, Max Horn,
    Christopher Jefferson and Steve Linton, which aims at providing
    standard datastructures, consolidating existing code and improving
    on it, in particular in view of **HPC-GAP**.

  - The **DeepThought** package by Nina Wagner and Max Horn, which
    provides functionality for computations in finitely generated
    nilpotent groups given by a suitable presentation using Deep Thought
    polynomials.


## GAP 4.9.2 (July 2018)

### Fixed bugs that could lead to break loops:

  - Fixed a bug in iterating over an empty cartesian product
    ([#2421](https://github.com/gap-system/gap/pull/2421)). (Reported
    by @isadofschi)

### Fixed bugs that could lead to crashes:

  - Fixed a crash after entering `return;` in a "method not found" break
    loop ([#2449](https://github.com/gap-system/gap/pull/2449)).

  - Fixed a crash when an error occurs and `OutputLogTo` points to a
    stream which internally uses another stream
    ([#2596](https://github.com/gap-system/gap/pull/2596)).

### Fixed bugs that could lead to incorrect results:

  - Fixed a bug in computing maximal subgroups, which broke some other
    calculations, in particular, computing intermediate subgroups.
    ([#2488](https://github.com/gap-system/gap/pull/2488)). (Reported
    by Seyed Hassan Alavi)

### Other fixed bugs and further improvements:

  - Profiling now correctly handles calls to `longjmp` and allows to
    generate profiles using version 2.0.1 of the **Profiling** package
    ([#2444](https://github.com/gap-system/gap/pull/2444)).

  - The `bin/gap.sh` script now respects the `GAP_DIR` environment
    variable ([#2465](https://github.com/gap-system/gap/pull/2465)).
    (Contributed by RussWoodroofe)

  - The `bin/BuildPackages.sh` script now properly builds binaries for
    the **simpcomp** package
    ([#2475](https://github.com/gap-system/gap/pull/2475)).

  - Fixed a bug in restoring a workspace, which prevented GAP from
    saving the history if a workspace was loaded during startup
    ([#2578](https://github.com/gap-system/gap/pull/2578)).

### New and updated packages since GAP 4.9.1

This release contains updated versions of 22 packages from GAP 4.9.1
distribution. Additionally, it has three new packages. The new
**JupyterKernel** package by Markus Pfeiffer provides a so-called
*kernel* for the [Jupyter](https://jupyter.org/) interactive document system.
This package requires Jupyter to be installed
on your system ([instructions](https://jupyter.org/install)). It
also requires GAP packages **IO**, **ZeroMQInterface**, **json**,
and also two new packages by Markus Pfeiffer called **crypting** and
**uuid**, all included into GAP 4.9.2 distribution. The
**JupyterKernel** package is not yet usable on
Windows.


## GAP 4.9.1 (May 2018)

This is the first public release of GAP 4.9.

### Major changes:

  - Merged **HPC-GAP** into GAP. For details, please refer to the end of
    these release notes.

  - GAP has a new build system, which resolves many quirks and issues
    with the old system, and will be easier to maintain. For regular
    users, the usual `./configure && make` should work fine as before.
    If you are interested in technical details on the new build system,
    take a look at `README.buildsys.md`.

  - The guidelines for developing GAP packages were revised and moved
    from the Example package to the reference manual.
    ([#484](https://github.com/gap-system/gap/pull/484)).

  - In addition to supporting single argument lambda functions like
    `a -> a+1`, GAP now supports lambdas with fewer or more than one
    argument, or even a variable number. E.g. `{a,b} -> a+b` is a
    shorthand for `function(a,b) return a+b; end`. For details on how
    to use this, please refer to the reference manual. For technical
    details, e.g. why we did not choose the syntax `(a,b) -> a+b`, see
    [#490](https://github.com/gap-system/gap/pull/490).

  - Function calls, list accesses and records accesses now can be
    nested. For example, you can now write `y := f().x;` (essentially
    equivalent to `y := f();; y := y.x;`), which previously would have
    resulted in an error; see
    [#457](https://github.com/gap-system/gap/issues/457) and
    [#462](https://github.com/gap-system/gap/pull/462)).

  - The libraries of small, primitive and transitive groups which
    previously were an integral part of GAP were split into three
    separate packages
    [PrimgGrp](http://gap-packages.github.io/primgrp/),
    [SmallGrp](https://gap-packages.github.io/smallgrp/) and
    [TransGrp](http://www.math.colostate.edu/~hulpke/transgrp/). For
    backwards compatibility, these are required packages in GAP 4.9
    (i.e., GAP will not start without them). We plan to change this
    for GAP 4.10 (see
    [#2434](https://github.com/gap-system/gap/pull/2434)), once all
    packages which currently implicitly rely on these new packages had
    time to add explicit dependencies on them
    ([#1650](https://github.com/gap-system/gap/pull/1650),
    [#1714](https://github.com/gap-system/gap/pull/1714)).

  - The performance of GAP's sorting functions (such as `Sort`,
    `SortParallel`, etc.) has been substantially improved, in some
    examples by more than a factor of four: as a trivial example,
    compare the timing for `Sort([1..100000000] * 0)`. As a side
    effect, the result of sorting lists with equal entries may produce
    different answers compared to previous GAP versions. If you would
    like to make your code independant of the exact employed sorting
    algorithm, you can use the newly added `StableSort`, `StableSortBy`
    and `StableSortParallel`. (For some technical details, see
    [#609](https://github.com/gap-system/gap/pull/609)).

  - We removed our old home-grown big integer code, and instead always
    use the GMP based big integer code. This means that the GMP library
    now is a required dependency, not just an optional one. Note that
    GAP has been using GMP big integer arithmetic for a long time by
    default, and we also have been bundling GMP with GAP. So this
    change mostly removed code that was never in use for most users.

  - A number of improvements have been made to `Random`. These may lead
    to different sequences of numbers being created. On the up side,
    many more methods for `Random` (and other `RandomXYZ` operations)
    now optionally take an explicit `RandomSource` as first argument
    (but not yet all: help with issue
    [#1098](https://github.com/gap-system/gap/pull/1098) is welcome).
    Some relevant pull requests:

      - Allow creating random permutations using a random source
        ([#1165](https://github.com/gap-system/gap/pull/1165))

      - Let more `Random` methods use an alternative
        source ([#1168](https://github.com/gap-system/gap/pull/1168))

      - Help `Random` methods to use `RandomSource`
        ([#810](https://github.com/gap-system/gap/pull/810))

      - Remove uses of old random generator
        ([#808](https://github.com/gap-system/gap/pull/808))

      - Fix `Random` on long (\>2^28) lists
        ([#781](https://github.com/gap-system/gap/pull/781))

      - Fix `RandomUnimodularMat`
        ([#1511](https://github.com/gap-system/gap/pull/1511))

      - Use `RandomSource` in a few more
        places ([#1599](https://github.com/gap-system/gap/pull/1599))

  - The output and behaviour of the profiling system has been
    substantially improved:

      - Make profiling correctly handle the same file being opened
        multiple times
        ([#1069](https://github.com/gap-system/gap/pull/1069))

      - Do not profile the `return` statements inserted into the end
        of functions
        ([#1073](https://github.com/gap-system/gap/pull/1073))

      - Ensure we reset `OutputtedFilenameList` in profiling when a
        workspace is restored
        ([#1164](https://github.com/gap-system/gap/pull/1164))

      - Better tracking of amounts of memory allocated and time spent in
        the garbage collector
        ([#1806](https://github.com/gap-system/gap/pull/1806))

      - Allow profiling of memory usage
        ([#1808](https://github.com/gap-system/gap/pull/1808))

      - Remove profiling limit on files with \<= 2^16 lines
        ([#1913](https://github.com/gap-system/gap/pull/1913))

  - In many cases GAP now outputs the filename and location of
    functions in helpful places, e.g. in error messages or when
    displaying compiled functions. We also try to always use the format
    `FILENAME:LINE`, which various utilities already know how to parse
    (e.g. in **iTerm2**, cmd-clicking on such a string can be configured
    to open an editor for the file at the indicated line). For some
    technical details, see
    [#469](https://github.com/gap-system/gap/pull/469),
    [#755](https://github.com/gap-system/gap/pull/755\)),
    [#1058](https://github.com/gap-system/gap/pull/1058).

  - GAP now supports constant variables, whose value cannot change
    anymore during runtime; code using such constants can then be
    slightly optimized by GAP. E.g. if `foo` is turned into a
    constant variable bound to the value `false`, then GAP can
    optimize `if foo then ... fi;` blocks completely away. For details,
    see the documentation for `MakeConstantGlobal`.
    ([#1682](https://github.com/gap-system/gap/pull/1682),
    [#1770](https://github.com/gap-system/gap/pull/1770))

### Other changes:

  - Enhance `StructureDescription` with a major rewrite, enhancing
    `DirectFactorsOfGroup"` and adding `SemidirectDecompositions`; the
    core algorithm now also works for infinite abelian groups. Further,
    it became faster by quickly finding abelian direct factors and
    recognizing several cases where the group is direct indecomposable.
    ([#379](https://github.com/gap-system/gap/pull/379),
    [#763](https://github.com/gap-system/gap/pull/763),
    [#985](https://github.com/gap-system/gap/pull/985))

  - Mark `FittingSubgroup` and `FrattiniSubgroup` as nilpotent
    ([#400](https://github.com/gap-system/gap/pull/400))

  - Add method for `Socle` for finite nilpotent
    groups ([#402](https://github.com/gap-system/gap/pull/402))

  - Change `ViewString` and `String` methods for various inverse
    semigroups and monoids
    ([#438](https://github.com/gap-system/gap/pull/438),
    [#880](https://github.com/gap-system/gap/pull/880),
    [#882](https://github.com/gap-system/gap/pull/882))

  - Enhance some nilpotent and p-group attributes
    ([#442](https://github.com/gap-system/gap/pull/442))

  - Improve `Union` for a list with many ranges
    ([#444](https://github.com/gap-system/gap/pull/444))

  - Add `UserHomeExpand`, a function to expand `~` in filenames.
    ([#447](https://github.com/gap-system/gap/pull/447))

  - Extra hint in "No Method Found" error message if one of the arguments
    is `fail` ([#460](https://github.com/gap-system/gap/pull/460))

  - Tell Sylow subgroups of natural A_n or S_n their size when we make
    them ([#529](https://github.com/gap-system/gap/pull/529))

  - Some small enhancements on Sylow and Hall subgroup computations,
    mostly for nilpotent groups.
    ([#535](https://github.com/gap-system/gap/pull/535))

  - Remove `.zoo` archive related tools
    ([#540](https://github.com/gap-system/gap/pull/540))

  - Add new `FrattiniSubgroup`, `MaximalNormalSubgroups`,
    `MinimalNormalSubgroups` and `Socle` methods for abelian and/or
    solvable groups, even infinite ones. The new methods are only
    triggered if the group already knows that it is abelian and/or
    solvable. ([#552](https://github.com/gap-system/gap/pull/552),
    [#583](https://github.com/gap-system/gap/pull/583),
    [#606](https://github.com/gap-system/gap/pull/606))

  - New attribute `NormalHallSubgroups`, returning a list of all normal
    Hall subgroups of a group.
    ([#561](https://github.com/gap-system/gap/pull/561))

  - Add `ComplementClassesRepresentatives` fallback method for arbitrary
    groups ([#563](https://github.com/gap-system/gap/pull/563))

  - ([#612](https://github.com/gap-system/gap/pull/612)) Add parsing of
    hex literals in strings, e.g. `"\0x61"` is turned into `"a"`
    ([#612](https://github.com/gap-system/gap/pull/612))

  - Collection of enhancements
    ([#683](https://github.com/gap-system/gap/pull/683))

  - Various speed improvements to polynomial factorisation and the GAP
    MeatAxe ([#720](https://github.com/gap-system/gap/pull/720),
    [#1027](https://github.com/gap-system/gap/pull/1027))

  - The code and documentation for transformations is improved and
    corrected in many instances
    ([#727](https://github.com/gap-system/gap/pull/727),
    [#732](https://github.com/gap-system/gap/pull/732))

  - Change `RootFFE` to optionally takes a field or field size as first
    argument, from which the roots will be taken
    ([#761](https://github.com/gap-system/gap/pull/761))

  - Change `Permanent` from a global function to an attribute
    ([#777](https://github.com/gap-system/gap/pull/777))

  - Add `CallFuncListWrap` to wrap return value to allow distinguishing
    between functions which return and functions which don't
    ([#824](https://github.com/gap-system/gap/pull/824))

  - Allow repeated use of same `DeclareSynonym` call
    ([#835](https://github.com/gap-system/gap/pull/835))

  - New implementation of modified Todd-Coxeter (the old one had bugs,
    see [#302](https://github.com/gap-system/gap/issues/302)),
    [#843](https://github.com/gap-system/gap/pull/843))

  - New functionality: Cannon/Holt automorphisms and others
    ([#878](https://github.com/gap-system/gap/pull/878))

  - Add `IsPowerfulPGroup` property, and a `FrattiniSubgroup` method for
    powerful p-groups
    ([#894](https://github.com/gap-system/gap/pull/894))

  - Improve performance for group isomorphism/automorphisms
    ([#896](https://github.com/gap-system/gap/pull/896),
    [#968](https://github.com/gap-system/gap/pull/968))

  - Make `ListX`, `SetX`, `SumX` and `ProductX` support lists which are
    not collections
    ([#903](https://github.com/gap-system/gap/pull/903))

  - Some improvements for `LatticeByCyclicExtension`
    ([#905](https://github.com/gap-system/gap/pull/905))

  - Add helpers to retrieve information about operations and filters:
    `CategoryByName`, `TypeOfOperation`, `FilterByName`, `FiltersObj`,
    `FiltersType`, `IdOfFilter`, `IdOfFilterByName`, `IsAttribute`,
    `IsCategory`, `IsProperty`, `IsRepresentation`
    ([#925](https://github.com/gap-system/gap/pull/925),
    [#1593](https://github.com/gap-system/gap/pull/1593))

  - Add case-insensitive autocomplete
    ([#928](https://github.com/gap-system/gap/pull/928))

  - Give better error message if a help file is missing
    ([#939](https://github.com/gap-system/gap/pull/939))

  - Add `LowercaseChar` and `UppercaseChar`
    ([#952](https://github.com/gap-system/gap/pull/952))

  - Add `PositionMaximum` and `PositionMinimum`
    ([#956](https://github.com/gap-system/gap/pull/956))

  - Switching default command history length from infinity to 1000
    ([#960](https://github.com/gap-system/gap/pull/960))

  - Allow conversion of `-infinity` to float via `NewFloat` and
    `MakeFloat` ([#961](https://github.com/gap-system/gap/pull/961))

  - Add option `NoPrecomputedData` to avoid use of data libraries in
    certain computations (useful if one wants to verify the content of
    these data libraries)
    ([#986](https://github.com/gap-system/gap/pull/986))

  - Remove one-argument version of `AsPartialPerm` for a transformation
    ([#1036](https://github.com/gap-system/gap/pull/1036))

  - Partial perms now have a `MultiplicativeZero` rather than a `Zero`,
    since they are multiplicative rather than additive elements
    ([#1040](https://github.com/gap-system/gap/pull/1040))

  - Various enhancements:
    ([#1046](https://github.com/gap-system/gap/pull/1046))

      - A bugfix in `NaturalHomomorphismByIdeal` for polynomial rings

      - Improvements in handling solvable permutation groups

      - The trivial group now is a member of the perfect groups library

      - Improvements in using tabulated data for maximal subgroups

  - New tests for group constructors and some fixes (e.g. `GO(1,4,5)`
    used to trigger an error)
    ([#1053](https://github.com/gap-system/gap/pull/1053))

  - Make `HasSolvableFactorGroup` slightly more efficient
    ([#1062](https://github.com/gap-system/gap/pull/1062))

  - Enhance `HasXXFactorGroup`
    ([#1066](https://github.com/gap-system/gap/pull/1066))

  - Remove GAP4stones from tests
    ([#1072](https://github.com/gap-system/gap/pull/1072))

  - `AsMonoid` and `AsSemigroup` are now operations, and various bugs
    were resolved related to isomorphisms of semigroups and monoids
    ([#1112](https://github.com/gap-system/gap/pull/1112))

  - Mark isomorphisms between trivial groups as bijective
    ([#1116](https://github.com/gap-system/gap/pull/1116))

  - Speed up `RootMod` and `RootsMod` for moduli with large prime
    factors; also add `IS_PROBAB_PRIME_INT` kernel function
    ([#1141](https://github.com/gap-system/gap/pull/1141))

  - The search for the documentation of system setters and testers now
    returns corresponding attributes and properties
    ([#1144](https://github.com/gap-system/gap/pull/1144))

  - Remove command line options `-c`, `-U`, `-i` and `-X`, add
    `--quitonbreak`
    ([#1192](https://github.com/gap-system/gap/pull/1192),
    [#1265](https://github.com/gap-system/gap/pull/1265),
    [#1421](https://github.com/gap-system/gap/pull/1421),
    [#1448](https://github.com/gap-system/gap/pull/1448))

  - Remove Itanium support
    ([#1163](https://github.com/gap-system/gap/pull/1163))

  - Adding two strings now shows a more helpful error message
    ([#1314](https://github.com/gap-system/gap/pull/1314))

  - Suppress `Unbound global variable` warning in `IsBound`
    ([#1334](https://github.com/gap-system/gap/pull/1334))

  - Increase warning level for Conway polynomial
    ([#1363](https://github.com/gap-system/gap/pull/1363))

  - Performance improvements to maximal and intermediate subgroups, fix
    of `RepresentativeAction`
    ([#1390](https://github.com/gap-system/gap/pull/1390))

  - Revise Chapter 52 of the reference manual (fp semigroups and monoids)
    ([#1441](https://github.com/gap-system/gap/pull/1441))

  - Improve the performance of the `Info` statement
    ([#1464](https://github.com/gap-system/gap/pull/1464),
    [#1770](https://github.com/gap-system/gap/pull/1770))

  - When printing function bodies, avoid some redundant spaces
    ([#1498](https://github.com/gap-system/gap/pull/1498))

  - Add kernel functions for directly accessing entries of GF2/8bit
    compressed matrices
    ([#1585](https://github.com/gap-system/gap/pull/1585))

  - Add `String` method for functions
    ([#1591](https://github.com/gap-system/gap/pull/1591))

  - Check modules were compiled with the same version of GAP when loading
    them ([#1600](https://github.com/gap-system/gap/pull/1600))

  - When printing function, reproduce `TryNextMethod()` correctly
    ([#1613](https://github.com/gap-system/gap/pull/1613))

  - New "Bitfields" feature providing efficient support for packing
    multiple data items into a single word for cache and memory
    efficiency ([#1616](https://github.com/gap-system/gap/pull/1616))

  - Improved `bin/BuildPackages.sh`, in particular added option to abort
    upon failure ([#2022](https://github.com/gap-system/gap/pull/2022))

  - Rewrote integer code (GMP) for better performance of certain large
    integer operations, and added kernel implementations of various
    functions, including these:

      - Add kernel implementations of `AbsInt`, `SignInt`; add new kernel
        functions `ABS_RAT`, `SIGN_RAT`; and speed up `mod`, `RemInt`,
        `QuoInt` for divisors which are small powers of 2
        ([#1045](https://github.com/gap-system/gap/pull/1045))

      - Add kernel implementations of `Jacobi`, `PowerModInt`,
        `Valuation` (for integers), `PValuation` (for integers)
        ([#1075](https://github.com/gap-system/gap/pull/1045))

      - Add kernel implementation of `Factorial`
        ([#1969](https://github.com/gap-system/gap/pull/1969))

      - Add kernel implementation of `Binomial`
        ([#1921](https://github.com/gap-system/gap/pull/1921))

      - Add kernel implementation of `LcmInt`
        ([#2019](https://github.com/gap-system/gap/pull/2019))

  - Check version of kernel for package versions
    ([#1600](https://github.com/gap-system/gap/pull/1600))

  - Add new `AlgebraicExtensionNC` operation
    ([#1665](https://github.com/gap-system/gap/pull/1665))

  - Add `NumberColumns` and `NumberRows` to `MatrixObj` interface
    ([#1657](https://github.com/gap-system/gap/pull/1657))

  - `MinimalGeneratingSet` returns an answer for non-cyclic groups that
    already have a generating set of size 2 (which hence is minimal)
    ([#1755](https://github.com/gap-system/gap/pull/1755))

  - Add `GetWithDefault` which returns the n-th element of the list if it
    is bound, and the default value otherwise
    ([#1762](https://github.com/gap-system/gap/pull/1762))

  - Fast method for `ElmsBlist` when positions are a range with increment
    1 ([#1773](https://github.com/gap-system/gap/pull/1773))

  - Make permutations remember their inverses
    ([#1831](https://github.com/gap-system/gap/pull/1831))

  - Add invariant forms for `GU(1,q)` and `SU(1,q)`
    ([#1874](https://github.com/gap-system/gap/pull/1874))

  - Implement `StandardAssociate` and `StandardAssociateUnit` for
    `ZmodnZ`, clarify documentation for `IsEuclideanRing`
    ([#1990](https://github.com/gap-system/gap/pull/1990))

  - Improve documentation and interface for floats
    ([#2016](https://github.com/gap-system/gap/pull/2016))

  - Add `PositionsProperty` method for non-dense lists
    ([#2021](https://github.com/gap-system/gap/pull/2021))

  - Add `TrivialGroup(IsFpGroup)`
    ([#2037](https://github.com/gap-system/gap/pull/2037))

  - Change `ObjectifyWithAttributes` to return the new objects
    ([#2098](https://github.com/gap-system/gap/pull/2098))

  - Removed a never released undocumented **HPC-GAP** syntax extension
    which allowed to use a backtick/backquote as alias for
    `MakeImmutable`.
    ([#2202](https://github.com/gap-system/gap/pull/2202)).

  - Various changes
    ([#2253](https://github.com/gap-system/gap/pull/2253)):

      - Improve performance and memory usage of
        `ImageKernelBlocksHomomorphism"`

      - Document `LowIndexSubgroups`

      - Correct `ClassesSolvableGroup` documentation to clarify that it
        requires, but does not test membership

      - fix `IsNaturalGL` for trivial matrix groups with empty generating
        set

  - Make it possible to interrupt `repeat continue; until false;` and
    similar tight loops with "Ctrl-C"
    ([#2259](https://github.com/gap-system/gap/pull/2259)).

  - Improved GAP testing infrastructure, extended GAP test suite, and
    increased code coverage

  - Countless other tweaks, improvements, fixes were applied to the GAP
    library, kernel and manual

### Fixed bugs:

  - Fix bugs in `NormalSubgroups` and `PrintCSV`
    ([#433](https://github.com/gap-system/gap/pull/433))

  - Fix nice monomorphism dispatch for `HallSubgroup` (e.g. fixes
    `HallSubgroup(GL(3,4), [2,3])`)
    ([#559](https://github.com/gap-system/gap/pull/559))

  - Check for permutations whose degree would exceed the internal limit,
    and document that limit
    ([#581](https://github.com/gap-system/gap/pull/581))

  - Fix segfault after quitting from the break loop in certain cases
    ([#709](https://github.com/gap-system/gap/pull/709) which fixes
    [#397](https://github.com/gap-system/gap/issues/397))

  - Fix rankings for `Socle` and `MinimalNormalSubgroups`
    ([#711](https://github.com/gap-system/gap/pull/711))

  - Make key and attribute values immutable
    ([#714](https://github.com/gap-system/gap/pull/714))

  - Make `OnTuples([-1], (1,2))` return an error
    ([#718](https://github.com/gap-system/gap/pull/718))

  - Fix bug in `NewmanInfinityCriterion` which could corrupt the
    `PCentralSeries` attribute
    ([#719](https://github.com/gap-system/gap/pull/719))

  - The length of the list returned by `OnSetsPerm` is now properly set
    ([#731](https://github.com/gap-system/gap/pull/731))

  - Fix `Remove` misbehaving when last member of
    list with gaps in it is removed
    ([#766](https://github.com/gap-system/gap/pull/766))

  - Fix bugs in various methods for Rees (0-)matrix semigroups:
    `IsFinite`, `IsOne`,
    `Enumerator`, `IsReesMatrixSemigroup` and `IsReesZeroMatrixSemigroup`
    ([#768](https://github.com/gap-system/gap/pull/768),
    [#1676](https://github.com/gap-system/gap/pull/1676))

  - Fix `IsFullTransformationSemigroup` to work correctly for the full
    transformation semigroup of degree 0
    ([#769](https://github.com/gap-system/gap/pull/769))

  - Fix printing very large (\> 2^28 points) permutations
    ([#782](https://github.com/gap-system/gap/pull/782))

  - Fix `Intersection([])`
    ([#854](https://github.com/gap-system/gap/pull/854))

  - Fix crash in `IsKernelFunction` for some inputs
    ([#876](https://github.com/gap-system/gap/pull/876))

  - Fix bug in `ShortestVectors` which
    could cause `OrthogonalEmbeddings`
    to enter a break loop
    ([#941](https://github.com/gap-system/gap/pull/941))

  - Fix crash in some methods involving partial perms
    ([#948](https://github.com/gap-system/gap/pull/948))

  - `FreeMonoid(0)` no longer satisfies `IsGroup`
    ([#950](https://github.com/gap-system/gap/pull/950))

  - Fix crash when invoking weak pointer functions on invalid arguments
    ([#1009](https://github.com/gap-system/gap/pull/1009))

  - Fix a bug parsing character constants
    ([#1015](https://github.com/gap-system/gap/pull/1015))

  - Fix several bugs and crashes in `Z(p,d)` for invalid arguments, e.g.
    `Z(4,5)`, `Z(6,3)`
    ([#1029](https://github.com/gap-system/gap/pull/1029),
    [#1059](https://github.com/gap-system/gap/pull/1059),
    [#1383](https://github.com/gap-system/gap/pull/1383),
    [#1573](https://github.com/gap-system/gap/pull/1573))

  - Fix starting GAP on systems with large inodes
    ([#1033](https://github.com/gap-system/gap/pull/1033))

  - Fix `NrFixedPoints` and `FixedPointsOfPartialPerm` for a partial
    perm and a partial perm semigroup (they used to return the
    moved points rather than the fixed points)
    ([#1034](https://github.com/gap-system/gap/pull/1034))

  - Fix `MeetOfPartialPerms` when given a collection of 1 or 0
    partial perms
    ([#1035](https://github.com/gap-system/gap/pull/1035))

  - The behaviour of `AsPartialPerm` for a transformation and a list
    is corrected
    ([#1036](https://github.com/gap-system/gap/pull/1036))

  - `IsomorphismReesZeroMatrixSemigroup` for a 0-simple semigroup is now
    defined on the zero of the source and range semigroups
    ([#1038](https://github.com/gap-system/gap/pull/1038))

  - Fix isomorphisms from finitely-presented monoids to
    finitely-presented semigroups, and allow isomorphisms from
    semigroups to fp-monoids
    ([#1039](https://github.com/gap-system/gap/pull/1039))

  - Fix `One` for a partial permutation semigroup
    without generators
    ([#1040](https://github.com/gap-system/gap/pull/1040))

  - Fix `MemoryUsage` for positional and
    component objects
    ([#1044](https://github.com/gap-system/gap/pull/1044))

  - Fix `PlainString` causing immutable strings to become mutable
    ([#1096](https://github.com/gap-system/gap/pull/1096))

  - Restore support for sparc64
    ([#1124](https://github.com/gap-system/gap/pull/1124))

  - Fix a problem with \`\<\` for transformations, which could give
    incorrect results
    ([#1130](https://github.com/gap-system/gap/pull/1130))

  - Fix crash when comparing recursive data structures such as `[~] =
    [~]` ([#1151](https://github.com/gap-system/gap/pull/1151))

  - Ensure output of `TrivialGroup(IsPermGroup)` has zero generators
    ([#1247](https://github.com/gap-system/gap/pull/1247))

  - Fix for applying the `InverseGeneralMapping` of an `IsomorphismFpSemigroup`
    ([#1259](https://github.com/gap-system/gap/pull/1259))

  - Collection of improvements and fixes:
    ([#1294](https://github.com/gap-system/gap/pull/1294))

      - A fix for quotient rings of rings by structure constants

      - Generic routine for transformation matrix to rational canonical
        form

      - Speed improvements to block homomorphisms

      - New routines for conjugates or subgroups with desired containment

      - Performance improvement for conjugacy classes in groups with a
        huge number of classes, giving significant improvements to
        `IntermediateSubgroups` (e.g. 7-Sylow subgroup in PSL(7,2)),
        ascending chain and thus in turn double coset calculations and
        further routines that rely on it

  - Fix `EqFloat` to return correct results, instead of always returning
    `false` ([#1370](https://github.com/gap-system/gap/pull/1370))

  - Various changes, including fixes for `CallFuncList`
    ([#1417](https://github.com/gap-system/gap/pull/1417))

  - Better define the result of `MappingPermListList`
    ([#1432](https://github.com/gap-system/gap/pull/1432))

  - Check the arguments to `IsInjectiveListTrans` to prevent crashes
    ([#1435](https://github.com/gap-system/gap/pull/1435))

  - Change `BlownUpMat` to return fail for certain invalid inputs
    ([#1488](https://github.com/gap-system/gap/pull/1488))

  - Fixes for creating Green's classes of semigroups
    ([#1492](https://github.com/gap-system/gap/pull/1492),
    [#1771](https://github.com/gap-system/gap/pull/1771))

  - Fix `DoImmutableMatrix` for finite fields
    ([#1504](https://github.com/gap-system/gap/pull/1504))

  - Make structural copy handle boolean lists properly
    ([#1514](https://github.com/gap-system/gap/pull/1514))

  - Minimal fix for algebraic extensions over finite fields of order \>
    256 ([#1569](https://github.com/gap-system/gap/pull/1569))

  - Fix for computing quotients of certain algebra modules
    ([#1669](https://github.com/gap-system/gap/pull/1669))

  - Fix an error in the default method for `PositionNot`
    ([#1672](https://github.com/gap-system/gap/pull/1672))

  - Improvements to Rees matrix semigroups code and new tests
    ([#1676](https://github.com/gap-system/gap/pull/1676))

  - Fix `CodePcGroup` for the trivial polycyclic group
    ([#1679](https://github.com/gap-system/gap/pull/1679))

  - Fix `FroidurePinExtendedAlg` for partial permutation monoids
    ([#1697](https://github.com/gap-system/gap/pull/1697))

  - Fix computing the radical of a zero dimensional associative algebra
    ([#1701](https://github.com/gap-system/gap/pull/1701))

  - Fix a bug in `RadicalOfAlgebra` which could cause a break loop for
    some associative algebras
    ([#1716](https://github.com/gap-system/gap/pull/1716))

  - Fix a recursion depth trap error when repeatedly calling `Test`
    ([#1753](https://github.com/gap-system/gap/pull/1753))

  - Fix bugs in `PrimePGroup` for direct products of p-groups
    ([#1754](https://github.com/gap-system/gap/pull/1754))

  - Fix `UpEnv` (available in break loops) when at the bottom of the
    backtrace ([#1780](https://github.com/gap-system/gap/pull/1780))

  - Fix `IsomorphismPartialPermSemigroup` and
    `IsomorphismPartialPermMonoid` for permutation groups with 0
    generators ([#1784](https://github.com/gap-system/gap/pull/1784))

  - Fix `DisplaySemigroup` for transformation semigroups
    ([#1785](https://github.com/gap-system/gap/pull/1785))

  - Fix "no method found" errors in `MagmaWithOne` and
    `MagmaWithInverses`
    ([#1798](https://github.com/gap-system/gap/pull/1798))

  - Fix an error computing kernel of group homomorphism from fp group
    into permutation group
    ([#1809](https://github.com/gap-system/gap/pull/1809))

  - Fix an error in MTC losing components when copying a new augmented
    coset table ([#1809](https://github.com/gap-system/gap/pull/1809))

  - Fix output of `Where` in a break loop, which pointed at the wrong
    code line in some cases
    ([#1814](https://github.com/gap-system/gap/pull/1814))

  - Fix the interaction of signals in GAP and the **IO** package
    ([#1851](https://github.com/gap-system/gap/pull/1851))

  - Make line editing resilient to `LineEditKeyHandler` failure (in
    particular, don't crash)
    ([#1856](https://github.com/gap-system/gap/pull/1856))

  - Omit non-characters from `PermChars` results
    ([#1867](https://github.com/gap-system/gap/pull/1867))

  - Fix `ExteriorPower` when exterior power is 0-dimensional (used to
    return a 1-dimensional result)
    ([#1872](https://github.com/gap-system/gap/pull/1872))

  - Fix recursion depth trap and other improvements for quotients of fp
    groups ([#1884](https://github.com/gap-system/gap/pull/1884))

  - Fix a bug in the computation of a permutation group isomorphic to a
    group of automorphisms
    ([#1907](https://github.com/gap-system/gap/pull/1907))

  - Fix bug in `InstallFlushableValueFromFunction`
    ([#1920](https://github.com/gap-system/gap/pull/1920))

  - Fix `ONanScottType` and introduce `RestrictedInverseGeneralMapping`
    ([#1937](https://github.com/gap-system/gap/pull/1937))

  - Fix `QuotientMod` documentation, and the integer implementation. This
    partially reverts changes made in version 4.7.8 in 2013. The
    documentation is now correct (resp. consistent again), and several
    corner cases, e.g. `QuotientMod(0,0,m)` now work correctly
    ([#1991](https://github.com/gap-system/gap/pull/1991))

  - Fix `PositionProperty` with from \< 1
    ([#2056](https://github.com/gap-system/gap/pull/2056))

  - Fix inefficiency when dealing with certain algebra modules
    ([#2058](https://github.com/gap-system/gap/pull/2058))

  - Restrict capacity of plain lists to 2^28 in 32-bit and 2^60 in 64-bit
    builds ([#2064](https://github.com/gap-system/gap/pull/2064))

  - Fix crashes with very large heaps (\> 2 GB) on 32 bit systems, and
    work around a bug in `memmove` in 32-bit glibc versions which could
    corrupt memory (affects most current Linux distributions)
    ([#2166](https://github.com/gap-system/gap/pull/2166)).

  - Fix name of the `reversed` option in documentation of
    `LoadAllPackages`
    ([#2167](https://github.com/gap-system/gap/pull/2167)).

  - Fix `TriangulizedMat([])` (see `TriangulizedMat` to return an empty
    list instead of producing an error
    ([#2260](https://github.com/gap-system/gap/pull/2260)).

  - Fix several potential (albeit rare) crashes related to garbage
    collection ([#2321](https://github.com/gap-system/gap/pull/2321),
    [#2313](https://github.com/gap-system/gap/pull/2313),
    [#2320](https://github.com/gap-system/gap/pull/2320)).

### Removed or obsolete functionality:

  - Make `SetUserPreferences` obsolete (use `SetUserPreference` instead)
    ([#512](https://github.com/gap-system/gap/pull/512))

  - Remove undocumented `NameIsomorphismClass`
    ([#597](https://github.com/gap-system/gap/pull/597))

  - Remove unused code for rational classes of permutation groups
    ([#886](https://github.com/gap-system/gap/pull/886))

  - Remove unused and undocumented `Randomizer` and `CheapRandomizer`
    ([#1113](https://github.com/gap-system/gap/pull/1113))

  - Remove `install-tools.sh` script and documentation mentioning it
    ([#1305](https://github.com/gap-system/gap/pull/1305))

  - Withdraw `CallWithTimeout` and `CallWithTimeoutList`
    ([#1324](https://github.com/gap-system/gap/pull/1324))

  - Make `RecFields` obsolete (use `RecNames`
    instead) ([#1331](https://github.com/gap-system/gap/pull/1331))

  - Remove undocumented `SuPeRfail` and `READ_COMMAND`
    ([#1374](https://github.com/gap-system/gap/pull/1374))

  - Remove unused `oldmatint.gi` (old methods for functions that compute
    Hermite and Smith normal forms of integer matrices)
    ([#1765](https://github.com/gap-system/gap/pull/1765))

  - Make `TRANSDEGREES` obsolete
    ([#1852](https://github.com/gap-system/gap/pull/1852))

### **HPC-GAP**

GAP includes experimental code to support multithreaded programming
in GAP, dubbed **HPC-GAP** (where HPC stands for "high performance
computing"). GAP and **HPC-GAP** codebases diverged during the
project, and we are currently working on unifying the codebases and
incorporating the **HPC-GAP** code back into the mainstream GAP
versions.

This is work in progress, and **HPC-GAP** as it is included with GAP
right now still suffers from various limitations and problems, which we
are actively working on to resolve. However, including it with GAP
(disabled by default) considerably simplifies development of
**HPC-GAP**. It also means that you can very easily get a (rough\!)
sneak peak of **HPC-GAP**. It comes together with the new manual book
called "**HPC-GAP** Reference Manual" and located in the \`doc/hpc\`
directory.

Users interested in experimenting with shared memory parallel programming
in GAP can build **HPC-GAP** by following the
[instructions](https://github.com/gap-system/gap/wiki/Building-HPC-GAP).
While it is possible to build **HPC-GAP** from a release version of GAP
you downloaded from the GAP website, due to the ongoing development of
**HPC-GAP**, we recommend that you instead build **HPC-GAP** from the
latest development version available in the GAP [repository at
GitHub](https://github.com/gap-system/gap).

### New and updated packages since GAP 4.8.10

There were 132 packages redistributed together with GAP 4.8.10. The
GAP 4.9.1 distribution includes 134 packages, including numerous
updates of previously redistributed packages, and some major changes
outlined below.

The libraries of small, primitive and transitive groups which previously
were an integral part of GAP were split into three separate packages
[PrimgGrp](http://gap-packages.github.io/primgrp/),
[SmallGrp](https://gap-packages.github.io/smallgrp/) and
[TransGrp](http://www.math.colostate.edu/~hulpke/transgrp/):

  - The **PrimGrp** package by Alexander Hulpke, Colva M. Roney-Dougal
    and Christopher Russell provides the library of primitive
    permutation groups which includes, up to permutation isomorphism
    (i.e., up to conjugacy in the corresponding symmetric group), all
    primitive permutation groups of degree \< 4096.

  - The **SmallGrp** package by Bettina Eick, Hans Ulrich Besche and
    Eamonn O’Brien provides the library of groups of certain "small"
    orders. The groups are sorted by their orders and they are listed up
    to isomorphism; that is, for each of the available orders a complete
    and irredundant list of isomorphism type representatives of groups
    is given.

  - The **TransGrp** package by Alexander Hulpke provides the library of
    transitive groups, with an optional download of the library of
    transitive groups of degree 32.

For backwards compatibility, these are required packages in GAP 4.9
(i.e., GAP will not start without them). We plan to change this for
GAP 4.10 (see
[#2434](https://github.com/gap-system/gap/pull/2434)), once all
packages which currently implicitly rely on these new packages had time
to add explicit dependencies on them
([#1650](https://github.com/gap-system/gap/pull/1650),
[#1714](https://github.com/gap-system/gap/pull/1714)).

The new **ZeroMQInterface** package by Markus Pfeiffer and Reimer
Behrends has been added for the redistribution. It provides both
low-level bindings as well as some higher level interfaces for the
[ZeroMQ](http://zeromq.org/) message passing library for GAP and
**HPC-GAP** enabling lightweight distributed computation.

The **HAPprime** package by Paul Smith is no longer redistributed with
GAP. Part of the code has been incorporated into the **HAP** package. Its
source code repository, containing the code of the last distributed
version, can still be found at <https://github.com/gap-packages/happrime>.

Also, the **ParGAP** package by Gene Cooperman is no longer
redistributed with GAP because it no longer can be compiled with GAP 4.9
(see [this announcement](https://mail.gap-system.org/pipermail/gap/2018-March/001082.html)).
Its source code repository, containing the code of the last distributed
version, plus some first fixes needed for compatibility for GAP 4.9, can
still be found at <https://github.com/gap-packages/pargap>. If somebody
is interested in repairing this package and taking over its maintenance,
so that it can be distributed again, please contact the GAP team.


## GAP 4.8.8 (August 2017)

### Fixed bugs that could lead to incorrect results:

  - Fixed a bug in `RepresentativeAction` producing incorrect answers for
    both symmetric and alternating groups, with both `OnTuples` and
    `OnSets`, by producing elements outside the group. (Reported by Mun
    See Chang)

### Fixed bugs that could lead to break loops:

  - Fixed a bug in `RepresentativeAction` for S_n and A_n acting on
    non-standard domains.

### Other fixed bugs:

  - Fixed a problem with checking the path to a file when using the
    default browser as a help viewer on Windows. (Reported by Jack
    Saunders)

### New and updated packages since GAP 4.8.7

This release contains updated versions of 29 packages from GAP 4.8.7
distribution. Additionally, the **Gpd** package (author: Chris Wensley)
has been renamed to **Groupoids**.


## GAP 4.8.7 (March 2017)

### Fixed bugs that could lead to incorrect results:

  - Fixed a regression from GAP 4.7.6 when reading compressed files after
    a workspace is loaded. Before the fix, if GAP is started with the
    `-L` option (load workspace), using `ReadLine` on the input stream
    for a compressed file returned by `InputTextFile` only returned the
    first character. (Reported by Bill Allombert)

### Other fixed bugs:

  - Fixed compiler warning occurring when GAP is compiled with gcc
    6.2.0. (Reported by Bill Allombert)

### New and updated packages since GAP 4.8.6

This release contains updated versions of 19 packages from GAP 4.8.6
distribution. Additionally, the following package has been added for the
redistribution with GAP:

  - **lpres** package (author: René Hartung, maintainer: Laurent
    Bartholdi) to work with L-presented groups, namely groups given by
    a finite generating set and a possibly infinite set of relations
    given as iterates of finitely many seed relations by a finite set
    of endomorphisms. The package implements nilpotent quotient,
    Todd-Coxeter and Reidemeister-Schreier algorithms for such groups.


## GAP 4.8.6 (November 2016)

### Fixed bugs that could lead to break loops:

  - Fixed regression in the GAP kernel code introduced in GAP
    4.8.5 and breaking `StringFile` ability to work with compressed
    files. (Reported by Bill Allombert)


## GAP 4.8.5 (September 2016)

### Improved and extended functionality:

  - The error messages produced when an unexpected `fail` is returned
    were made more clear by explicitly telling that the result should
    not be boolean or `fail` (before it only said "not a boolean").

  - For consistency, both `NrTransitiveGroups` and `TransitiveGroup` now
    disallow the transitive group of degree 1.

### Fixed bugs that could lead to incorrect results:

  - A bug in the code for algebraic field extensions over non-prime
    fields that may cause, for example, a list of all elements of the
    extension not being a duplicate-free. (Reported by Huta Gana)

  - So far, `FileString` only wrote files of sizes less than 2G and did
    not indicate an error in case of larger strings. Now strings of any
    length can be written, and in the case of a failure the
    corresponding system error is shown.

### Fixed bugs that could lead to break loops:

  - `NaturalHomomorphismByIdeal` was not reducing monomials before
    forming a quotient ring, causing a break loop on some inputs.
    (Reported by Dmytro Savchuk)

  - A bug in `DefaultInfoHandler` caused a break loop on startup with
    the setting `SetUserPreference( "InfoPackageLoadingLevel", 4
    )`\`. (Reported by Mathieu Dutour)

  - The `Iterator` for permutation groups was broken when the
    `StabChainMutable` of the group was not reduced, which can
    reasonably happen as the result of various algorithms.


## GAP 4.8.4 (June 2016)

### New features:

  - The GAP distribution now includes `bin/BuildPackages.sh`, a script
    which can be started from the `pkg` directory via
    `../bin/BuildPackages.sh` and will attempt to build as many
    packages as possible. It replaces the `InstPackages.sh` script
    which was not a part of the GAP distribution and had to be
    downloaded separately from the GAP website. The new script is more
    robust and simplifies adding new packages with binaries, as it
    requires no adjustments if the new package supports the standard
    `./configure; make` build procedure.

### Improved and extended functionality:

  - `SimpleGroup` now produces more informative error message in the case
    when `AtlasGroup` could not load the requested group.

  - An info message with the suggestion to use `InfoPackageLoading` will
    now be displayed when `LoadPackage` returns `fail` (unless GAP is
    started with `-b` option).

  - The build system will now enable C++ support in GMP only if a working
    C++ compiler is detected.

  - More checks were added when embedding coefficient rings or rational
    numbers into polynomial rings in order to forbid adding polynomials
    in different characteristic.

### Fixed bugs that could lead to crashes:

  - Fixed the crash in `--cover` mode when reading files with more than
    65,536 lines.

### Fixed bugs that could lead to incorrect results:

  - Fixed an error in the code for partial permutations that occurred on
    big-endian systems. (Reported by Bill Allombert)

  - Fixed the kernel method for `Remove` with one argument, which failed
    to reduce the length of a list to the position of the last bound
    entry. (Reported by Peter Schauenburg)

Fixed bugs that could lead to break loops:
### 
  - Fixed the break loop while using `Factorization` on permutation
    groups by removing some old code that relied on further caching in
    `Factorization`. (Reported by Grahame Erskine)

  - Fixed a problem with computation of maximal subgroups in an almost
    simple group. (Reported by Ramon Esteban Romero)

  - Added missing methods for `Intersection2` when one of the arguments
    is an empty list. (Reported by Wilf Wilson)

### Other fixed bugs:

  - Fixed several bugs in `RandomPrimitivePolynomial`. (Reported by Nusa
    Zidaric)

  - Fixed several problems with `Random` on long lists in 64-bit GAP
    installations.


## GAP 4.8.3 (March 2016)

### New features:

  - New function `TestPackage` to run standard tests (if available) for a
    single package in the current GAP session (also callable via `make
    testpackage PKGNAME=pkgname` to run package tests in the same
    settings that are used for testing GAP releases).

### Improved and extended functionality:

  - `TestDirectory` now prints a special status message to indicate the
    outcome of the test (this is convenient for automated testing). If
    necessary, this message may be suppressed by using the option
    `suppressStatusMessage`

  - Improved output of tracing methods (which may be invoked, for
    example, with `TraceAllMethods`) by displaying filename and line
    number in some more cases.

### Changed functionality:

  - Fixed some inconsistencies in the usage of `IsGeneratorsOfSemigroup`.

### Fixed bugs that could lead to incorrect results:

  - Fallback methods for conjugacy classes, that were never intended for
    infinite groups, now use `IsFinite` filter to prevent them being
    called for infinite groups. (Reported by Gabor Horvath)

### Fixed bugs that could lead to break loops:

  - Calculating stabiliser for the alternating group caused a break loop
    in the case when it defers to the corresponding symmetric group.

  - It was not possible to use `DotFileLatticeSubgroups` for a trivial
    group. (Reported by Sergio Siccha)

  - A break loop while computing `AutomorphismGroup` for
    `TransitiveGroup(12,269)`. (Reported by Ignat Soroko)

  - A break loop while computing conjugacy classes of `PSL(6,4)`.
    (Reported by Martin Macaj)

### Other fixed bugs:

  - Fix for using Firefox as a default help viewer with `SetHelpViewer`.
    (Reported by Tom McDonough)


## GAP 4.8.2 (February 2016)

This is the first public release of GAP 4.8.

The GAP development repository is now [hosted on
GitHub](https://github.com/gap-system/gap), and GAP 4.8 is the first major
GAP release made from this repository. The public issue tracker for the
core GAP system is located
[here](https://github.com/gap-system/gap/issues), and you may use
appropriate [milestones](https://github.com/gap-system/gap/milestones) to
see all changes that were introduced in corresponding GAP releases. An
overview of the most significant ones is provided below.

### New features:

  - Added support for profiling which tracks how much time in spent on
    each line of GAP code. This can be used to show where code is
    spending a long time and also check which lines of code are even
    executed. See the documentation for `ProfileLineByLine` and
    `CoverageLineByLine` for details on generating profiles, and the
    **Profiling** package for transforming these profiles into a
    human-readable form.

  - Added ability to install (in the library or packages) methods for
    accessing lists using multiple indices and indexing into lists
    using indices other than positive small integers. Such methods
    could allow, for example, to support expressions like

        m[1,2];
        m[1,2,3] := x;
        IsBound(m["a","b",Z(7)]);
        Unbind(m[1][2,3])

  - Added support for partially variadic functions to allow function
    expressions like

        function( a, b, c, x... ) ... end;

    which would require at least three arguments and assign the first
    three to a, b and c and then a list containing any remaining ones to
    x.

    The former special meaning of the argument arg is still supported
    and is now equivalent to `function( arg... )`, so no changes in the
    existing code are required.

  - Introduced `CallWithTimeout` and `CallWithTimeoutList` to call a
    function with a limit on the CPU time it can consume. This
    functionality may not be available on all systems and you should
    check `GAPInfo.TimeoutsSupported` before using this functionality.
    (These functions were withdrawn in GAP 4.9.)

  - GAP now displays the filename and line numbers of statements in
    backtraces when entering the break loop.

  - Introduced `TestDirectory` function to find (recursively) all `.tst`
    files from a given directory or a list of directories and run them
    using `Test`.

### Improved and extended functionality:

  - Method tracing shows the filename and line of function during
    tracing.

  - `TraceAllMethods` and `UntraceAllMethods` to turn on and off tracing
    all methods in GAP. Also, for the uniform approach
    `UntraceImmediateMethods` has been added as an equivalent of
    `TraceImmediateMethods(false)`.

  - The most common cases of `AddDictionary` on three arguments now
    bypass method selection, avoiding the cost of determining
    homogeneity for plain lists of mutable objects.

  - Improved methods for symmetric and alternating groups in the
    "natural" representations and removed some duplicated code.

  - Package authors may optionally specify the source code repository,
    issue tracker and support email address for their package using new
    components in the `PackageInfo.g` file, which will be used to
    create hyperlinks from the package overview page (see
    `PackageInfo.g` from the Example package which you may use as a
    template).

### Changed functionality:

  - As a preparation for the future developments to support
    multithreading, some language extensions from the **HPC-GAP**
    project were backported to the GAP library to help to unify the
    codebase of both GAP 4 and **HPC-GAP**. The only change which is
    not backwards compatible is that `atomic`, `readonly` and
    `readwrite` are now keywords, and thus are no longer valid
    identifiers. So if you have any variables or functions using that
    name, you will have to change it in GAP 4.8.

  - There was inconsistent use of the following properties of semigroups:
    `IsGroupAsSemigroup`, `IsMonoidAsSemigroup`, and
    `IsSemilatticeAsSemigroup`. `IsGroupAsSemigroup` was true for
    semigroups that mathematically defined a group, and for semigroups
    in the category `IsGroup`; `IsMonoidAsSemigroup` was only true for
    semigroups that mathematically defined monoids, but did not belong
    to the category `IsMonoid`; and `IsSemilatticeAsSemigroup` was
    simply a property of semigroups, as there is no category
    `IsSemilattice`.

    From version 4.8 onwards, `IsSemilatticeAsSemigroup` is renamed to
    `IsSemilattice`, and `IsMonoidAsSemigroup` returns true for semigroups
    in the category `IsMonoid`.

    This way all of the properties of the type `IsXAsSemigroup` are
    consistent. It should be noted that the only methods installed for
    `IsMonoidAsSemigroup` belong to the **Semigroups** and **Smallsemi**
    packages.

  - `ReadTest` became obsolete and for backwards compatibility is
    replaced by `Test` with the option to compare the output up to
    whitespaces.

  - The function `ErrorMayQuit`, which differs from `Error` by not
    allowing execution to continue, has been renamed to
    `ErrorNoReturn`.

### Fixed bugs:

  - A combination of two bugs could lead to a segfault. First off,
    `NullMat` (and various other GAP functions), when asked to produce
    matrix over a small field, called `ConvertToMatrixRep`. After this,
    if the user tried to change one of the entries to a value from a
    larger extension field, this resulted in an error. (This is now
    fixed).

    Unfortunately, the C code catching this error had a bug and allowed
    users to type "return" to continue while ignoring the conversion
    error. This was a bad idea, as the C code would be in an
    inconsistent state at this point, subsequently leading to a crash.

    This, too, has been fixed, by not allowing the user to ignore the
    error by entering "return".

  - The Fitting-free code and code inheriting PCGS is now using
    `IndicesEANormalSteps` instead of `IndicesNormalSteps`, as
    these indices are neither guaranteed, nor required to be
    maximally refined when restricting to subgroups.

  - A bug that caused a break loop in the computation of the Hall
    subgroup for groups having a trivial Fitting subgroup.

  - Including a `break` or `continue` statement in a function body
    but not in a loop now gives a syntax error instead of failing
    at run time.

  - `GroupGeneralMappingByImages` now verifies that that image of a
    mapping is contained in its range.

  - Fixed a bug in caching the degree of transformation that could
    lead to a non-identity transformation accidentally changing its
    value to the identity transformation.

  - Fixed the problem with using Windows default browser as a help
    viewer using `SetHelpViewer("browser");`.

### New and updated packages since GAP 4.7.8

At the time of the release of GAP 4.7.8 there were 119 packages
redistributed with GAP. New packages that have been added to the
redistribution since the release of GAP 4.7.8 are:

  - **CAP** (Categories, Algorithms, Programming) package by Sebastian
    Gutsche, Sebastian Posur and Øystein Skartsæterhagen, together with
    three associated packages **GeneralizedMorphismsForCAP**,
    **LinearAlgebraForCAP** and **ModulePresentationsForCAP** (all
    three - by Sebastian Gutsche and Sebastian Posur).

  - **Digraphs** package by Jan De Beule, Julius Jonušas, James Mitchell,
    Michael Torpey and Wilf Wilson, which provides functionality to
    work with graphs, digraphs, and multidigraphs.

  - **FinInG** package by John Bamberg, Anton Betten, Philippe Cara, Jan
    De Beule, Michel Lavrauw and Max Neunhöffer for computation in
    Finite Incidence Geometry.

  - **HeLP** package by Andreas Bächle and Leo Margolis, which computes
    constraints on partial augmentations of torsion units in integral
    group rings using a method developed by Luthar, Passi and Hertweck.
    The package can be employed to verify the Zassenhaus Conjecture and
    the Prime Graph Question for finite groups, once their characters
    are known. It uses an interface to the software package **4ti2** to
    solve integral linear inequalities.

  - **matgrp** package by Alexander Hulpke, which provides an interface
    to the solvable radical functionality for matrix groups, building
    on constructive recognition.

  - **NormalizInterface** package by Sebastian Gutsche, Max Horn and
    Christof Söger, which provides a GAP interface to **Normaliz**,
    enabling direct access to the complete functionality of
    **Normaliz**, such as computations in affine monoids, vector
    configurations, lattice polytopes, and rational cones.

  - **profiling** package by Christopher Jefferson for transforming
    profiles produced by `ProfileLineByLine` and `CoverageLineByLine`
    into a human-readable form.

  - **Utils** package by Sebastian Gutsche, Stefan Kohl and Christopher
    Wensley, which provides a collection of utility functions gleaned
    from many packages.

  - **XModAlg** package by Zekeriya Arvasi and Alper Odabas, which
    provides a collection of functions for computing with crossed
    modules and Cat1-algebras and morphisms of these structures.


## GAP 4.7.8 (June 2015)

### Fixed bugs which could lead to incorrect results:

  - Added two groups of degree 1575 which were missing in the library
    of first primitive groups. (Reported by Gordon Royle)

  - Fixed the error in the code for algebra module elements in packed
    representation caused by the use of `Objectify` with the type
    of the given object instead of `ObjByExtRep` as recommended in
    the reference manual. The problem was that after calculating
    `u+v` where one of the summands was known to be zero, this
    knowledge was wrongly passed to the sum via the type.
    (Reported by Istvan Szollosi)

  - Fixed a bug in `PowerMod` causing wrong results for univariate
    Laurent polynomials when the two polynomial arguments are
    stored with the same non-zero shift. (Reported by Max Horn)

### New Packages

  - **PatternClass** by Michael Albert, Ruth Hoffmann and Steve Linton,
    allowing to explore the permutation pattern classes build by token
    passing networks. Amongst other things, it can compute the basis of
    a permutation pattern class, create automata from token passing
    networks and check if the deterministic automaton is a possible
    representative of a token passing network.

  - **QPA** by Edward Green and Øyvind Solberg, providing data
    structures and algorithms for computations with finite dimensional
    quotients of path algebras, and with finitely generated modules over
    such algebras. It implements data structures for quivers, quotients
    of path algebras, and modules, homomorphisms and complexes of
    modules over quotients of path algebras.


## GAP 4.7.7 (February 2015)

### New features:

  - Introduced some arithmetic operations for infinity and negative
    infinity

  - Introduced new property `IsGeneratorsOfSemigroup` which reflects
    wheter the list or collection generates a semigroup.

### Fixed bugs which could lead to incorrect results:

  - Fixed a bug in `Union` (actually, in the internal library function
    `JoinRanges`) caused by downward running ranges. (Reported by Matt
    Fayers)

  - Fixed a bug where recursive records might be printed with the wrong
    component name, coming from component names being ordered
    differently in two different pieces of code. (Reported by Thomas
    Breuer)

  - The usage of `abs` in `src/gmpints.c` was replaced by `AbsInt`. The
    former is defined to operate on 32-bit integers even if GAP is
    compiled in 64-bit mode. That lead to truncating GAP integers and
    caused a crash in `RemInt`, reported by Willem De Graaf and Heiko
    Dietrich. Using `AbsInt` fixes the crash, and ensures the correct
    behaviour on 32-bit and 64-bit builds.

### Fixed bugs that could lead to break loops:

  - A problem with `ProbabilityShapes` not setting frequencies list for
    small degrees. (Reported by Daniel Błażewicz and independently by
    Mathieu Gagne)

  - An error when generating a free monoid of rank infinity. (Reported by
    Nick Loughlin)

  - Several bugs with the code for Rees matrix semigroups not handling
    trivial cases properly.

  - A bug in `IsomorphismTypeInfoFiniteSimpleGroup` affecting one
    particular group due to a misformatting in a routine that
    translates between the Chevalley type and the name used in the
    table (in this case, `"T"` was used instead of `["T"]`). (Reported
    by Petr Savicky)

### Other fixed bugs:

  - The `Basis` method for full homomorphism spaces of linear mappings
    did not set basis vectors which could be obtained by
    `GeneratorsOfLeftModule`.

  - A problem with `GaloisType` entering an infinite loop in the routine
    for approximating a root. (Reported by Daniel Błażewicz)

  - Fixed the crash when GAP is called when the environment variables
    `HOME` or `PATH` are unset. (Reported by Bill Allombert)

### New packages

  - **json** package by Christopher Jefferson, providing a mapping
    between the **JSON** markup language and GAP

  - **SglPPow** package by Bettina Eick and Michael Vaughan-Lee,
    providing the database of p-groups of order p^7 for p \> 11, and of
    order 3^8.


## GAP 4.7.6 (November 2014)

### Fixed bugs which could lead to incorrect results:

  - A bug that may cause `ShortestVectors` to return an incomplete list.
    (Reported by Florian Beye)

  - A bug that may lead to incorrect results and infinite loops when GAP
    is compiled without GMP support using gcc 4.9.

  - A bug that may cause `OrthogonalEmbeddings` to return an incomplete
    result. (Reported by Benjamin Sambale)

### Fixed bugs that could lead to break loops:

  - `ClosureGroup` should be used instead of `ClosureSubgroup` in case
    there is no parent group, otherwise some calculations such as e.g.
    `NormalSubgroups` may fail. (Reported by Dmitrii Pasechnik)

  - Fixed a line in the code that used a hard-coded identity permutation,
    not a generic identity element of a group. (Reported by Toshio
    Sumi)

  - Fixed a problem in the new code for calculating maximal subgroups
    that caused a break loop for some groups from the transitive groups
    library. (Reported by Petr Savicky)

  - Fixed a problem in `ClosureSubgroup` not accepting some groups
    without `Parent`. (Reported by Inneke van Gelder)

### Other fixed bugs:

  - Eliminated a number of compiler warnings detected with some newer
    versions of **C** compilers.

  - Some minor bugs in the transformation and partial permutation code
    and documentation were resolved.


## GAP 4.7.5 (May 2014)

### Fixed bugs which could lead to incorrect results:

  - `InstallValue` cannot handle immediate values, characters or booleans
    for technical reasons. A check for such values was introduced to
    trigger an error message and prevent incorrect results caused by
    this. (Reported by Sebastian Gutsche)

  - `KnowsDictionary` and `LookupDictionary` methods for
    `IsListLookupDictionary` were using `PositionFirstComponent`; the
    latter is only valid on sorted lists, but in
    `IsListLookupDictionary` the underlying list is NOT sorted in
    general, leading to bogus results.

### Other fixed bugs:

  - A bug in `DirectProductElementsFamily` which used
    `CanEasilyCompareElements` instead of `CanEasilySortElements`.

  - Fixed wrong `Infolevel` message that caused a break loop for some
    automorphism group computations.

  - Fixed an error that sometimes caused a break loop in `HallSubgroup`.
    (Reported by Benjamin Sambale)

  - Fixed a rare error in computation of conjugacy classes of a finite
    group by homomorphic images, providing fallback to a default
    algorithm.

  - Fixed an error in the calculation of Frattini subgroup in the case of
    the trivial radical.

  - Several minor bugs were fixed in the documentation, kernel, and
    library code for transformations.

  - Fixed errors in `NumberPerfectGroups` and
    `NumberPerfectLibraryGroups` not being aware that there are no
    perfect groups of odd order.

  - Restored the ability to build GAP on OS X 10.4 and 10.5 which was
    accidentally broken in the previous GAP release by using the build
    option not supported by these versions.

  - Fixed some problems for ia64 and sparc architectures. (Reported by
    Bill Allombert and Volker Braun)

### New packages

  - **permut** package by A.Ballester-Bolinches, E.Cosme-Llópez, and
    R.Esteban-Romero to deal with permutability in finite groups.


## GAP 4.7.4 (February 2014)

This release was prepared immediately after GAP 4.7.3 to revert the
fix of the error handling for the single quote at the end of an input
line, contained in GAP 4.7.3. It happened that (only on Windows) the
fix caused error messages in one of the packages.


## GAP 4.7.3 (February 2014)

### Fixed bugs which could lead to incorrect results:

  - Incorrect result returned by `AutomorphismGroup(PSp(4,2^n))`.
    (Reported by Anvita)

  - The `Order` method for group homomorphisms newly introduced in
    GAP 4.7 had a bug that caused it to sometimes return incorrect
    results. (Reported by Benjamin Sambale)

### Fixed bugs that could lead to break loops:

  - Several bugs were fixed and missing methods were introduced in the
    new code for transformations, partial permutations and semigroups
    that was first included in GAP 4.7. Some minor corrections were
    made in the documentation for transformations.

  - Break loop in `IsomorphismFpMonoid` when prefixes in generators names
    were longer than one letter. (Reported by Dmytro Savchuk and Yevgen
    Muntyan)

  - Break loop while displaying the result of
    `MagmaWithInversesByMultiplicationTable`. (Reported by Grahame
    Erskine)

### Improved functionality:

  - Better detection of UTF-8 terminal encoding on some systems.
    (Suggested by Andries Brouwer)


## GAP 4.7.2 (December 2013)

This is the first public release of GAP 4.7.

### Improved and extended functionality:

  - The methods for computing conjugacy classes of permutation groups
    have been rewritten from scratch to enable potential use for groups
    in different representations. As a byproduct the resulting code is
    (sometimes notably) faster. It also now is possible to calculate
    canonical conjugacy class representatives in permutation groups,
    which can be beneficial when calculating character tables.

  - The methods for determining (conjugacy classes of) subgroups in
    non-solvable groups have been substantially improved in speed and
    scope for groups with multiple nonabelian composition factors.

  - There is a new method for calculating the maximal subgroups of a
    permutation group (with chief factors of width less or equal 5)
    without calculating the whole subgroup lattice.

  - If available, information from the table of marks library is used to
    speed up subgroup calculations in almost simple factor groups.

  - The broader availability of maximal subgroups is used to improve the
    calculation of double cosets.

  - To illustrate the improvements listed above, one could try, for
    example

        g:=WreathProduct(MathieuGroup(11),Group((1,2)));
        Length(ConjugacyClassesSubgroups(g));

    and

        g:=SemidirectProduct(GL(3,5),GF(5)^3);
        g:=Image(IsomorphismPermGroup(g));
        MaximalSubgroupClassReps(g);

  - Computing the exponent of a finite group G could be extremely slow.
    This was due to a slow default method being used, which computed all
    conjugacy classes of elements in order to compute the exponent. We
    now instead compute Sylow subgroups P_1, ..., P_k of G and use the
    easily verified equality exp(G) = exp(P_1) x ... x exp(P_k). This
    is usually at least as fast and in many cases orders of magnitude
    faster.

        gap> G:=SmallGroup(2^7*9,33);;
        gap> H:=DirectProduct(G, ElementaryAbelianGroup(2^10));;
        gap> Exponent(H); # should take at most a few milliseconds
        72
        gap> K := PerfectGroup(2688,3);;
        gap> Exponent(K); # should take at most a few seconds
        168

  - The functionality in GAP for transformations and transformation
    semigroups has been rewritten and extended. Partial permutations and
    inverse semigroups have been newly implemented. The documentation
    for transformations and transformation semigroups has been improved.
    Transformations and partial permutations are implemented in the
    GAP kernel. Methods for calculating attributes of
    transformations and partial permutations, and taking products, and
    so are also implemented in the kernel. The new implementations are
    largely backwards compatible; some exceptions are given below.

    The degree of a transformation `f` is usually defined as the largest
    positive integer where `f` is defined. In previous versions of
    GAP, transformations were only defined on positive integers less
    than their degree, it was only possible to multiply transformations
    of equal degree, and a transformation did not act on any point
    exceeding its degree. Starting with GAP 4.7, transformations
    behave more like permutations, in that they fix unspecified points
    and it is possible to multiply arbitrary transformations.

      - in the display of a transformation, the trailing fixed points
        are no longer printed. More precisely, in the display of a
        transformation `f` if `n` is the largest value such that
        `n^f<>n` or `i^f=n` for some `i<>n`, then the values exceeding
        `n` are not printed.

      - the display for semigroups of transformations now includes more
        information, for example `<transformation semigroup on 10 pts
        with 10 generators>` and `<inverse partial perm semigroup on 10
        pts with 10 generators>`.

      - transformations which define a permutation can be inverted, and
        groups of transformations can be created.

    Further information regarding transformations and partial
    permutations, can be found in the relevant chapters of the reference
    manual.

    The code for Rees matrix semigroups has been completely rewritten to
    fix the numerous bugs in the previous versions. The display of a
    Rees matrix semigroup has also been improved to include the numbers
    of rows and columns, and the underlying semigroup. Again the new
    implementations should be backwards compatible with the exception
    that the display is different.

    The code for magmas with a zero adjoined has been improved so that
    it is possible to access more information about the original magma.
    The display has also been changed to indicate that the created magma
    is a magma with zero adjoined (incorporating the display of the
    underlying magma). Elements of a magma with zero are also printed so
    that it is clear that they belong to a magma with zero.

    If a semigroup is created by generators in the category
    IsMultiplicativeElementWithOneCollection and
    CanEasilyCompareElements, then it is now checked if the One of the
    generators is given as a generator. In this case, the semigroup is
    created as a monoid.

  - Added a new operation `GrowthFunctionOfGroup` that gives sizes of
    distance spheres in the Cayley graph of a group.

  - A new group constructor `FreeAbelianGroup` for free abelian
    groups has been added. By default, it creates suitable fp
    groups. Though free abelian groups groups do not offer much
    functionality right now, in the future other implementations
    may be provided, e.g. by the **Polycyclic** package.

  - The message about halving the pool size at startup is only shown
    when `-D` command line option is used. (Suggested by Volker
    Braun)

  - An info class called `InfoObsolete` with the default level 0 is
    introduced. Setting it to 1 will trigger warnings at runtime if
    an obsolete variable declared with `DeclareObsoleteSynonym` is
    used. This is recommended for testing GAP distribution and
    packages.

  - The GAP help system now recognises some common different spelling
    patterns (for example, -ise/-ize, -isation/-ization,
    solvable/soluble) and searches for all possible spelling
    options even when the synonyms are not declared.

  - Added new function `Cite` which produces citation samples for GAP
    and packages.

  - It is now possible to compile GAP with user-supplied `CFLAGS`
    which now will not be overwritten by GAP default settings.
    (Suggested by Jeroen Demeyer)

### Fixed bugs:

  - `Union` had O(n^3) behaviour when given many ranges (e.g. it could
    take 10 seconds to find a union of 1000 1-element sets). The new
    implementation reduces that to O(n log n) (and 4ms for the 10
    second example), at the cost of not merging ranges as well as
    before in some rare cases.

  - `IsLatticeOrderBinaryRelation` only checked the existence of upper
    bounds but not the uniqueness of the least upper bound (and dually
    for lower bounds), so in some cases it could return the wrong
    answer. (Reported by Attila Egri-Nagy)

  - `LowIndexSubgroupsFpGroup` triggered a break loop if the list of
    generators of the 2nd argument contained the identity element of
    the group. (Reported by Ignat Soroko)

  - Fixed regression in heuristics used by
    `NaturalHomomorphismByNormalSubgroup` that could produce a
    permutation representation of an unreasonably large degree.
    (Reported by Izumi Miyamoto)

  - Fixed inconsistent behaviour of `QuotientMod( Integers, r, s, m )` in
    the case where s and m are not coprime. This fix also corrects the
    division behaviour of `ZmodnZ` objects, see `QuotientMod` and
    `ZmodnZ`. (Reported by Mark Dickinson)

  - Fixed an oversight in the loading process causing `OnQuit` not
    resetting the options stack after exiting the break loop.

  - Empty strings were treated slightly differently than other strings
    in the GAP kernel, for historical reasons. This resulted in
    various inconsistencies. For example, `IsStringRep("")` returned
    true, but a method installed for arguments of type `IsStringRep`
    would NOT be invoked when called with an empty string.

    We remove this special case in the GAP kernel (which dates back
    the very early days of GAP 4 in 1996). This uncovered one issue
    in the kernel function `POSITION_SUBSTRING` (when calling it with an
    empty string as second argument), which was also fixed.

  - The parser for floating point numbers contained a bug that could
    cause GAP to crash or to get into a state where the only action
    left to the user was to exit GAP via Ctrl-D. For example,
    entering four dots with spaces between them on the GAP prompt
    and then pressing the return key caused GAP to exit.

    The reason was (ironically) an error check in the innards of the
    float parser code which invoked the GAP `Error()` function at a
    point where it should not have.

  - Removing the last character in a string was supposed to overwrite the
    old removed character in memory with a zero byte, but failed to do
    so due to an off-by-one error. For most GAP operations, this has no
    visible effect, except for those which directly operate on the
    underlying memory representation of strings. For example, when
    trying to use such a string to reference a record entry, a
    (strange) error could be triggered.

  - `ViewString` and `DisplayString` are now handling strings, characters
    and immediate FFEs in a consistent manner.

  - Multiple fixes to the build process for less common Debian platforms
    (arm, ia64, mips, sparc, GNU/Hurd). (Suggested by Bill Allombert)

  - Fixes for several regressions in the `gac` script. (Suggested by Bill
    Allombert)

### Changed functionality:

  - It is not possible now to call `WreathProduct` with 2nd argument H
    not being a permutation group, without using the 3rd argument
    specifying the permutation representation. This is an incompatible
    change but it will produce an error instead of a wrong result. The
    former behaviour of `WreathProduct` may now be achieved by using
    `StandardWreathProduct` which returns the wreath product for the
    (right regular) permutation action of H on its elements.

  - The function `ViewLength` to specify the maximal number of lines that
    are printed in `ViewObj` became obsolete, since there was already a
    user preference `ViewLength` to specify this. The value of this
    preference is also accessible in `GAPInfo.ViewLength`.

### New and updated packages since GAP 4.6.5

At the time of the release of GAP 4.6.5 there were 107 packages
redistributed with GAP. The first public release of GAP 4.7
contains 114 packages.

One of essential changes is that the **Citrus** package by J.Mitchell
has been renamed to **Semigroups**. The package has been completely
overhauled, the performance has been improved, and the code has been
generalized so that in the future the same code can be used to compute
with other types of semigroups.

Furthermore, new packages that have been added to the redistribution
since the release of GAP 4.6.5 are:

  - **4ti2interface** package by Sebastian Gutsche, providing an
    interface to [**4ti2**](http://www.4ti2.de), a software package
    for algebraic, geometric and combinatorial problems on linear
    spaces.

  - **CoReLG** by Heiko Dietrich, Paolo Faccin and Willem de Graaf for
    calculations in real semisimple Lie algebras.

  - **IntPic** package by Manuel Delgado, aimed at providing a simple
    way of getting a pictorial view of sets of integers. The main goal
    of the package is producing **Tikz** code for arrays of integers.
    The code produced is to be included in a LaTeX file, which can then
    be processed. Some of the integers are emphasized by using different
    colors for the cells containing them.

  - **LieRing** by Serena Cicalo and Willem de Graaf for constructing
    finitely-presented Lie rings and calculating the Lazard
    correspondence. The package also provides a database of small
    n-Engel Lie rings.

  - **LiePRing** package by Michael Vaughan-Lee and Bettina Eick,
    introducing a new datastructure for nilpotent Lie rings of
    prime-power order. This allows to define such Lie rings for specific
    primes as well as for symbolic primes and other symbolic parameters.
    The package also includes a database of nilpotent Lie rings of order
    at most p^7 for all primes p \> 3.

  - **ModIsom** by Bettina Eick, which contains various methods for
    computing with nilpotent associative algebras. In particular, it
    contains a method to determine the automorphism group and to test
    isomorphisms of such algebras over finite fields and of modular
    group algebras of finite p-groups. Further, it contains a nilpotent
    quotient algorithm for finitely presented associative algebras and a
    method to determine Kurosh algebras.

  - **SLA** by Willem de Graaf for computations with simple Lie
    algebras. The main topics of the package are nilpotent orbits,
    theta-groups and semisimple subalgebras.

Furthermore, some packages have been upgraded substantially since the
GAP 4.6.5 release:

  - **ANUPQ** package by Greg Gamble, Werner Nickel and Eamonn O'Brien
    has been updated after Max Horn joined it as a maintainer. As a
    result, it is now much easier to install and use it with the current
    GAP release.

  - **Wedderga** package by Osnel Broche Cristo, Allen Herman, Alexander
    Konovalov, Aurora Olivieri, Gabriela Olteanu, Ángel del Río and
    Inneke Van Gelder has been extended to include functions for
    calculating local and global Schur indices of ordinary irreducible
    characters of finite groups, cyclotomic algebras over abelian number
    fields, and rational quaternion algebras (contribution by Allen
    Herman).


## GAP 4.6.5 (July 2013)

### Improved functionality:

  - `TraceMethods` and `UntraceMethods` now better check their
    arguments and provide a sensible error message if being called
    without arguments. Also, both variants of calling them are now
    documented.

  - Library methods for `Sortex` are now replaced by faster ones
    using the kernel `SortParallel` functionality instead of making
    expensive zipped lists.

### Fixed bugs which could lead to incorrect results:

  - `IntHexString` wrongly produced a large integer when there were
    too many leading zeros. (Reported by Joe Bohanon)

### Fixed bugs that could lead to break loops:

  - A bug that may occur in some cases while calling
    `TransitiveIdentification`. (Reported by Izumi Miyamoto)

  - The new code for semidirect products of permutation groups,
    introduced in GAP 4.6, had a bug which was causing problems for
    `Projection`. (Reported by Graham Ellis)


## GAP 4.6.4 (April 2013)

### New functionality:

  - New command line option `-O` was introduced to disable loading
    obsolete variables. This option may be used, for example, to
    check that they are not used in a GAP package or one's own GAP
    code.

### Fixed bugs which could lead to incorrect results:

  - Fixed the bug in `NewmanInfinityCriterion` which may cause
    returning `true` instead of `false`. (Reported by Lev
    Glebsky)

### Fixed bugs which could lead to crashes:

  - Fixed the kernel method for `Remove` which did not raise an error
    in case of empty lists, but corrupted the object. The error
    message in a library method is also improved. (Reported by
    Roberto Ràdina)

### Fixed bugs that could lead to break loops:

  - Fixed requirements in a method to multiply a list and an
    algebraic element. (Reported by Sebastian Gutsche)

  - Fixed a bug in `NaturalCharacter` entering a break loop when
    being called on a homomorphism whose image is not a permutation
    group. (Reported by Sebastian Gutsche)

  - Fixed a bug in `ExponentsConjugateLayer` which occured, for
    example, in some calls of `SubgroupsSolvableGroup` (Reported
    by Ramon Esteban-Romero)

  - Fixed a problem with displaying function fields, e.g.
    `Field(Indeterminate(Rationals,"x"))`. (Reported by Jan Willem
    Knopper)

  - Fixed two bugs in the code for `NaturalHomomorphismByIdeal` for
    polynomial rings. (Reported by Martin Leuner)

  - Added missing method for `String` for `-infinity`.

  - Fixed the bug with `ONanScottType` not recognising product action
    properly in some cases.

  - The method for `SlotUsagePattern` for straight line programs had
    a bug which triggered an error, if the straight line program
    contained unnecessary steps.


## GAP 4.6.3 (March 2013)

### Improved functionality:

  - Several changes were made to `IdentityMat` and `NullMat`. First off,
    the documentation was changed to properly state that these
    functions support arbitrary rings, and not just fields. Also, more
    usage examples were added to the manual.

    For `NullMat`, it is now also always possible to specify a ring element
    instead of a ring, and this is documented. This matches existing
    `IdentityMat` behavior, and partially worked before (undocumented), but
    in some cases could run into error or infinite recursion.

    In the other direction, if a finite field element, `IdentityMat` now
    really creates a matrix over the smallest field containing that element.
    Previously, a matrix over the prime field was created instead, contrary
    to the documentation.

    Furthermore, `IdentityMat` over small finite fields is now substantially
    faster when creating matrices of large dimension (say a thousand or so).

    Finally, `MutableIdentityMat` and `MutableNullMat` were explicitly
    declared obsolete (and may be removed in GAP 4.7). They actually were
    deprecated since GAP 4.1, and their use discouraged by the manual. Code
    using them should switch to `IdentityMat` respectively `NullMat`.

  - Two new `PerfectResiduum` methods were added for solvable and perfect
    groups, handling these cases optimally. Moreover, the existing
    generic method was improved by changing it to use
    `DerivedSeriesOfGroup`. Previously, it would always compute the
    derived series from scratch and then throw away the result.

  - A new `MinimalGeneratingSet` method for groups handled by a nice
    monomorphisms was added, similar to the existing
    `SmallGeneratingSet` method. This is useful if the nice
    monomorphism is already mapping into a pc or pcp group.

  - Added a special method for `DerivedSubgroup` if the group is known to
    be abelian.

### Fixed bugs:

  - Fixed a bug in `PowerModInt` computing r^e mod m in a special case
    when e=0 and m=0. (Reported by Ignat Soroko)

  - `CoefficientsQadic` now better checks its arguments to avoid an
    infinite loop when being asked for a q-adic representation for q=1.
    (Reported by Ignat Soroko)

  - Methods for `SylowSubgroupOp` (see `SylowSubgroup`) for symmetric and
    alternating group did not always set `IsPGroup` and `PrimePGroup`
    for the returned Sylow subgroup.

  - Display of matrices consisting of Conway field elements (which are
    displayed as polynomials) did not print constant 1 terms.

  - Added an extra check and a better error message in the method to
    access *natural* generators of domains using the `.` operator (see
    `GeneratorsOfDomain`).

  - Trying to solve the word problem in an fp group where one or more
    generators has a name of more than one alphabetic character led to
    a break loop.

  - Provided the default method for `AbsoluteIrreducibleModules` as a
    temporary workaround for the problem which may cause returning
    wrong results or producing an error when being called for a
    non-prime field.

  - A bug in the GAP kernel caused `RNamObj` to error out when called
    with a string that had the `IsSSortedList` property set (regardless
    of whether it was set to `true` or `false`). This in turn would
    lead to strange (and inappropriate) errors when using such a string
    to access entries of a record.

  - GAP can store vectors over small finite fields (size at most 256) in
    a special internal data representation where each entry of the
    vector uses exactly one byte. Due to an off-by-one bug, the case of
    a field with exactly 256 elements was not handled properly. As a
    result, GAP failed to convert a vector to the special data
    representation, which in some situations could lead to a crash. The
    off-by-one error was fixed and now vectors over GF(256) work as
    expected.

  - A bug in the code for accessing sublist via the `list{poss}` syntax
    could lead to GAP crashing. Specifically, if the list was a
    compressed vector over a finite field, and the sublist syntax was
    nested, as in `vec{poss1}{poss2}`. This now correctly triggers an
    error instead of crashing.

### New packages

  - **SpinSym** package by L. Maas, which contains Brauer tables of
    Schur covers of symmetric and alternating groups and provides some
    related functionalities.


## GAP 4.6.2 (February 2013)

This is the first public release of GAP 4.6.

### Improved and extended functionality:

  - It is now possible to declare a name as an operation with two or more
    arguments (possibly several times) and *THEN* declare it as an
    attribute. Previously this was only possible in the other order.
    This should make the system more independent of the order in which
    packages are loaded.

  - Words in fp groups are now printed in factorised form if possible and
    not too time-consuming, i.e. `a*b*a*b*a*b` will be printed as
    `(a*b)^3`.

  - Added methods to calculate Hall subgroups in nonsolvable groups.

  - Added a generic method for `IsPSolvable` and a better generic method
    for `IsPNilpotent` for groups.

  - Improvements to action homomorphisms: image of an element can use
    existing stabiliser chain of the image group (to reduce the number
    of images to compute), preimages under linear/projective action
    homomorphisms use linear algebra to avoid factorisation.

  - To improve efficiency, additional code was added to make sure that
    the `HomePcgs` of a permutation group is in `IsPcgsPermGroupRep`
    representation in more cases.

  - Added an operation `SortBy` with arguments being a function f of one
    argument and a list l to be sorted in such a way that `l(f[i]) <=
    l(f[i+1])`.

  - Added a kernel function `MEET_BLIST` which returns `true` if the two
    boolean lists have `true` in any common position and `false`
    otherwise. This is useful for representing subsets of a fixed set
    by boolean lists.

  - When assigning to a position in a compressed FFE vector GAP now
    checks to see if the value being assigned can be converted into an
    internal FFE element if it isn't one already. This uses new
    attribute `AsInternalFFE`, for which methods are installed for
    internal FFEs, Conway FFEs and ZmodpZ objects.

  - Replaced `ViewObj` method for fields by `ViewString` method to
    improve the way how polynomial rings over algebraic extenstions of
    fields are displayed.

  - Made the info string (optional 2nd argument to
    `InstallImmediateMethod`) behave similarly to the info string in
    `InstallMethod`. In particular, `TraceImmediateMethods` now always
    prints the name of the operation.

  - Syntax errors such as `Unbind(x,1)` had the unhelpful property that
    `x` got unbound before the syntax error was reported. A specific
    check was added to catch this and similar cases a little earlier.

  - Allow a `GAPARGS` parameter to the top-level GAP `Makefile` to pass
    extra arguments to the GAP used for manual building.

  - Added an attribute `UnderlyingRingElement` for Lie objects.

  - The function `PrimeDivisors` now became an attribute. (suggested by
    Mohamed Barakat)

  - Added an operation `DistancePerms` with a kernel method for internal
    permutations and a generic method.

  - Added a method for `Subfields` to support large finite fields.
    (reported by Inneke van Gelder)

### Fixed bugs which could lead to crashes:

  - The extremely old `DEBUG_DEADSONS_BAGS` compile-time option has not
    worked correctly for many years and indeed crashes GAP. The type of
    bug it is there to detect has not arisen in many years and we have
    certainly not used this option, so it has been removed. (Reported
    by Volker Braun)

### Other fixed bugs:

  - Scanning of floating point literals collided with iterated use of
    integers as record field elements in expressions like `r.1.2`.

  - Fixed two potential problems in `NorSerPermPcgs`, one corrupting some
    internal data and one possibly mixing up different pcgs.

  - Fixed a performance problem with `NiceMonomorphism`. (reported by
    John Bamberg)

  - Fixed a bug in `ReadCSV` that caused some `.csv` files being parsed
    incorrectly.

### No longer supported:

  - The file `lib/consistency.g`, which contained three undocumented
    auxiliary functions, has been removed from the library. In addition,
    the global record `Revision` is now deprecated, so there is no need
    to bind its components in GAP packages.

### New and updated packages since GAP 4.5.4

At the time of the release of GAP 4.5 there were 99 packages
redistributed with GAP. The first public release of GAP 4.6
contains 106 packages.

The new packages that have been added to the redistribution since the
release of GAP 4.5.4 are:

  - **AutoDoc** package by S. Gutsche, providing tools for automated
    generation of **GAPDoc** manuals.

  - **Congruence** package by A. Konovalov, which provides functions to
    construct various canonical congruence subgroups in SL_2(ℤ), and
    also intersections of a finite number of such subgroups, implements
    the algorithm for generating Farey symbols for congruence subgroups
    and uses it to produce a system of independent generators for these
    subgroups.

  - **Convex** package by S. Gutsche, which provides structures and
    algorithms for convex geometry.

  - **Float** package by L. Bartholdi, which extends GAP
    floating-point capabilities by providing new floating-point handlers
    for high-precision real, interval and complex arithmetic using MPFR,
    MPFI, MPC or CXSC external libraries. It also contains a very
    high-performance implementation of the LLL (Lenstra-Lenstra-Lovász)
    lattice reduction algorithm via the external library FPLLL.

  - **PolymakeInterface** package by T. Baechler and S. Gutsche,
    providing a link to the callable library of the
    [**polymake**](http://www.polymake.org) system.

  - **ToolsForHomalg** package by M. Barakat, S. Gutsche and M.
    Lange-Hegermann, which provides some auxiliary functionality for the
    [**homalg**](http://homalg.math.rwth-aachen.de/) project.

  - **ToricVarieties** package by S. Gutsche, which provides data
    structures to handle toric varieties by their commutative algebra
    structure and by their combinatorics.

Furthermore, some packages have been upgraded substantially since the
GAP 4.5.4 release:

  - Starting from 2.x.x, the functionality for iterated monodromy groups
    has been moved from the **FR** package by L. Bartholdi to a separate
    package IMG (currently undeposited, available at
    <https://github.com/laurentbartholdi/img>). This completely removes
    the dependency of **FR** on external library modules, and should
    make its installation much easier.


## GAP 4.5.7 (December 2012)

### Fixed bugs which could lead to crashes:

  - Closing with `LogInputTo` (or `LogOutputTo`) a logfile opened with
    `LogTo` left the data structures corrupted, resulting in a crash.

  - On 32-bit systems we can have long integers `n` such that
    `Log2Int(n)` is not an immediate integer. In such cases `Log2Int`
    gave wrong or corrupted results which in turn could crash GAP,
    e.g., in `ViewObj(n)`.

  - Some patterns of use of `UpEnv` and `DownEnv` were leading to a
    segfault.

### Other fixed bugs:

  - Viewing of long negative integers was broken, because it went into a
    break loop.

  - Division by zero in `ZmodnZ` (n not prime) produced invalid objects.
    (Reported by Mark Dickinson)

  - Fixed a bug in determining multiplicative inverse for a zero
    polynomial.

  - Fixed a bug causing infinite recursion in
    `NaturalHomomorphismByNormalSubgroup`.

  - A workaround was added to deal with a package method creating pcgs
    for permutation groups for which the entry `permpcgsNormalSteps` is
    missing.

  - For a semigroup of associative words that is not the full semigroup
    of all associative words, the methods for `Size` and `IsTrivial`
    called one another causing infinite recursion.

  - The 64-bit version of the `gac` script produced wrong (\>= 2^31) CRC
    values because of an integer conversion problem.

  - It was not possible to compile GAP on some systems where
    `HAVE_SELECT` detects as false.

  - Numbers in memory options on the command line exceeding 2^32 could
    not be parsed correctly, even on 64-bit systems. (Reported by
    Volker Braun)

### New packages added for the redistribution with GAP:

  - **Float** package by L. Bartholdi, which extends GAP
    floating-point capabilities by providing new floating-point handlers
    for high-precision real, interval and complex arithmetic using MPFR,
    MPFI, MPC or CXSC external libraries. It also contains a very
    high-performance implementation of the LLL (Lenstra-Lenstra-Lovász)
    lattice reduction algorithm via the external library FPLLL.

  - **ToricVarieties** package by S. Gutsche, which provides data
    structures to handle toric varieties by their commutative algebra
    structure and by their combinatorics.


## GAP 4.5.6 (September 2012)

### Improved functionality:

  - The argument of `SaveWorkspace` can now start with `~/` which is
    expanded to the users home directory.

  - Added the method for `Iterator` for `PositiveIntegers`. (Suggested by
    Attila Egri-Nagy).

  - Changed kernel tables such that list access functionality for
    `T_SINGULAR` objects can be installed by methods at the GAP level.

  - In case of saved history, "UP" arrow after starting GAP yields last
    stored line. The user preference `HistoryMaxLines` is now used when
    storing and saving history (see `SetUserPreference`).

### Fixed bugs which could lead to crashes:

  - A crash occuring during garbage collection following a call to
    `AClosVec` for a `GF(2)` code. (Reported by Volker Braun)

  - A crash when parsing certain syntactically invalid code. (Reported by
    multiple users)

  - Fixed and improved command line editing without readline support.
    Fixed a segfault which could be triggered by a combination of "UP"
    and "DOWN" arrows. (Reported by James Mitchell)

  - Fixed a bug in the kernel code for floats that caused a crash on
    SPARC Solaris in 32-bit mode. (Reported by Volker Braun)

### Other fixed bugs:

  - Very large (more than 1024 digit) integers were not being coded
    correctly in function bodies unless the integer limb size was 16
    bits. (Reported by Stefan Kohl)

  - An old variable was used in assertion, causing errors in a debugging
    compilation. (Reported by Volker Braun)

  - The environment variable `PAGER` is now correctly interpreted when it
    contains the full path to the pager program. Furthermore, if the
    external pager `less` is found from the environment it is made sure
    that the option `-r` is used (same for `more -f`). (Reported by
    Benjamin Lorenz)

  - Fixed a bug in `PermliftSeries`. (Reported by Aiichi Yamasaki)

  - Fixed discarder function in lattice computation to distinguish
    general and zuppo discarder. (Reported by Leonard Soicher)

  - The `GL` and `SL` constructors did not correctly handle
    `GL(filter,dim,ring)`.

  - The names of two primitive groups of degree 64 were incorrect.

  - The `\in` method for groups handled by a nice monomorphism sometimes
    could produce an error in situations where it should return false.
    This only happened when using `SeedFaithfulAction` to influence how
    `NiceMonomorphism` builds the nice monomorphims for a matrix
    groups.

  - Wrong `PrintObj` method was removed to fix delegations accordingly to
    the reference manual.

  - Fixed a method for `Coefficients` which, after Gaussian elimination,
    did not check that the coefficients actually lie in the
    left-acting-domain of the vector space. This could lead to a wrong
    answer in a vector space membership test. (Reported by Kevin
    Watkins)

### Improved documentation:

  - Removed outdated statements from the documentation of
    `StructureDescription` which now non-ambiguosly states that
    `StructureDescription` is not an isomorphism invariant:
    non-isomorphic groups can have the same string value, and two
    isomorphic groups in different representations can produce
    different strings.

  - GAP now allows overloading of a loaded help book by another one. In
    this case, only a warning is printed and no error is raised. This
    makes sense if a book of a not loaded package is loaded in a
    workspace and then GAP is started with a root path that contains a
    newer version. (Reported by Sebastian Gutsche)

  - Provided a better description of user preferences mechanism and a
    hint to familiarise with them using `WriteGapIniFile` function to
    create a file which contains descriptions of all known user
    preferences and also sets those user preferences which currently do
    not have their default value. One can then edit that file to
    customize (further) the user preferences for future GAP sessions.

### New packages

  - **AutoDoc** package by S. Gutsche, providing tools for automated
    generation of **GAPDoc** manuals.

  - **Convex** package by S. Gutsche, which provides structures and
    algorithms for convex geometry.

  - **PolymakeInterface** package by T. Baechler and S. Gutsche,
    providing a link to the callable library of the
    [**polymake**](http://www.polymake.org) system.

  - **ToolsForHomalg** package by M. Barakat, S. Gutsche and M.
    Lange-Hegermann, which provides some auxiliary functionality for
    the [**homalg**](http://homalg.math.rwth-aachen.de/) project.


## GAP 4.5.5 (July 2012)

### Fixed bugs which could lead to crashes:

  - For small primes (compact fields) `ZmodnZObj(r,p)` now returns the
    corresponding FFE to avoid crashes when compacting matrices.
    (Reported by Ignat Soroko)

### Other fixed bugs:

  - Fixed a bug in `CommutatorSubgroup` for fp groups causing infinite
    recursion, which could, for example, be triggered by computing
    automorphism groups.

  - Previously, the list of factors of a polynomial was mutable, and
    hence could be accidentally corrupted by callers. Now the list of
    irreducible factors is stored immutable. To deal with implicit
    reliance on old code, always a shallow copy is returned. (reported
    by Jakob Kroeker)

  - Computing high powers of matrices ran into an error for matrices in
    the format of the **cvec** package. Now the library function also
    works with these matrices. (reported by Klaus Lux)

  - The pseudo tty code which is responsible for spawning subprocesses
    has been partially rewritten to allow more than 128 subprocesses on
    certain systems. This mechanism is for example used by **ANUPQ**
    and **nq** packages to compute group quotients via an external
    program. Previously, on Mac OS X this could be done precisely 128
    times, and then an error would occur. That is, one could e.g.
    compute 128 nilpotent quotients, and then had to restart GAP to
    compute more. This also affected other systems, such as OpenBSD,
    where it now also works correctly.

  - On Mac OS X, using GAP compiled against GNU readline 6.2, pasting
    text into the terminal session would result in this text appearing
    very slowly, with a 0.1 sec delay between each "keystroke". This is
    not the case with versions 6.1 and older, and has been reported to
    the GNU readline team. In the meantime, we work around this issue
    in most situations by setting `rl_event_hook` only if
    `OnCharReadHookActive` is set.

  - `ShowUserPreferences` ran into a break loop in case of several
    undeclared user preferences. (Reported by James Mitchell)

  - GAP did not start correctly if the user preference
    `"InfoPackageLoadingLevel"` was set to a number \>= 3. The reason
    is that `PrintFormattedString` was called before it was installed.
    The current fix is a temporary solution.

  - The `"hints"` member of `TypOutputFile` used to contain 3\*100
    entries, yet `addLineBreakHint` would write entries with index up
    to and including 3\*99+3=300, leading to a buffer overflow. This
    would end up overwriting the `"stream"` member with -1. Fixed by
    incrementing the size of `"hints"` to 301. (Reported by Jakob
    Kroeker)

  - The function `IsDocumentedWord` tested the given word against strings
    obtained by splitting help matches at non-letter characters. This
    way, variable names containing underscores or digits were
    erroneously not regarded as documented, and certain substrings of
    these names were erroneously regarded as documented.

  - On Windows, an error occurred if one tried to use the default Windows
    browser as a help viewer (see `SetHelpViewer`). Now the browser
    opens the top of the correspoding manual chapter. The current fix
    is a temporary solution since the problem remains with the
    positioning at the required manual section.

### Improved functionality:

  - `WriteGapIniFile` on Windows now produces the `gap.ini` file with
    Windows style line breaks. Also, an info message is now printed if
    an existing `gap.ini` file was moved to a backup file
    `gap.ini.bak`.

  - The **CTblLib** and **TomLib** packages are removed from the list of
    suggested packages of the core part of GAP. Instead they are added
    to the default list of the user preference `"PackagesToLoad"`. This
    way it is possible to configure GAP to not load these packages via
    changing the default value of `"PackagesToLoad"`.

  - The conjugacy test in S_n for intransitive subgroups was improved.
    This deals with inefficiency issue in the case reported by Stefan
    Kohl.

  - Added `InstallAndCallPostRestore` to `lib/system.g` and call it in
    `lib/init.g` instead of `CallAndInstallPostRestore` for the
    function that reads the files listed in GAP command line. This
    fixes the problem reported by Yevgen Muntyan when `SaveWorkspace`
    was used in a file listed in GAP command line (before, according to
    the documentation, `SaveWorkspace` was only allowed at the main GAP
    prompt).

  - There is now a new user preference `PackagesToIgnore`, see
    `SetUserPreference`. It contains a list of names of packages that
    shall be regarded as not available at all in the current session,
    both for autoloading and for later calls of `LoadPackage`. This
    preference is useful for testing purposes if one wants to run some
    code without loading certain packages.


## GAP 4.5.4 (June 2012)

This is the first public release of GAP 4.56.

This chapter lists most important changes between GAP 4.4.12 and the
first public release of GAP 4.5. It also contains information about
subsequent update releases for GAP 4.5. It is not meant to serve as
a complete account on all improvements; instead, it should be viewed as
an introduction to GAP 4.5, accompanying its release announcement.

### Performance improvements:

  - The GAP kernel now uses [**GMP**](http://gmplib.org/) (GNU multiple
    precision arithmetic library) for faster large integer
    arithmetic.

  - Improved performance for records with large number of components.

  - Speedup of hash tables implementation at the GAP library level.

  - `MemoryUsage` is now much more efficient, in particular for large
    objects.

  - Speedups in the computation of low index subgroups, Tietze
    transformations, calculating high powers of matrices over finite
    fields, `Factorial`, etc.

### New and improved kernel functionality:

  - By default, the GAP kernel compiles with the **GMP** and **readline**
    libraries. The **GMP** library is supplied with GAP and we
    recommend that you use the version we supply. There are some
    problems with some other versions. It is also possible to compile
    the GAP kernel with the system **GMP** if your system has it. The
    **readline** library must be installed on your system in advance to
    be used with GAP.

  - Floating point literals are now supported in the GAP language, so
    that, floating point numbers can be entered in GAP expressions in a
    natural way. Support for floats is now properly documented. GAP has
    an interface using which packages may add new floating point
    implementations and integrate them with the parser. In particular,
    we expect that there will soon be a package that implements
    arbitrary precision floating point arithmetic.

  - The Mersenne twister random number generator has been made
    independent of endianness, so that random seeds can now be
    transferred between architectures.

  - Defaults for `-m` and `-o` options have been increased. Changes have
    been made to the way that GAP obtains memory from the Operating
    System, to make GAP more compatible with C libraries. A new `-s`
    option has been introduced to control or turn off the new
    behaviour.

  - The filename and lines from which a function was read can now be
    recovered using `FilenameFunc`, `StartlineFunc` and `EndlineFunc`.
    This allows you, for example, to implement a function such as
    `PageSource` to show the file containing the source code of a
    function or a method in a pager, see `Pager`.

  - `CallFuncList` was made into an operation so that it can be used to
    define behaviour of a non-function when called as a function.

  - Improvements to the cyclotomic number arithmetic for fields with
    large conductors.

  - Better and more flexible viewing of some large objects.

  - Opportunity to interrupt some long kernel computations, e.g.
    multiplication of compressed matrices, intercepting `Ctrl-C` in
    designated places in the kernel code by means of a special kernel
    function for that purpose.

  - `ELM_LIST` now allows you to install methods where the second
    argument is NOT a positive integer.

  - Kernel function `DirectoryContents` to get the list of names of files
    and subdirectories in a directory.

  - Kernel functions for Kronecker product of compressed matrices, see
    `KroneckerProduct`.

### New and improved library functionality:

  - Extensions of data libraries:

      - Functions and iterators are now available to create and
        enumerate simple groups by their order up to isomorphism:
        `SimpleGroup`, `SmallSimpleGroup`, `SimpleGroupsIterator` and
        `AllSmallNonabelianSimpleGroups`.

      - See also packages **CTblLib**, **IRREDSOL** and **Smallsemi**.

  - Many more methods are now available for the built-in floating point
    numbers.

  - The bound for the proper primality test in `IsPrimeInt` increased up
    to 10^18.

  - Improved code for determining transversal and double coset
    representatives in large groups.

  - Improvements in `Normalizer` for S_n.

  - Smith normal form of a matrix may be computed over arbitrary
    euclidean rings, see `NormalFormIntMat`.

  - Improved algorithms to determine the subgroup lattice of a group, as
    well as the function `DotFileLatticeSubgroups` to save the lattice
    structure in `.dot` file to view it e.g. with **GraphViz**.

  - Special teaching mode which simplifies some output and provides more
    basic functionality.

  - Functionality specific for use in undergraduate abstract algebra
    courses, e.g. checksums; string/integer list conversion; rings of
    small orders; the function `SetNameObject` to set display names for
    objects for more informative examples, e.g. constructing groups
    from "named" objects, such as, for example, `R90` for a 90-degree
    rotation).

  - Functions `DirectoryDesktop` and `DirectoryHome` which provide
    uniform access to default directories under Windows, Mac OS X and
    Unix.

  - Improved methods for hashing when computing orbits.

  - Functionality to call external binaries under Windows.

  - Symplectic groups over residue class rings, see `SymplecticGroup`.

  - Basic version of the simplex algorithm for matrices.

  - New functions, operations and attributes: `PrimeDivisors`, `Shuffle`
    for lists, `IteratorOfPartitions`, `IteratorOfCombinations`,
    `EnumeratorOfCombinations` and others.

  - The behaviour of `Info` statements can now be configured per info
    class, this applies to the way the arguments are printed and to the
    output stream.

  - New function `Test` which is a more flexible and informative
    substitute of `ReadTest` operation.

  - `ConnectGroupAndCharacterTable` is replaced by more robust function
    `CharacterTableWithStoredGroup`.

### Many problems in GAP have have been fixed, among them the following:

  - Polynomial factorisation over rationals could miss factors of degree
    greater than deg(f)/2 if they have very small coefficients, while
    the cofactor has large coefficients.

  - `IntermediateSubgroups` called on
    a group and a normal subgroup did not properly calculate maximal
    inclusion relationships.

  - `CentreOfCharacter` and `ClassPositionsOfCentre` called for a group
    character could return a perhaps too large result.

  - `Trace` called for an element of a finite field that was created
    with `AlgebraicExtension` ran into an error.

  - `IrreducibleRepresentationsDixon` did not accept a list with one
    character as a second argument.

  - Composing a homomorphism from a permutation group to a finitely
    presented group with another homomorphism could give wrong results.

  - For certain arguments, the function `EU` returned wrong results.

  - In the table of marks of cyclic groups, `NormalizersTom` value was
    wrong.

  - The function `PermChars` returned a perhaps wrong result when the
    second argument was a positive integer (not a record) and the
    trivial character of the character table given as the first
    argument was not the first in the list of irreducibles.

  - GAP crashed when the intersection of ranges became empty.

  - `IsPSL`, and in turn `StructureDescription`, erroneously recognised
    non-PSL groups of the right order as PSL.

  - The semidirect product method for pcgs computable groups sometimes
    tried to use finite presentations which were not polycyclic. This
    usually happened when the groups were not pc groups, and there was
    a very low risk of getting a wrong result.

  - The membership test for a group of finite field elements ran into an
    error if the zero element of the field was given as the first
    argument.

  - Constant polynomials were not recognised as univariate in any
    variable.

  - The kernel recursion depth counter was not reset properly when
    running into many break loops.

  - GAP did not behave well when printing of a (large) object was
    interrupted with `Ctrl-C`. Now the object is no longer corrupted
    and the indentation level is reset.

### Potentially incompatible changes:

  - The zero polynomial now has degree `-infinity`, see
    `DegreeOfLaurentPolynomial`.

  - Multiple unary `+` or `-` signs are no longer allowed (to avoid
    confusion with increment/decrement operators from other programming
    languages).

  - Due to changes to improve the performance of records with large
    number of components, the ordering of record components in `View`'ed
    records has changed.

  - Due to improvements for vectors over finite fields, certain objects
    have more limitations on changing their base field. For example, one
    can not create a compressed matrix over GF(2) and then assign an
    element of GF(4) to one of its entries.

### No longer supported:

  - Completion files mechanism.

  - GAP 3 compatibility mode.

In addition, we no longer recommend using the GAP compiler `gac` to
compile GAP code to **C**, and may withdraw it in future releases.
Compiling GAP code only ever gave a substantial speedup for rather
specific types of calculation, and much more benefit can usually be
achieved quite easily by writing a small number of key functions in
**C** and loading them into the kernel as described in
`LoadDynamicModule`. The `gac` script
will remain available as a convenient way of compiling such kernel
modules from **C**.

Also, the following functions and operations were made obsolete:
`AffineOperation`, `AffineOperationLayer`, `FactorCosetOperation`,
`DisplayRevision`, `ProductPol`, `TeXObj`, `LaTeXObj`.

### Changes in distribution formats

The GAP 4.5 source distribution has the form of a single archive
containing the core system and the most recent "stable" versions of all
currently redistributed packages. There are no optional archives to
download: the **TomLib** package now contains all its tables of marks in
one archive; we do not provide separate versions of manuals for Internet
Explorer, and the former `tools` archive is now included as an archive
in the `etc` directory. To unpack and install the archive, user the
script `etc/install-tools.sh`.

We no longer distribute separate bugfix archives when the core GAP
system changes, or updated packages archives when a redistributed
package is updated. Instead, the single GAP source distribution
archive will be labelled by the version of the core GAP system and
also by a timestamp. This archive contains the core system and the
stable versions of the relevant packages on that date. To upgrade, you
simply replace the whole directory containing the GAP installation,
and rebuild binaries for the GAP kernel and packages. For new
versions of packages, we will also continue to redistribute individual
package archives so it will be possible to update a single package
without changing the rest of the GAP installation.

Furthermore, by default GAP will now automatically read a
user-specific GAP root directory (unless GAP is called with the
`-r` option). All user settings can be made in that directory, so there
will be no risk of them being lost during an update. Private
packages can also be installed in this directory for the same reason.

There are some changes in archive formats used for the distribution: we
continue to provide `.tar.gz`, `.tar.bz2` and `-win.zip` archives. We
have added `.zip`, and stopped providing `.zoo` archives. We no longer
provide GAP binaries for Mac OS 9 (Classic) any more. For installations
from source on Mac OS X one may follow the instructions for UNIX.

With the release of GAP 4.5, we also encourage more users to take
advantage of the increasingly mature binary distributions which are now
available. These include:

  - The binary [`rsync` distribution](http://www.math.rwth-aachen.de/~Frank.Luebeck/gap/rsync)
    for GAP on Linux PCs with i686 or x86_64 compatible processors provided by Frank Lübeck.

  - [**BOB**](http://www-groups.mcs.st-and.ac.uk/~neunhoef/Computer/Software/Gap/bob.html),
    a tool for Linux and Mac OS X to download and build GAP
    and its packages from source provided by M. Neunhöffer.

  - The [GAP installer for Windows](https://www.gap-system.org/ukrgap/wininst/),
    provided by Alexander Konovalov.

In the near future, we also hope to have a binary distribution for Mac
OS X.

Internally, we now have infrastructure to support more robust and
frequent releases, and an improved system to fetch and test new versions
of the increasingly large number of packages. The **Example** package
documents technical requirements for packages, many of which are checked
automatically by our systems. This will allow us to check the
compatibility of packages with the system and with other packages more
thoroughly before publishing them on the GAP website.

### Improvements to the user interface

By default, GAP now uses the **readline** library for command line
editing. It provides such advantages as working with unicode terminals,
nicer handling of long input lines, improved TAB-completion and flexible
configuration. For further details, see Reference: Editing using the
readline library.

We have extended facilities for user interface customisation. By default
GAP automatically scans a user specific GAP root directory
(unless GAP is called with the `-r` option). The name of this user
specific directory depends on the operating system and is contained in
`GAPInfo.UserGapRoot`. This directory can be used to tell GAP about
personal preferences, to load some additional code, to install
additional packages, or to overwrite some GAP files, see Reference:
GAP Root Directories. Instead of a single `.gaprc` file we now use more
flexible setup based on two files: `gap.ini` which is read early in the
startup process, and `gaprc` which is read after the startup process,
but before the first input file given on the command line. These files
may be located in the user specific GAP root directory
`GAPInfo.UserGapRoot` which by default is the first GAP root
directory, see Reference: The gap.ini and gaprc files. For
compatibility, the `.gaprc` file is still read if the directory
`GAPInfo.UserGapRoot` does not exist. See Reference: The former .gaprc
file for the instructions how to migrate your old setup.

Furthermore, there are functions to deal with user preferences, for
example, to specify how GAP's online help is shown or whether the
coloured prompt should be used. Calls to set user preferences may appear
in the user's `gap.ini` file, as explained in Reference: Configuring
User preferences.

In the Windows version, we include a new shell which uses the **mintty**
terminal in addition to the two previously used shells (Windows command
line and **RXVT**). The **mintty** shell is now recommended. It supports
Unicode encoding and has flexible configurations options. Also, GAP
under Windows now starts in the `%HOMEDRIVE%%HOMEPATH%` directory, which
is the user's home directory. Besides this, a larger workspace is now
permitted without a need to modify the Windows registry.

Other changes in the user interface include:

  - the command line history is now implemented at the GAP level, it
    can be stored on quitting a GAP session and reread when starting
    a new session, see Reference: The command line history.

  - `SetPrintFormattingStatus("stdout",false);` may be used to switch
    off the automatic line breaking in terminal output, see
    `SetPrintFormattingStatus`.

  - GAP supports terminals with up to 4096 columns (extendable at
    compile time).

  - Directories in `-l` command-line option can now be specified
    starting with `~/`.

  - Large integers are now displayed by a short string showing the first
    and last few digits, and the threshold to trigger this behaviour is
    user configurable (call `UserPreference("MaxBitsIntView")` to see
    the default value).

  - The GAP banner has been made more compact and informative.

  - `SetHelpViewer` now supports the Google
    Chrome browser.

  - Multiple matches in the GAP online help are displayed via a
    function from the **Browse** package, which is loaded in the default
    configuration. This feature can be replaced by the known pager using
    the command

    ``` normal

    SetUserPreference( "browse", "SelectHelpMatches", false );
    ```

### Better documentation

The main GAP manuals have been converted to the **GAPDoc** format
provided by the
[**GAPDoc**](http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc)
package by Frank Lübeck and Max Neunhöffer. This documentation format is
already used by many packages and is now recommended for all GAP
documentation.

Besides improvements to the documentation layout in all formats (text,
PDF and HTML), the new GAP manuals incorporate a large number of
corrections, clarifications, additions and updated examples.

We now provide two HTML versions of the manual, one of them with
[**MathJax**](http://www.mathjax.org) support for better display of
mathematical symbols. Also, there are two PDF versions of the manual - a
coloured and a monochrome one.

Several separate manuals now became parts of the GAP Reference
manual. Thus, now there are three main GAP manual books:

  - *GAP Tutorial*

  - *GAP Reference manual*

  - *GAP - Changes from Earlier Versions*

Note that there is no index file combining these three manuals. Instead
of that, please use the GAP help system which will search all of
these and about 100 package manuals.

### Packages in GAP 4.5

Here we list most important changes affecting packages and present new
or essentially changed packages.

### Interface between the core system and packages

The package loading mechanism has been improved. The most important new
feature is that all dependencies are evaluated in advance and then used
to determine the order in which package files are read. This allows GAP
to handle cyclic dependencies as well as situations where package A
requires package B to be loaded completely before any file of package A
is read. To avoid distortions of the order in which packages will be
loaded, package authors are strongly discouraged from calling
`LoadPackage` and `TestPackageAvailability` in a package code in order
to determine whether some other package will be loaded before or
together with the current package - instead, one should use
`IsPackageMarkedForLoading`. In addition, there is now a better error
management if package loading fails for packages that use the new
functionality to log package loading messages (see
`DisplayPackageLoadingLog` and the rest of the Chapter "Using and
Developing GAP Packages" in the reference manual which documents how to
*use* GAP packages), and package authors are very much encouraged to use
these logging facilities.

In GAP 4.4 certain packages were marked as *autoloaded* and would be
loaded, if present, when GAP started up. In GAP 4.5, this notion is
divided into three. Certain packages are recorded as *needed* by the GAP
system and others as *suggested*, in the same way that packages may
*need* or *suggest* other packages. If a needed package is not loadable,
GAP will not start. Currently only **GAPDoc** is needed. If a suggested
package is loadable, it will be loaded. Typically these are packages
which install better methods for Operations and Objects already present
in GAP. Finally, the user preferences mechanism can be used to specify
additional packages that should be loaded if possible. By default this
includes most packages that were autoloaded in GAP 4.4.12, see
`ShowUserPreferences`.

GAP packages may now use local *namespaces* to avoid name clashes for
global variables introduced in other packages or in the GAP library, see
Reference: Namespaces for GAP packages.

All guidance on how to *develop* a GAP package has been consolidated in
the **Example** package which also contains a checklist for upgrading a
GAP package to GAP 4.5 (the guidance has been transferred to Reference:
Using and Developing GAP Packages in GAP 4.9).

### New and updated packages since GAP 4.4.12

At the time of the release of GAP 4.4.12 there were 75 packages
redistributed with GAP (including the **TomLib** which was
distributed in the core GAP archive). The first public release of
GAP 4.5 contains precisely 99 packages.

The new packages that have been added to the redistribution since the
release of GAP 4.4.12 are:

  - **Citrus** package by J.D. Mitchell for computations with
    transformation semigroups and monoids (this package is a replacement
    of the **Monoid** package).

  - **cvec** package by M. Neunhöffer, providing an implementation of
    compact vectors over finite fields.

  - **fwtree** package by B. Eick and T. Rossmann for computing trees
    related to some pro-p-groups of finite width.

  - **GBNP** package by A.M. Cohen and J.W. Knopper, providing
    algorithms for computing Grobner bases of noncommutative polynomials
    over fields with respect to the "total degree first then
    lexicographical" ordering.

  - **genss** package by M. Neunhöffer and F. Noeske, implementing the
    randomised Schreier-Sims algorithm to compute a stabiliser chain and
    a base and a strong generating set for arbitrary finite groups.

  - **HAPprime** package by P. Smith, extending the **HAP** package with
    an implementation of memory-efficient algorithms for the calculation
    of resolutions of small prime-power groups.

  - **hecke** package by D. Traytel, providing functions for calculating
    decomposition matrices of Hecke algebras of the symmetric groups and
    q-Schur algebras (this package is a port of the GAP 3 package
    **Specht 2.4** to GAP 4).

  - [**Homalg**](http://homalg.math.rwth-aachen.de/) project by
    M. Barakat, S. Gutsche, M. Lange-Hegermann et
    al., containing the following packages for the homological algebra:
    **homalg**, **ExamplesForHomalg**, **Gauss**, **GaussForHomalg**,
    **GradedModules**, **GradedRingForHomalg**, **HomalgToCAS**,
    **IO_ForHomalg**, **LocalizeRingForHomalg**, **MatricesForHomalg**,
    **Modules**, **RingsForHomalg** and **SCO**.

  - **MapClass** package by A. James, K. Magaard and S. Shpectorov to
    calculate the mapping class group orbits for a given finite group.

  - **recogbase** package by M. Neunhöffer and A. Seress, providing a
    framework to implement group recognition methods in a generic way
    (suitable, in particular, for permutation groups, matrix groups,
    projective groups and black box groups).

  - **recog** package by M. Neunhöffer, A. Seress, N. Ankaralioglu, P.
    Brooksbank, F. Celler, S. Howe, M. Law, S. Linton, G. Malle, A.
    Niemeyer, E. O'Brien and C.M. Roney-Dougal, extending the
    **recogbase** package and provides a collection of methods for the
    constructive recognition of groups (mostly intended for permutation
    groups, matrix groups and projective groups).

  - **SCSCP** package by A. Konovalov and S. Linton, implementing the
    Symbolic Computation Software Composability Protocol
    [**SCSCP**](http://www.symbolic-computation.org/scscp) for GAP, which
    provides interfaces to link a GAP instance with another copy of GAP or
    other **SCSCP**-compliant system running locally or remotely.

  - **simpcomp** package by F. Effenberger and J. Spreer for working
    with simplicial complexes.

  - **Smallsemi** package by A. Distler and J.D. Mitchell, containing
    the data library of all semigroups with at most 8 elements as well
    as various information about them.

  - **SymbCompCC** package by D. Feichtenschlager for computations with
    parametrised presentations for finite p-groups of fixed coclass.

Furthermore, some packages have been upgraded substantially since the
GAP 4.4.12 release:

  - **Alnuth** package by B. Assmann, A. Distler and B. Eick uses an
    interface to PARI/GP system instead of the interface to KANT (thanks
    to B. Allombert for the GP code for the new interface and help with
    the transition) and now also works under Windows.

  - **CTblLib** package (the GAP Character Table Library) by T.
    Breuer has been extended by many new character tables, a few bugs
    have been fixed, and new features have been added, for example
    concerning the relation to GAP's group libraries, better search
    facilities, and interactive overviews. For details, see the package
    manual.

  - **DESIGN** package by L.H. Soicher:

      - The functions `PointBlockIncidenceMatrix`, `ConcurrenceMatrix`,
        and `InformationMatrix` compute matrices associated with block
        designs.

      - The function `BlockDesignEfficiency` computes certain
        statistical efficiency measures of a 1-(v,k,r) design, using
        exact algebraic computation.

  - **Example** package by W. Nickel, G. Gamble and A. Konovalov has a
    more detailed and up-to-date guidance on developing a GAP
    package.

  - **FR** package by L. Bartholdi now uses floating-point numbers to
    compute approximations of rational maps given by their
    group-theoretical description.

  - The **GAPDoc** package by F. Lübeck and M. Neunhöffer provides
    various improvements, for example:

      - The layout of the text version of the manuals can be configured
        quite freely, several standard "themes" are provided. The
        display is now adjusted to the current screen width.

      - Some details of the layout of the HTML version of the manuals
        can now be configured by the user. All manuals are available
        with and without MathJax support for display of mathematical
        formulae.

      - The text and HTML versions of manuals make more use of unicode
        characters (but the text version is also still reasonably good
        on terminals with latin1 or ASCII encoding).

      - The PDF version of the manuals uses better fonts.

      - Of course, there are various improvements for authors of manuals
        as well, for example new functions `ExtractExamples` and
        `RunExamples` for automatic testing and correcting of manual
        examples.

  - **Gpd** package by E.J. Moore and C.D. Wensley has been
    substantially rewritten. The main extensions provide functions for:

      - Subgroupoids of a direct product with complete graph groupoid,
        specified by a root group and choice of rays.

      - Automorphisms of finite groupoids - by object permutations; by
        root group automorphisms; and by ray images.

      - The automorphism group of a finite groupoid together with an
        isomorphism to a quotient of permutation groups.

      - Homogeneous groupoids (unions of isomorphic groupoids) and their
        morphisms, in particular homogeneous discrete groupoids: the
        latter are used in constructing crossed modules of groupoids in
        the **XMod** package.

  - **GRAPE** package by L.H. Soicher:

      - With much help from A. Hulpke, the interface between **GRAPE**
        and `dreadnaut` is now done entirely in GAP code.

      - A 32-bit `nauty/dreadnaut` binary for Windows (XP and later) is
        included with **GRAPE**, so now **GRAPE** provides full
        functionality under Windows, with no installation necessary.

      - Graphs with ordered partitions of their vertices into
        "colour-classes" are now handled by the graph automorphism group
        and isomorphism testing functions. An automorphism of a graph
        with colour-classes is an automorphism of the graph which
        additionally preserves the list of colour-classes (classwise),
        and an isomorphism from one graph with colour-classes to a
        second is a graph isomorphism from the first graph to the second
        which additionally maps the first list of colour-classes to the
        second (classwise).

      - The GAP code and old standalone programs for the
        undocumented functions `Enum` and `EnumColadj` have been removed
        as their functionality can now largely be handled by current
        documented GAP and **GRAPE** functions.

  - **IO** package by M. Neunhöffer:

      - New build system to allow for more flexibility regarding the use
        of compiler options and adjusting to GAP 4.5.

      - New functions to access time like `IO_gettimeofday`, `IO_gmtime`
        and `IO_localtime`.

      - Some parallel skeletons built on `fork` like: `ParListByFork`,
        `ParMapReduceByFork`, `ParTakeFirstResultByFork` and
        `ParWorkerFarmByFork`.

      - `IOHub` objects for automatic I/O multiplexing.

      - New functions `IO_gethostbyname` and `IO_getsockname`.

  - **IRREDSOL** package by B. Höfling now covers all irreducible
    soluble subgroups of GL(n,q) for q^n \< 1000000 and primitive
    soluble permutation groups of degree \< 1000000 (previously, the
    bound was 65536). It also has faster group recognition and adds a
    few omissions for GL(3,8) and GL(6,5).

  - **ParGAP** package by G. Cooperman is now compiled using a
    system-wide MPI implementation by default to facilitate running it
    on proper clusters. There is also an option to build it with the
    **MPINU** library which is still supplied with the package (thanks
    to P. Smith for upgrading **ParGAP** build process).

  - **OpenMath** package by M. Costantini, A. Konovalov, M. Nicosia and
    A. Solomon now supports much more OpenMath symbols to facilitate
    communication by the remote procedure call protocol implemented in
    the **SCSCP** package. Also, a third-party external library to
    support binary OpenMath encoding has been replaced by a proper
    implementation made entirely in GAP.

  - **Orb** package by J. Müller, M. Neunhöffer and F. Noeske:

    There have been numerous improvements to this package:

      - A new fast implementation of AVL trees (balanced binary trees)
        in C.

      - New interface to hash table functionality and implementation in
        C for speedup.

      - Some new hash functions for various object types like
        transformations.

      - New function `ORB_EstimateOrbitSize` using the birthday paradox.

      - Improved functionality for product replacer objects.

      - New "tree hash tables".

      - New functionality to compute weak and strong orbits for
        semigroups and monoids.

      - `OrbitGraph` for Orb orbits.

      - Fast C kernel methods for the following functions:

        `PermLeftQuoTransformationNC`, `MappingPermSetSet`,
        `MappingPermListList`, `ImageSetOfTransformation`, and
        `KernelOfTransformation`.

      - New build system to allow for more flexibility regarding the use
        of compiler options and to adjust to GAP 4.5.

  - **RCWA** package by S. Kohl among the new features and other
    improvements has the following:

      - A database of all 52394 groups generated by 3 class
        transpositions of ℤ which interchange residue classes with
        modulus less than or equal to 6. This database contains the
        orders and the moduli of all of these groups. Also it provides
        information on what is known about which of these groups are
        equal and how their finite and infinite orbits on ℤ look like.

      - More routines for investigating the action of an rcwa group on
        ℤ. Examples are a routine which attempts to find out whether a
        given rcwa group acts transitively on the set of nonnegative
        integers in its support and a routine which looks for finite
        orbits on the set of all residue classes of ℤ.

      - Ability to deal with rcwa permutations of ℤ^2.

      - Important methods have been made more efficient in terms of
        runtime and memory consumption.

      - The output has been improved. For example, rcwa permutations are
        now `Display`'ed in ASCII text resembling LaTeX output.

  - The **XGAP** package by F. Celler and M. Neunhöffer can now be used
    on 64-bit architectures (thanks to N. Eldredge and M. Horn for
    sending patches). Furthermore, there is now an export to XFig option
    (thanks to Russ Woodroofe for this patch). The help system in
    **XGAP** has been adjusted to GAP 4.5.

  - Additionally, some packages with kernel modules or external binaries
    are now available in Windows. The `-win.zip` archive and the GAP
    installer for Windows include working versions of the following
    packages: **Browse**, **cvec**, **EDIM**, **GRAPE**, **IO** and
    **orb**, which were previously unavailable for Windows users.

Finally, the following packages are withdrawn:

  - **IF** package by M. Costantini is unmaintained and no longer
    usable. More advanced functionality for interfaces to other computer
    algebra systems is now available in the **SCSCP** package by A.
    Konovalov and S. Linton.

  - **Monoid** package by J. Mitchell is superseded by the **Citrus**
    package by the same author.

  - **NQL** package by R. Hartung has been withdrawn by the author.


## GAP 4.4 Update 12 (December 2008)

### Fixed bugs which could lead to crashes:

  - A bug whereby leaving an incomplete statement on a line (for
    instance typing while and then return) when prompt colouring was in
    use could lead to GAP crashing.

### Other fixed bugs:

  - A bug which made the command-line editor unusable in a 64-bit version
    of GAP on Mac OS X.


## GAP 4.4 Update 11 (December 2008)

### Fixed bugs which could produce wrong results:

  - `MemoryUsage` on objects with no subobjects left them in the cache
    and thus reported 0 in subsequent calls to MemoryUsage for the same
    object. (Reported by Stefan Kohl)

  - `Irr` might be missing characters. (Reported by Angel del Rio)

  - Up to now, it was allowed to call the function
    `FullMatrixAlgebraCentralizer` with a field and a list of matrices
    such that the entries of the matrices were not contained in the
    field; in this situation, the result did not fit to the
    documentation. Now the entries of the matrices are required to lie
    in the field, if not then an error is signaled.

  - For those finite fields that are regarded as field extensions over
    non-prime fields (one can construct such fields with `AsField`),
    the function `DefiningPolynomial` erroneously returned a polynomial
    w.r.t. the extension of the prime field. (Reported by Stefan Kohl)

  - Since the release of GAP 4.4.10, the return values of the function
    `QuaternionAlgebra` were not consistent w.r.t. the attribute
    `GeneratorsOfAlgebra`; the returned list could have length four or
    five. Now always the list of elements of the canonical basis is
    returned.

  - `MonomialGrevlexOrdering` calculated a wrong ordering in certain
    cases. (Reported by Paul Smith)

  - The (GAP kernel) method for the operation `IntersectSet` for ranges
    had two bugs, which could yield a result range with either too few
    or too many elements. As a consequence, for example the
    `Intersection` results for ranges could be wrong. (Reported by
    Matthew Fayers)

  - Fixed a bug in the short-form display of elements of larger finite
    fields, a bug in some cross-field conversions and some
    inefficiencies and a missing method in the `LogFFE` code. (Reported
    by Jia Huang)

  - In rare cases `SmithNormalFormIntegerMatTransforms` returned a wrong
    normal form (the version without transforming matrices did not have
    this problem). This is fixed. (Reported by Alexander Hulpke)

  - The variant of the function `StraightLineProgram` that takes a string
    as its first argument returned wrong results if the last character
    of this string was a closing bracket.

  - The code for central series in a permutation group used too tight a
    bound and thus falsely return a nilpotent permutation group as
    non-nilpotent.

### Fixed bugs which could lead to crashes:

  - Under certain circumstances the kernel code for position in blists
    would access a memory location just after the end of the blist. If
    this location was not accessible, a crash could result. This was
    corrected and the code was cleaned up. (Reported by Alexander
    Hulpke)

### Other fixed bugs:

  - The function `IsomorphismTypeInfoFiniteSimpleGroup` can be called
    with a positive integer instead of a group, and then returns
    information about the simple group(s) of this order. (This feature
    is currently undocumented.) For the argument 1, however, it ran
    into an infinite loop.

  - A lookup in an empty dictionary entered a break loop. Now returns
    `fail`. (Reported by Laurent Bartholdi)

  - The c++ keyword `and` can no longer be used as a macro parameter in
    the kernel. (Reported by Paul Smith)

  - The operation `KernelOfMultiplicativeGeneralMapping` has methods
    designed to handle maps between permutation groups in a two-step
    approach, but did not reliably trigger the second step. This has
    now been fixed, preventing a slow infinite loop repeating the first
    step. This was normally only seen as part of a larger calculation.

  - There were two methods for the operation `Intersection2` which have
    implicitly assumed that finiteness of a collection can always be
    decided. Now, these methods check for `IsFinite` and
    `CanComputeSize` prior to calling `IsFinite`.

  - Made error message in case of corrupted help book information
    (manual.six file) shorter and more informative. (Reported by
    Alexander Hulpke)

  - GAP cannot call methods with more than six arguments. Now the
    functions `NewOperation`, `DeclareOperation`, and `InstallMethod`
    signal an error if one attempts to declare an operation or to
    install a method with more than six arguments.

  - Up to now, `IsOne` had a special method for general mappings, which
    was much worse than the generic method; this special method has now
    been removed.

  - When printing elements of an algebraic extension parentheses around
    coefficients were missing. (Reported by Maxim Hendriks)

### New or improved functionality:

  - Make dynamic loading of modules possible on CYGWIN using a DLL based
    approach. Also move to using autoconf version 2.61.

  - One can now call `Basis`, `Iterator` etc. with the return value of
    the function `AlgebraicExtension`.

  - The function `FrobeniusCharacterValue` returned `fail` for results
    that require a finite field with more than 65536 elements.
    Meanwhile GAP can handle larger finite fields, so this restriction
    was removed. (It is still possible that `FrobeniusCharacterValue`
    returns `fail`.)

  - Methods for testing membership in general linear groups and special
    linear groups over the integers have been added.

  - Methods for `String` and `ViewString` for full row modules have been
    added. Further, a default method for `IsRowModule` has been added,
    which returns `false` for objects which are not free left modules.

  - A `ViewString` method for objects with name has been added.

  - The method for `View` for polynomial rings has been improved, and
    methods for `String` and `ViewString` for polynomial rings have
    been added.

  - `Binomial` now works with huge `n`.

  - The function `InducedClassFunctionsByFusionMap` is now documented.

  - The return values of the function `QuaternionAlgebra` now store that
    they are division rings (if optional parameters are given then of
    course ths depends on these parameters).


## GAP 4.4 Update 10 (October 2007)

### New or improved functionality:

  - Files in the `cnf` directory of the GAP distribution are now
    archived as binary files. Now GAP can be installed with UNIX or
    with WINDOWS style line breaks on any system and should work without
    problems.

  - Since large finite fields are available, some restrictions in the
    code for computing irreducible modules over finite fields are no
    longer necessary. (They had been introduced in order to give better
    error messages.)

  - Made PositionSublist faster in case the search string does not
    contain repetitive patterns.

  - The function `MakeImmutable` now returns its argument.

  - Dynamically loaded modules now work on Mac OS X. As a consequence,
    this allows to work with the Browse, EDIM and IO packages on Mac OS
    X.

  - Introduced `ViewObj` and `PrintObj` methods for algebraic number
    fields. Made them applicable to `AlgebraicExtension` by adding the
    property `IsNumberField` in the infinite field case.

  - The function `CharacterTableRegular` is documented now.

  - The function `ScalarProduct` now accepts also Brauer characters
    as arguments.

  - The function `QuaternionAlgebra` now accepts also a list of field
    elements instead of a field. Also, now the comparison of return
    values (w.r.t. equality, containment) yields `true` if the
    parameters coincide and the ground fields fit.

  - The function `RemoveCharacters` is now documented.

  - Lists in GAP sometimes occupy memory for possible additional
    entries. Now plain lists and strings read by GAP and the lists
    returned by `List` only occupy the memory they really need. For
    more details see the documentation of the new function
    `EmptyPlist`.

  - There are some new Conway polynomials in characteristic 2 and 3
    provided by Kate Minola.

  - A new operation `MemoryUsage` determines the memory usage in bytes
    of an object and all its subobjects. It does not consider families
    and types but handles arbitrary self-referential structures of
    objects.

### Fixed bugs which could produce wrong results:

  - When forming the semidirect product of a matrix group with a vector
    space over a non-prime field the embedding of the vector space gave
    a wrong result. (Reported by anvita21)

  - DefaultRing failed for constant polynomials over nonprime fields.
    (Reported by Stefan Kohl)

  - The method in ffeconway.gi that gets coefficients WRT to the
    canonical basis of the field from the representation is only correct
    if the basis is over the prime field. Added a TryNextMethod if this
    is not the case. (Reported by Alla Detinko)

  - Creating a large (\>2^16) field over a non-prime subfield went
    completely wrong. (Reported by Jack Schmidt, from Alla Detinko)

  - A method for Coefficients for Conway polynomial FFEs didn't check
    that the basis provided was the canonical basis of the RIGHT field.
    (Reported by Bettina Eick)

  - An elementary abelian series was calculated wrongly. (Reported by
    N. Sieben)

  - Orbits on sets of transformations failed.

  - Wrong methods for `GeneratorsOfRing` and `GeneratorsOfRingWithOne`
    have been removed. These methods were based on the assumption that
    one can obtain a set of ring generators by taking the union of a
    known set of field generators, the set of the inverses of these
    field generators and {1}.

  - The name of a group of order 117600 and degree 50 was incorrect in
    the Primitive Permutation Groups library. In particular, a group was
    wrongly labelled as PGL(2, 49).

  - There was a possible error in `SubgroupsSolvableGroup` when
    computing subgroups within a subgroup.

  - An error in 2-Cohomology computation for pc groups was fixed.

  - `IsConjugate` used normality in a wrong supergroup

### Fixed bugs which could lead to crashes:

  - GAP crashed when the `PATH` environment variable was not set.
    (Reported by Robert F. Morse)

  - GAP could crash when started with option `-x 1`. Now the number
    of columns is initialized with at least 2. (Reported by Robert F.
    Morse)

  - After loading a saved workspace GAP crashed when one tried to
    slice a compressed vector over a field with 2 \< q \<= 256 elements,
    which had already existed in the saved workspace. (Reported by
    Laurent Bartholdi)

  - `FFECONWAY.WriteOverSmallestCommonField` tripped up when the common
    field is smaller than the field over which some of the vector
    elements are written, because it did a test based on the degree of
    the element, not the field it is written over. (Reported by Thomas
    Breuer)

  - Fixed the following error: When an FFE in the Conway polynomial
    representation actually lied in a field that is handled in the
    internal representation (eg GF(3)) and you tried to write it over a
    bigger field that is ALSO handled internally (eg GF(9)) you got an
    element written over the larger field, but in the Conway polynomial
    representation, which is forbidden. (Reported by Jack Schmidt)

  - Attempting to compress a vector containing elements of a small
    finite field represented as elements of a bigger (external) field
    caused a segfault. (Reported by Edmund Robertson)

  - GAP crashed when `BlistList` was called with a range and a list
    containing large integers or non-integers. (Reported by Laurent
    Bartholdi)

  - GAP no longer crashes when `OnTuples` is called with a list that
    contains holes. (Reported by Thomas Breuer)

### Other fixed bugs:

  - `Socle` for the trivial group could produce an error message.

  - `DirectoryContents` ran into an error for immutable strings without
    trailing slash as argument. (Reported by Thomas Breuer)

  - The functions `IsInjective` and `IsSingleValued` did not work for
    general linear mappings with trivial (pre)image. (Reported by Alper
    Odabas)

  - Creating an enumerator for a prime field with more than 65536
    elements ran into an infinite recursion. (Reported by Akos Seress)

  - The performance of `List`, `Filtered`, `Number`, `ForAll` and
    `ForAny` if applied to non-internally represented lists was
    improved. Also the performance of iterators for lists was slightly
    improved.

  - Finite field elements now know that they can be sorted easily which
    improves performance in certain lookups.

  - A method for `IsSubset` was missing for the case that exactly one
    argument is an inhomogeneous list. (Reported by Laurent Bartholdi)

  - Long integers in expressions are now printed (was not yet
    implemented). (Reported by Thomas Breuer)

  - Fixed kernel function for printing records.

  - New C library interfaces (e.g., to ncurses in the **Browse** package)
    need some more memory to be allocated with `malloc`. The default
    value of GAP `-a` option is now `2m>`.

  - Avoid warnings about pointer types by newer gcc compilers.

  - `IsBound(l[pos])` was failing for a large integer pos only when coded
    (e.g. in a loop or function body).

  - `ZmodpZObj` is now a synonym for `ZmodnZObj` such that from now on
    such objects print in a way that can be read back into GAP.

  - The outdated note that binary streams are not yet implemented has
    been removed.


## GAP 4.4 Update 9 (November 2006)

### Fixed bugs which could produce wrong results:

  - The methods of `ReadByte` for reading from files or terminals
    returned wrong results for characters in the range `[128..255]`.
    (Reported by Yevgen Muntyan)

### Other fixed bugs:

  - A method for the operation `PseudoRandom` did not succeed.

  - A fix for `Orbits` with a set of points as a seed.

  - Added a generic method such that `Positions` works with all types of
    lists.

  - Fixed a problem in choosing the prime in the Dixon-Schneider
    algorithm. (Reported by Toshio Sumi)

### New or improved functionality:

  - `ReducedOrdinary` was used in the manual, but was not documented,
    being a synonym for the documented `ReducedCharacters`. Changed
    manual examples to use the latter form. (Reported by Vahid
    Dabbaghian)


## GAP 4.4 Update 8 (September 2006)

### New or improved functionality:

  - A function `Positions` with underlying operation `PositionsOp`, which
    returns the list of all positions at which a given object appears
    in a given list.

  - `LogFFE` now returns `fail` when the element is not a power of the
    base.

  - It is now allowed to continue long integers, strings or identifiers
    by ending a line with a backslash or with a backslash and carriage
    return character. So, files with GAP code and DOS/Windows-style
    line breaks are now valid input on all architectures.

  - The command line for starting the session and the system environment
    are now available in `GAPInfo.SystemCommandLine` and
    `GAPInfo.SystemEnvironment`.

  - Names of all bound global variables and all component names are
    available on GAP level.

  - Added a few new Conway polynomials computed by Kate Minola and John
    Bray.

  - There is a new concept of *random sources*, see `IsRandomSource`,
    which provides random number generators which are independent of
    each other. There is kernel code for the Mersenne twister random
    number generator (based on the code by Makoto Matsumoto available
    [here](http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html)). It
    provides fast 32-bit pseudorandom integers with a period of length
    2^19937-1 and a 623-dimensional equidistribution. The library
    methods for random elements of lists and for random (long) integers
    are using the Mersenne twister now.

  - In line editing mode (usual input mode without -n option) in lines
    starting with `gap> `, `> ` or `brk> ` this beginning part is
    immediately removed. This is a convenient feature that allows one
    to cut and paste input lines from other sessions or from manual
    examples into the current session.

### Fixed bugs which could produce wrong results:

  - The function `Decomposition` returned coefficient vectors also in
    certain situations where in fact no decomposition exists. This
    happened only if the matrix entered as the first argument contained
    irrational values and a row in the matrix entered as the second
    argument did not respect the algebraic conjugacy relations between
    the columns of the first argument. So there was no problem for the
    usual cases that the two matrices are integral or that they are
    lists of Brauer characters. (Reported by Jürgen Müller)

  - PC group homomorphisms can claim a wrong kernel after composition.
    (Reported by Serge Bouc)

  - The return value of `OctaveAlgebra` had an inconsistent defining
    structure constants table for the case of coefficients fields not
    containing the integer zero. (Reported by Gábor Nagy)

  - The manual guarantees that a conjugator automorphism has a
    conjugating element in the group if possible. This was not
    guaranteed.

  - `StabChain` for symmetric groups gave a wrong result if fixed points
    were prescribed for base.

  - Contrary to what is documented the function `POW_OBJ_INT` returned an
    immutable result for `POW_OBJ_INT(m,1)` for a mutable object `m`.
    This is triggered by the code `m^1`.

  - `PseudoRandom` for a group had a problem if the group had lots of
    equal generators. The produced elements were extremely poorly
    distributed in that case. This is now fixed for the case that
    elements of the group can easily be sorted.

  - Fixed the bug that the type of a boolean list was computed wrongly:
    The type previously had `IS_PLIST_REP` instead of `IS_BLIST_REP` in
    its filter list.

  - `Orbits` did not respect a special `PositionCanonical` method for
    right transversals. (Reported by Steve Costenoble)

  - Wrong results for `GcdInt` for some arguments on 64 bit systems only.
    (Reported by Robert Morse)

  - When prescribing a subgroup to be included, the low index algorithm
    for fp groups sometimes returned subgroups which are in fact
    conjugate. (No subgroups are missing.) (Reported by Ignaz Soroko)

### Fixed bugs which could lead to crashes:

  - The command line option `-x` allowed arguments \> 256 which can then
    result in internal buffers overflowing. Now bigger numbers in the
    argument are equivalent to `-x 256`. (Reported by Michael Hartley)

### Other fixed bugs:

  - Two special methods for the operation `CompositionMapping2` were not
    correct, such that composing (and multiplying) certain group
    homomorphisms did not work. (Reported by Peter Mayr)

  - In the definition of `FrobeniusCharacterValue`, it had been stated
    erroneously that the value must lie in the field of p^n-th roots of
    unity; the correct condition is that the value must lie in the
    field of (p^n-1)-th roots of unity. (Reported by Jack Schmidt)

  - The function `DirectProduct` failed when one of the factors was known
    to be infinite.

  - For a linear action homomorphism `PreImageElm` was very slow because
    there was no good method to check for injectivity, which is needed
    for nearly all good methods for `PreImageElm`. This change adds
    such a new method for `IsInjective`. (Reported by Akos Seress)

  - Rare errors in the complement routine for permutation groups.

  - Blocks code now uses jellyfish-style random elements to avoid bad
    Schreier trees.

  - A method for `IsPolycyclicGroup` has been added. Such a method was
    missing so far.

  - Corrected `EpimorphismSchurCover` to handle the trivial group
    correctly. Added new methods that follow immediately from computing
    the Schur Cover of a group. The attribute `Epicentre`, the
    operations `NonabelianExteriorSquare` and
    `EpimorphismNonabelianExteriorSquare`, and the property
    `IsCentralFactor` are added to the library with documentation and
    references.

  - Display the correct expression in a call stack trace if an operation
    was called somewhere up due to the evaluation of a unary or binary
    operation.

  - Made `StripMemory` an operation rather than a global function. Added
    `ForgetMemory` operation.

  - Adjust things slightly to make later conversion to new
    vectors/matrices easier. Nothing of this should be visible.

  - Corrected some details in the documentation of the GAP language.
    (Reported by Alexander Konovalov)

  - Now `PositionSorted` is much faster on long mutable plain lists. (The
    former operation is substituted by a function and a new operation
    `PositionSortedOp`.) (Reported by Silviu Radu)

  - Now it is possible to switch repeated warnings off when working with
    iterative polynomial rings.


## GAP 4.4 Update 7 (March 2006)

### New or improved functionality:

  - The `Display` functionality for character tables has been extended by
    addition of an option to show power maps and centralizer orders in
    a format similar to that used in the ATLAS. Furthermore the options
    handling is now hierarchical, in order to admit more flexible
    overloading.

  - For the function `LowIndexSubgroupsFpGroup`, there is now an iterator
    variant `LowIndexSubgroupsFpGroupIterator`. (Suggested (and based
    on code contributed) by Michael Hartley)

  - Semigroup functionality in GAP has been improved and extended.
    Green's relations are now stored differently, making the system
    more amenable to new methods for computing these relations in
    special cases. It is now possible to calculate Green's classes etc.
    without computing the entire semigroup or necessarily loading the
    package **MONOID**. Furthermore, the Froidure-Pin algorithm has now
    been implemented in GAP.

  - Functionality for creating free products of any list of groups for
    which a finite presentation can be determined had been added. This
    function returns a finitely presented group. This functionality
    includes the `Embedding` operation. As an application of this new
    code a specialized direct product operation has been added for
    finitely presented groups which returns a finitely presented group.
    This application includes `Embedding` and `Projection`
    functionality.

  - Some new Straight Line Program (SLP) functionality has been added.
    The new functions take given SLPs and create new ones by
    restricting to a subset of the results, or to an intermediate
    result or by calculating the product of the results of two SLPs.

  - New code has been added to allow group elements with memory; that is,
    they store automatically how they were derived from some given set
    of generators. Note that there is not yet documentation for this
    functionality, but some packages already use it.

  - New code has been added to handle matrices and vectors in such a way
    that they do not change their representation in a generic manner.

  - The `Irr` method for p-solvable p-modular Brauer tables now keeps the
    order of the irreducibles in the ordinary table.

  - GAP can now handle any finite field for which the Conway polynomial
    is known or can be computed.

  - New Conway polynomials provided by John Bray and Kate Minola have
    been added.

  - The `ReadTest` methods for strings (filenames) and streams now
    automatically set the screen width (see `SizeScreen`) to 80 before
    the tests, and reset it afterwards.

  - Now a few more checks are done during the `configure` phase of
    compiling for future use of some I/O functions of the C-library in
    a package. Also the path to the GAP binaries for the GAP compiler
    is now handled via autoconf. Finally, now `autoconf` version 2.59
    is used.

### Fixed bugs which could produce wrong results:

  - Some technical errors in the functions for compressed vectors and
    matrices which could lead to corruption of internal data structures
    and so to crashes or conceivably to wrong results. (Reported by
    Roman Schmied)

  - A potential problem in the generic method for the undocumented
    operation `DirectFactorsOfGroup`: It was silently assumed that
    `NormalSubgroups` delivers the trivial
    subgroup as first and the whole group as last entry of the resulting
    list.

  - The code for sublists of compressed vectors created by `vec{range}`
    may write one byte beyond the space allocated for the new vector,
    overwriting part of the next object in the workspace. Thanks to Jack
    Schmidt for narrowing down the problem.

  - Given a class function object of value zero, an `Arithmetic Operations for Class Functions`
     method for a class function erroneously did not
    return `fail`. (Reported by Jack Schmidt)

  - The `Arithmetic Operations for Class Functions` method for a class
    function erroneously returned a finite number if one of the values
    was nonreal, not a cyclotomic integer, and had norm 1.

  - Two missing perfect groups were added, and the permutation degree
    lowered on the perfect groups with the largest degrees. (Reported
    by Jack Schmidt)

  - When a character table was displayed with `Display`, the centralizer
    order displayed for the first class shown was not correct if it did
    not involve all prime divisors of the group. (Reported by Jack
    Schmidt)

  - The first argument of the function `VectorSpace` must be a field.
    This is checked from now on. (Reported by Laurent Bartholdi)

  - Up to now, it was possible to create a group object from a semigroup
    of cyclotomics using `AsGroup`, although groups of cyclotomics are
    not admissible. (Reported by Alexander Konovalov)

  - The documentation of `CharacteristicPolynomial(F,mat)` was ambiguous
    if `FieldOfMatrix(mat) <= F < DefaultFieldOfMatrix(mat)`. In
    particular, the result was representation dependent. This was fixed
    by introducing a second field which specifies the vector space
    which mat acts upon. (Reported by Jack Schmidt)

  - `AssociatedReesMatrixSemigroupOfDClass` produced an incorrect
    sandwich matrix for the semigroup created. This matrix is an
    attribute set when creating the Rees matrix semigroup but is not
    used for creating the semigroup. The incorrect result was returned
    when `SandwichMatrix` was called. (Reported by Nelson Silva and
    Joao Araujo)

  - The literal `"compiled"` was given an incorrect length. The kernel
    was then unable to find compiled library code as the search path was
    incorrect. Also the documentation example had an error in the path
    used to invoke the `gac` compiler.

  - The twisting group in a generic wreath product might have had
    intransitive action. (Reported by Laurent Bartholdi)

  - There was an arithmetic bug in the polynomial reduction code.

### Fixed bugs which could lead to crashes:

  - Bug 1 in the list of fixed bugs which could lead to wrong results
    could also potentially lead to crashes.

### Other fixed bugs:

  - The matrices of invariant forms stored as values of the attributes
    `InvariantBilinearForm`, `InvariantQuadraticForm`, and
    `InvariantSesquilinearForm`, for matrix groups over finite fields,
    are now in the (compressed) format returned by `ImmutableMatrix`.

  - `String` now returns an immutable string, by making a copy before
    changing the argument.

  - `permutation^0` and `permutation^1` were not handled with special
    code in the kernel, hence were very slow for big permutations.
    (Reported by Max Neunhöffer)

  - Added code to cache the induced pcgs for an arbitrary parent pcgs.
    (This code was formerly part of the **CRISP** package.)

  - This fix consists of numerous changes to improve support for direct
    products, including: - new methods for
    `PcgsElementaryAbelianSeries`, `PcgsChiefSeries`,
    `ExponentsOfPcElement`, `DepthOfPcElement` for direct products -
    fixed `EnumeratorOfPcgs` to test for membership first - new methods
    for membership test in groups which have an induced pcgs - added
    `GroupOfPcgs` attribute to pcgs in various methods - fixed
    declarations of `PcgsElementaryAbelianSeries`, `PcgsChiefSeries`
    (the declared argument was a pcgs, not a group) (Reported by Roman
    Schmied)

  - Corrected a term ordering problem encountered by the basis
    construction code for finite dimensional vector spaces of
    multivariate rational functions. (Reported by Jan Draisma)

  - When the factor of a finite dimensional group ring by an ideal was
    formed, a method intended for free algebras modulo relations was
    used, and the returned factor algebra could be used for (almost)
    nothing. (Reported by Heiko Dietrich)

  - Up to now, `PowerMap` ran into an error when one asked for the n-th
    power map where n was not a small integer. This happened in some
    GAP library functions if the exponent of the character table in
    question was not a small integer.

  - Up to now, the test whether a finite field element was contained in a
    group of finite field elements ran into an error if the element was
    not in the field generated by the group elements. (Reported by
    Heiko Dietrich)

  - Conjugacy classes of natural (special) linear groups are now always
    returned with trivial class first.

  - Up to now, it could happen that `CheckFixedPoints` reduced an entry
    in its second argument to a list containing only one integer but
    did not replace the list by that integer; according to the
    conventions, this replacement should be done.

  - The functions `PrintTo` and `AppendTo` did not work correctly for
    streams. (Reported by Marco Costantini)

  - The function `Basis` did not return a value when it was called with
    the argument `Rationals`. (Reported by Klaus Lux)

  - For certain matrix groups, the function `StructureDescription` raised
    an error message. The reason for this was that a trivial method for
    `IsGeneralLinearGroup` for matrix groups in `lib/grpmat.gi` which
    is ranked higher than the nontrivial method for generic groups in
    `lib/grpnames.gi` called the operation `IsNaturalGL`, for which
    there was no nontrivial method available. (Reported by Nilo de
    Roock)

  - Action on sets of length 1 was not correctly handled. (Reported by
    Mathieu Dutour)

  - Now `WriteByte` admits writing zero characters to all streams.
    (Reported by Marco Costantini)

  - The conjugacy test for subgroups tests for elementary abelian regular
    normal subgroup (EARNS) conjugacy. The fix will catch this in the
    case that the second group has no EARNS. (Reported by Andrew
    Johnson)

  - So far, the UNIX installation didn't result in a correct gap.sh if
    the installation path contained space characters. Now it should
    handle this case correctly, as well as other unusual characters in
    path names (except for double quotes).


## GAP 4.4 Update 6 (September 2005)

Attribution of bugfixes and improved functionalities to those who
reported or provided these, respectively, is still fairly incomplete and
inconsistent with this update. We apologise for this fact and will
discuss until the next update how to improve this feature.

### Fixed bugs which could produce wrong results:

  - The perfect group library does not contain any information on the
    trivial group, so the trivial group must be handled specially.
    `PerfectGroup` and `NrPerfectLibraryGroups` were changed to
    indicate that the trivial group is not part of the library.

  - The descriptions of `PerfectGroup(734832,3)` and
    `PerfectGroup(864000,3)` were corrected in the library of perfect
    groups.

  - The functions `EpimorphismSchurCover` and
    `AbelianInvariantsMultiplier` may have produced wrong results
    without warning (Reported by Colin Ingalls). These problems are
    fixed. However, the methods currently used can be expected to be
    slower than the ones used before; we hope to fix this in the next
    version of GAP.

  - `DerivedSubgroup` and `CommutatorSubgroup` for permutation groups
    sometimes returned groups with an incorrect stabilizer chain due to
    a missing verification step after a random Schreier Sims.

  - `NaturalHomomorphismByNormalSubgroup` for FpGroups did
    unnecessary rewrites.

  - The alternating group A_3 incorrectly claimed to be not simple.

  - `ExponentSyllable` for straight line program elements gave a wrong
    result.

  - `PrimePGroup` is defined to return `fail` for trivial groups, but if
    the group was constructed as a factor or subgroup of a known
    p-group, the value of p was retained.

  - The functions `TestPackageAvailability` and `LoadPackage` did not
    work correctly when one asked for a particular version of the
    package, via a version number starting with the character `=`, in
    the sense that a version with a larger version number was loaded if
    it was available. (Reported by Burkhard Höfling)

  - The generator names constructed by `AlgebraByStructureConstants` were
    nonsense.

  - The undocumented function (but recently advertised on gap-dev)
    `COPY_LIST_ENTRIES` did not handle overlapping source and
    destination areas correctly in some cases.

  - The elements in a free magma ring have the filter
    `IsAssociativeElement` set whenever the elements in the underlying
    magma and in the coefficients ring have this filter set. (Reported
    by Randy Cone)

  - The function `InstallValue` must not be used for objects in the
    filter `IsFamily` because these objects are compared via
    `IsIdenticalObj`. (Reported by Max Neunhöffer)

### Fixed bugs which could lead to crashes:

  - Problem in composition series for permutation groups for
    non-Frobenius groups with regular point stabilizer.

  - After lots of computations with compressed GF(2) vectors GAP
    occasionally crashed. The reason were three missing `CHANGED_BAG`s
    in `SemiEchelonPListGF2Vecs`. They were missing, because a garbage
    collection could be triggered during the computation such that newly
    created bags could become "old". It is not possible to provide test
    code because the error condition cannot easily be reproduced.
    (Reported by Klaus Lux)

  - Minor bug that crashed GAP: The type of `IMPLICATIONS` could not
    be determined in a fresh session. (Reported by Marco Costantini)

  - `Assert` caused an infinite loop if called as
    the first line of a function called from another function.

### Other fixed bugs:

  - Wrong choice of prime in Dixon-Schneider if prime is bigger than
    group order (if group has large exponent).

  - Groebner basis code ran into problems when comparing monomial
    orderings.

  - When testing for conjugacy of a primitive group to an imprimitive
    group,GAP runs into an error in EARNS calculation. (Reported
    by John Jones)

  - The centre of a magma is commonly defined to be the set of
    elements that commute and associate with all elements. The
    previous definition left out "associate" and caused problems
    with extending the functionality to nonassociative loops.
    (Reported by Petr Vojtechovsky)

  - New kernel methods for taking the intersection and difference
    between sets of substantially different sizes give a big
    performance increase.

  - The commands `IsNaturalSymmetricGroup` and
    `IsNaturalAlternatingGroup` are faster and should run much less
    often into inefficient tests.

  - The perfect group library, see `Finite Perfect Groups`, is split into
    several files which are loaded and unloaded to keep memory usage
    down. The global variable `PERFSELECT` is a blist which indicates
    which orders are currently loaded. An off-by-one error wrongly
    added the last order of the previous file into the list of valid
    orders when a new file was loaded. A subsequent access to this
    order raises an error.

  - Up to now, the method installed for testing the membership of
    rationals in the field of rationals via `IsRat` was not called;
    instead a more general method was used that called `Conductor` and
    thus was much slower. Now the special method has been ranked up by
    changing the requirements in the method installation.

  - Fixed a bug in `APPEND_VEC8BIT`, which was triggered in the following
    situation: Let `e` be the number of field elements stored in one
    byte. If a compressed 8bit-vector `v` had length not divisible by
    `e` and another compressed 8-bit vector `w` was appended, such that
    the sum of the lengths became divisible by `e`, then one 0 byte too
    much was written, which destroyed the `TNUM` of the next GAP object
    in memory. (Reported by Klaus Lux)

  - `PermutationCycle` returned `fail` if the cycle was not a contiguous
    subset of the specified domain. (Reported by Luc Teirlinck)

  - Now `Inverse` correctly returns `fail` for zeros in finite fields
    (and does no longer enter a break loop).

  - Up to now, `CharacterDegrees` ignored the attribute `Irr` if the
    argument was a group that knew that it was solvable.

  - The function `Debug` now prints a meaningful message if the user
    tries to debug an operation. Also, the help file for `vi` is now
    available in the case of several GAP root directories.

  - It is no longer possible to create corrupt objects via ranges of
    length \>2^28, resp. \>2^60 (depending on the architecture). The
    limitation concerning the arguments of ranges is documented.
    (Reported by Stefan Kohl)

  - Now `IsElementaryAbelian` and
    `ClassPositionsOfMinimalNormalSubgroups` are available for ordinary
    character tables. Now the operation `CharacterTableIsoclinic` is an
    attribute, and there is another new attribute
    `SourceOfIsoclinicTable` that points back to the original table;
    this is used for computing the Brauer tables of those tables in the
    character table library that are computed using
    `CharacterTableIsoclinic`. Now `ClassPositionsOfDerivedSubgroup`
    avoids calling `Irr`, since `LinearCharacters` is sufficient. Now
    `ClassPositionsOfElementaryAbelianSeries` works also for the table
    of the trivial group. Restrictions of character objects know that
    they are characters.

    A few formulations in the documentation concerning character tables
        have been improved slightly.

  - Up to now, `IsPGroup` has rarely been set. Now many basic operations
    such as `SylowSubgroup` set this attribute on the returned result.

  - Computing an enumerator for a semigroup required too much time
    because it used all elements instead of the given generators.
    (Reported by Manuel Delgado)

  - Avoid potential error message when working with automorphism groups.

  - Fixed wrong page references in manual indices.

  - Make `MutableCopyMat` an operation and install the former function
    which does call `List` with `ShallowCopy` the default method for
    lists. Also use this in a few appropriate places.

  - An old DEC compiler doesn't like C preprocessor directives that are
    preceded by whitespace. Removed such whitespace. (Reported by Chris
    Wensley)

### New or improved functionality:

  - The primitive groups library has been extended to degree 2499.

  - New operation `Remove` and extended functionality of `Add` with an
    optional argument giving the position of the insertion. They are
    based on an efficient kernel function `COPY_LIST_ENTRIES`.

  - Added fast kernel implementation of Tarjan's algorithm for strongly
    connected components of a directed graph.

  - Now `IsProbablyPrimeInt` can be used with larger numbers. (Made
    internal function `TraceModQF` non-recursive.)

  - A new operation `PadicValuation` and a corresponding method for
    rationals.

  - A new operation `PartialFactorization` has been added, and a
    corresponding method for integers has been installed. This method
    allows one to specify the amount of work to be spent on looking for
    factors.

  - The generators of full s. c. algebras can now be accessed with the
    dot operator. (Reported by Marcus Bishop)

  - New Conway polynomials computed by Kate Minola, John Bray, Richard
    Parker.

  - A new attribute `EpimorphismFromFreeGroup`. The code has been written
    by Alexander Hulpke.

  - The functions `Lambda`, `Phi`, `Sigma`, and `Tau` have been turned
    into operations, to admit the installation of methods for arguments
    other than integers.

  - Up to now, one could assign only lists with `InstallFlushableValue`.
    Now also records are admitted.

  - `InstallMethod` now admits entering a list of strings instead of a
    list of required filters. Each such string must evaluate to a
    filter when used as the argument of `EvalString`. The advantage of
    this variant is that these strings are used to compose an info
    string (which is shown by `ApplicableMethod`) that reflects exactly
    the required filters.

  - In test files that are read with `ReadTest`, the assertion level is
    set to 2 between `START_TEST` and `STOP_TEST`. This may result in
    runtimes for the tests that are substantially longer than the usual
    runtimes with default assertion level 0. In particular this is the
    reason why some of the standard test files require more time in GAP
    4.4.6 than in GAP 4.4.5.

  - Some very basic functionality for floats.


## GAP 4.4 Update 5 (May 2005)

### Fixed bugs which could produce wrong results:

  - `GroupWithGenerators` returned a meaningless group object instead
    of signaling an error when it was called with an empty list of
    generators.

  - When computing preimages under an embedding into a direct product
    of permutation groups, if the element was not in the image of
    the embedding then a permutation had been returned instead of
    `fail`.

  - Two problems with `PowerMod` for polynomials. (Reported by Jack
    Schmidt)

  - Some methods for computing the sum of ideals returned the first
    summand instead of the sum. (Reported by Alexander Konovalov)

  - Wrong result in `Intersection` for pc groups.

  - The function `CompareVersionNumbers` erroneously ignored leading
    non-digit characters.

    A new feature in the corrected version is an optional third argument
    `"equal"`, which causes the function to return `true` only if the
    first two arguments describe equal version numbers; documentation is
    available in the ext-manual. This new feature is used in
    `LoadPackage`, now one can require a
    specific version of a package.

    The library code still contained parts of the handling of completion
    files for packages, which does not work and therefore had already
    been removed from the documentation. This code has now been removed.

    Now a new component `PreloadFile` is supported in `PackageInfo.g`
    files; if it is bound then the file in question is read
    immediately before the package or its documentation is
    loaded.

  - The result of `String` for strings not in `IsStringRep` that
    occur as list entries or record components was erroneously
    missing the double quotes around the strings.

  - A bug which caused `InducedPcgs` to return a pcgs which is not
    induced wrt. the parent pcgs of `pcgs`. This may cause
    unpredictable behaviour, e. g. when `SiftedPcElement` is used
    subsequently. (Reported by Alexander Konovalov)

  - Fixed a bug in `SmallGroupsInformation(512)`.

  - `PowerModCoeffs` with exponent 1 for compressed vectors did not
    reduce (a copy of) the input vector before returning it.
    (Reported by Frank Lübeck)

  - Sorting a mutable non-plain list (e.g., a compressed matrix over
    fields of order \< 257) could potentially destroy that object.
    (Reported by Alexander Hulpke)

  - Under rare circumstances computing the closure of a permutation
    group by a normalizing element could produce a corrupted
    stabilizer chain. (The underlying algorithm uses random
    elements, probability of failure was below 1 percent).
    (Reported by Thomas Breuer)

### Fixed bugs which could lead to crashes:

  - Some code and comments in the GAP kernel assumed that there is
    no garbage collection during the core printing function `Pr`, which
    is not correct. This could cause GAP in rare cases to crash
    during printing permutations, cyclotomics or strings with zero
    bytes. (Reported by Warwick Harvey)

### Other fixed bugs:

  - A rare problem with the choice of prime in the Dixon-Schneider
    algorithm for computing the character table of a group. (Reported
    by Jack Schmidt)

  - `DirectProduct` for trivial permutation groups returned a strange
    object.

  - A problem with `PolynomialReduction` running into an infinite loop.

  - Adding linear mappings with different image domains was not possible.
    (Reported by Pasha Zusmanovich)

  - Multiplying group ring elements with rationals was not possible.
    (Reported by Laurent Bartholdi)

  - `Random` now works for finite fields of size larger than 2^28.
    (Reported by Jack Schmidt)

  - Univariate polynomial creators did modify the coefficient list
    passed. (Reported by Jürgen Müller)

  - Fixed `IntHexString` to accept arguments not in `IsStringRep`; the
    argument is now first converted if necessary. (Reported by Kenn
    Heinrich)

  - The library code for stabilizer chains contained quite some explicit
    references to the identity `()`. This is unfortunate if one works
    with permutation groups, the elements of which are not plain
    permutations but objects which carry additional information like a
    memory, how they were obtained from the group generators. For such
    cases it is much cleaner to use the `One(...)` operation instead of
    `()`, such that the library code can be used for a richer class of
    group objects. This fix contains only rather trivial changes `()`
    to `One(...)` which were carefully checked by me. The tests for
    permutation groups all run without a problem. However, it is
    relatively difficult to provide test code for this particular
    change, since the "improvement" only shows up when one generates
    new group objects. This is for example done in the package
    **recog** which is in preparation. (Reported by Akos Seress and Max
    Neunhöffer)

  - Using `{}` to select elements of a known inhomogenous dense list
    produced a list that might falsely claim to be known inhomogenous,
    which could lead to a segfault if the list typing code tried to
    mark it homogenous, since the code intended to catch such errors
    also had a bug. (Reported by Steve Linton)

  - The record for the generic iterator construction of subspaces domains
    of non-row spaces was not complete.

  - When a workspace has been created without packages(`-A` option) and
    is loaded into a GAP session without packages (same option) then an
    error message is printed.

  - So far the functions `IsPrimeInt` and `IsProbablyPrimeInt` are
    essentially the same except that `IsPrimeInt` issues an additional
    warning when (non-proven) probable primes are considered as primes.

    These warnings now print the probable primes in question as well; if a
    probable prime is used several times then the warning is also printed
    several times; there is no longer a warning for some known large primes;
    the warnings can be switched off. See `IsPrimeInt` for more details.

    If we get a reasonable primality test in GAP we will change the
    definition of `IsPrimeInt` to do a proper test.

  - Corrected some names of primitive groups in degree 26. (Reported by
    Robert F. Bailey)

### New or improved functionality:

  - Several changes for `ConwayPolynomial`:

      - many new pre-computed polynomials

      - put data in several separate files (only read when needed)

      - added info on origins of pre-computed polynomials

      - improved performance of `ConwayPolynomial` and
      `IsPrimitivePolynomial` for p < 256

      - improved documentation of `ConwayPolynomial`

      - added and documented new functions `IsCheapConwayPolynomial` and
        `RandomPrimitivePolynomial`

  - Added method for `NormalBase` for extensions
    of finite fields.

  - Added more help viewers for the HTML version of the documentation
    (firefox, mozilla, konqueror, w3m, safari).

  - New function `ColorPrompt`. (Users of
    former versions of a `colorprompt.g` file: Now you just need a
    `ColorPrompt(true);` in your `.gaprc` file.)

  - Specialised kernel functions to support **GUAVA** 2.0. GAP will
    only load **GUAVA** in version at least 2.002 after this update.

  - Now there is a kernel function `CYC_LIST` for converting a list of
    rationals into a cyclotomic, without arithmetics overhead.

  - New functions `ContinuedFractionExpansionOfRoot` and
    `ContinuedFractionApproximationOfRoot` for computing continued
    fraction expansions and continued fraction approximations of real
    roots of polynomials with integer coefficients.

  - A method for computing structure descriptions for finite groups,
    available via `StructureDescription`.

  - This change contains the new, extended version of the
    **SmallGroups** package. For example, the groups of orders p^4, p^5,
    p^6 for arbitrary primes p, the groups of square-free order and the
    groups of cube-free order at most 50000 are included now. For more
    detailed information see the announcement of the extended package.

  - The function `ShowPackageVariables` gives an overview of the global
    variables in a package. It is thought as a utility for package
    authors and referees. (It uses the new function
    `IsDocumentedVariable`.)

  - The mechanisms for testing GAP has been improved:

      - The information whether a test file belongs to the list in
        `tst/testall.g` is now stored in the test file itself.

      - Some targets for testing have been added to the `Makefile` in
        the GAP root directory, the output of the tests goes to the
        new directory `dev/log`.

      - Utility functions for testing are in the new file
        `tst/testutil.g`. Now the loops over (some or all) files
        `tst/*.tst` can be performed with a function call, and the file
        `tst/testall.g` can be created automatically; the file
        `tst/testfull.g` is now obsolete. The remormalization of the
        scaling factors can now be done using a GAP function, so the
        file `tst/renorm.g` is obsolete.

      - Now the functions `START_TEST` and `STOP_TEST` use components in
        `GAPInfo` instead of own globals, and the random number
        generator is always reset in `START_TEST`.

      - `GAPInfo.SystemInformation` now takes two arguments, now one can
        use it easier in the tests.

  - `MultiplicationTable` is now an
    attribute, and the construction of a magma, monoid, etc. from
    multiplication tables has been unified.


## GAP 4.4 Bugfix 4 (December 2004)

### Fixed bugs which could produce wrong results:

  - An error in the `Order` method for matrices over cyclotomic fields
    which caused this method to return `infinity` for matrices of finite
    order in certain cases.

  - Representations computed by `IrreducibleRepresentations` in
    characteristic 0 erraneously claimed to be faithful.

  - A primitive representation of degree 574 for PSL(2,41) has been
    missing in the classification on which the GAP library was
    built.

  - A bug in `Append` for compressed vectors over GF(2): if the length
    of the result is 1 mod 32 (or 64) the last entry was forgotten to
    copy.

  - A problem with the Ree group Ree(3) of size 1512 claiming to be
    simple.

  - An error in the membership test for groups GU(n,q) and SU(n,q) for
    non-prime q.

  - An error in the kernel code for ranges which caused e.g. `-1 in
    [1..2]` to return `true`.

  - An error recording boolean lists in saved workspaces.

  - A problem in the selection function for primitive and transitive
    groups if no degree is given.

  - `ReducedConfluentRewritingSystem` returning a cached result that
    might not conform to the ordering specified.

### Other fixed bugs:

  - A problem with the function `SuggestUpdates` to check for the most
    recent version of packages available.

  - A problem that caused `MatrixOfAction` to produce an error when the
    algebra module was constructed as a direct sum.

  - Problems with computing n-th power maps of character tables, where n
    is negative and the table does not yet store its irreducible
    characters.

  - Element conjugacy in large-base permutation groups sometimes was
    unnecessarily inefficient.

  - A missing method for getting the letter representation of an
    associate word in straight line program representation.

  - A problem with the construction of vector space bases where the
    given list of basis vectors is itself an object that was returned by
    `Basis`.

  - A problem of `AbelianInvariantsMultiplier` insisting that a result
    of `IsomorphismFpGroup` is known to be surjective.

  - An error in the routine for `Resultant` if one of the polynomials
    has degree zero.


## GAP 4.4 Bugfix 3 (May 2004)

### Fixed bugs which could produce wrong results:

  - Incorrect setting of system variables (e.g., home directory and
    command line options) after loading a workspace.

  - Wrong handling of integer literals within functions or loops on
    64-bit architectures (only integers in the range from 2^28 to 2^60).

### Fixed bugs which could lead to crashes:

  - A problem in the installation of the multiplication routine for
    matrices that claimed to be applicable for more general list
    multiplications.

  - A problem when computing weight distributions of codes with weights
    > 2^28.

### Other fixed bugs:

  - Problems with the online help with some manual sections.

  - Problems of the online help on Windows systems.

  - A problem in `GQuotients` when mapping from a finitely presented
    group which has a free direct factor.

  - A bug in the function `DisplayRevision`.

  - The trivial finitely presented group on no generators was not
    recognized as finitely presented.

  - A problem with `Process`.

  - A problem when intersecting subgroups of finitely presented groups
    that are represented in "quotient representation" with the quotient
    not apermutation group.

  - A bug in the generic `Intersection2` method for vector spaces, in
    the case that both spaces are trivial.

  - Enable ReeGroup(q) for q = 3.


## GAP 4.4 Bugfix 2 (April 2004)

### Fixed bugs which could lead to crashes:

  - A crash when incorrect types of arguments are passed to
    `FileString`.

### Other fixed bugs:

  - A bug in `DerivedSubgroupTom` and `DerivedSubgroupsTom`.

  - An error in the inversion of certain `ZmodnZObj` elements.

  - A wrong display string of the numerator in rational functions
    returned by `MolienSeriesWithGivenDenominator` (in the case that the
    constant term of this numerator is zero).


## Changes between GAP 4.3 and GAP 4.4

This chapter contains an overview of most important changes introduced
in GAP 4.4. It also contains information about subsequent update
releases of GAP 4.4.

### Potentially Incompatible Changes

  - The mechanism for the loading of Packages has changed to allow
    easier updates independent of main GAP releases. Packages
    require a file `PackageInfo.g` now. The new `PackageInfo.g`
    files are available for all packages with the new version of
    GAP.

  - `IsSimpleGroup` returns false now for the trivial group.

  - `PrimeBlocks`: The output format has changed.

  - Division rings (see `IsDivisionRing`) are now implemented as
    `IsRingWithOne`.

  - `DirectSumOfAlgebras`: p-th power maps are compatible with the
    input now.

  - The print order for polynomials has been changed.

These changes are, in some respects, departures from our policy of
maintaining upward compatibility of documented functions between
releases. In the first case, we felt that the old behavior was
sufficiently inconsistent, illogical, and impossible to document that we
had no alternative but to change it. In the case of the package
interface, the change was necessary to introduce new functionality. The
planned and phased removal of a few unnecessary functions or synonyms is
needed to avoid becoming buried in "legacy" interfaces, but we remain
committed to our policy of maintaining upward compatibility whenever
sensibly possible.

  - Groebner Bases:

    Buchberger's algorithm to compute Groebner Bases has been
    implemented in GAP. (A. Hulpke)

  - For large scale Groebner Basis computations there also is an
    interface to the Singular system available in the
    [**Singular**](https://www.gap-system.org/Packages/singular.html)
    package. (M. Costantini and W. de Graaf)

  - New methods for factorizing polynomials over algebraic extensions of
    the rationals have been implemented in GAP. (A. Hulpke)

  - For more functionality to compute with algebraic number fields there
    is an interface to the Kant system available in the
    [**Alnuth**](https://www.gap-system.org/Packages/alnuth.html)
    package. (B. Assmann and B. Eick)

  - A new functionality to compute the minimal normal subgroups of a
    finite group, as well as its socle, has been installed. (B. Höfling)

  - A fast method for recognizing whether a permutation group is
    symmetric or alternating is available now (A. Seress)

  - A method for computing the Galois group of a rational polynomial is
    available again. (A. Hulpke)

  - The algorithm for `BrauerCharacterValue` has been extended to the
    case where the splitting field is not supported in GAP. (T. Breuer)

  - Brauer tables of direct products can now be constructed from the
    known Brauer tables of the direct factors. (T. Breuer)

  - Basic support for vector spaces of rational functions and of uea
    elements is available now in GAP. (T. Breuer and W. de Graaf)

  - Various new functions for computations with integer matrices are
    available, such as methods for computing normal forms of integer
    matrices as well as nullspaces or solutions systems of equations.
    (W. Nickel and F. Gähler)

### New Packages

The following new Packages have been accepted.

  - [**Alnuth**: Algebraic Number Theory and an interface to the Kant
    system.](https://www.gap-system.org/Packages/alnuth.html) By B.
    Assmann and B. Eick.

  - [**LAGUNA**: Computing with Lie Algebras and Units of Group
    Algebras.](https://www.gap-system.org/Packages/laguna.html) By V.
    Bovdi, A. Konovalov, R. Rossmanith, C. Schneider.

  - [**NQ**: The ANU Nilpotent Quotient
    Algorithm.](https://www.gap-system.org/Packages/nq.html) By W.
    Nickel.

  - [**KBMAG**: Knuth-Bendix for Monoids and
    Groups.](https://www.gap-system.org/Packages/kbmag.html) By D. Holt.

  - [**Polycyclic**: Computation with polycyclic
    groups.](https://www.gap-system.org/Packages/polycyclic.html) By B.
    Eick and W. Nickel.

  - [**QuaGroup**: Computing with Quantized Enveloping
    Algebras.](https://www.gap-system.org/Packages/quagroup.html) By W.
    de Graaf.

### Performance Enhancements

  - The computation of irreducible representations and irreducible
    characters using the Baum-Clausen algorithm and the
    implementation of the Dixon-Schneider algorithm have been
    speeded up.

  - The algorithm for `PossibleClassFusions` has been changed: the
    efficiency is improved and a new criterion is used. The
    algorithm for `PossibleFusionsCharTableTom` has been speeded
    up. The method for `PrimeBlocks` has been improved following a
    suggestion of H. Pahlings.

  - New improved methods for normalizer and subgroup conjugation in
    S_n have been installed and new improved methods for
    `IsNaturalSymmetricGroup` and `IsNaturalAlternatingGroup` have
    been implemented. These improve the available methods when
    groups of large degrees are given.

  - The partition split method used in the permutation backtrack is
    now in the kernel. Transversal computations in large
    permutation groups are improved. Homomorphisms from free groups
    into permutation groups now give substantially shorter words
    for preimages.

  - The membership test in `SP` and `SU` groups has been improved
    using the invariant forms underlying these groups.

  - An improvement for the cyclic extension method for the
    computation of subgroup lattices has been implemented.

  - A better method for `MinimalPolynomial` for finite field matrices
    has been implemented.

  - The display has changed and the arithmetic of multivariate
    polynomials has been improved.

  - The `LogMod` function now uses Pollard's rho method combined with
    the Pohlig/Hellmann approach.

  - Various functions for sets and lists have been improved following
    suggestions of L. Teirlinck. These include: `Sort`, `Sortex`,
    `SortParallel`, `SortingPerm`, `NrArrangements`.

  - The methods for `StructureConstantsTable` and `GapInputSCTable`
    have been improved in the case of a known (anti-) symmetry
    following a suggestion of M. Costantini.

The improvements listed in this Section have been implemented by T.
Breuer and A. Hulpke.

### New Programming and User Features

  - The 2GB limit for workspace size has been removed and version
    numbers for saved workspaces have been introduced. (S. Linton and B.
    Höfling)

  - The limit on the total number of types created in a session has been
    removed. (S. Linton)

  - There is a new mechanism for loading packages available. Packages
    need a file `PackageInfo.g` now. (T. Breuer and F. Lübeck).

Finally, as always, a number of bugs have been fixed. This release thus
incorporates the contents of all the bug fixes which were released for
GAP 4.3. It also fixes a number of bugs discovered since the last
bug fix.

Below we list changes in the main system (excluding packages) that have
been corrected or added in bugfixes and updates for GAP 4.4.


## Changes from Earlier Versions

The most important changes between GAP 4.2 and GAP 4.3 were:

  - The performance of several routines has been substantially improved.

  - The functionality in the areas of finitely presented groups, Schur
    covers and the calculation of representations has been extended.

  - The data libraries of transitive groups, finite integral matrix
    groups, character tables and tables of marks have been extended.

  - The Windows installation has been simplified for the case where you
    are installing GAP in its standard location.

  - Many bugs have been fixed.

The most important changes between GAP 4.1 and GAP 4.2 were:

  - A much extended and improved library of small groups as well as
    associated `IdGroup` routines.

  - The primitive groups library has been made more independent of the
    rest of GAP, some errors were corrected.

  - New (and often much faster) infrastructure for orbit computation,
    based on a general "dictionary" abstraction.

  - New functionality for dealing with representations of algebras, and
    in particular for semisimple Lie algebras.

  - New functionality for binary relations on arbitrary sets, magmas and
    semigroups.

  - Bidirectional streams, allowing an external process to be started
    and then controlled "interactively" by GAP

  - A prototype implementation of algorithms using general subgroup
    chains.

  - Changes in the behavior of vectors over small finite fields.

  - A fifth book "New features for Developers" has been added to the
    GAP manual.

  - Numerous bug fixes and performance improvements

The changes between the final release of GAP 3 (version 3.4.4) and
GAP 4 are wide-ranging. The general philosophy of the changes is
two-fold. Firstly, many assumptions in the design of GAP 3 revealed
its authors' primary interest in group theory, and indeed in finite
group theory. Although much of the GAP 4 library is concerned with
groups, the basic design now allows extension to other algebraic
structures, as witnessed by the inclusion of substantial bodies of
algorithms for computation with semigroups and Lie algebras. Secondly,
as the scale of the system, and the number of people using and
contributing to it has grown, some aspects of the underlying system have
proved to be restricting, and these have been improved as part of
comprehensive re-engineering of the system. This has included the new
method selection system, which underpins the library, and a new, much
more flexible, GAP package interface.

Details of these changes can be found in the document "Migrating to GAP
4" available at the GAP website, see
[here](https://www.gap-system.org/Gap3/migratedoc.pdf).

It is perhaps worth mentioning a few points here.

Firstly, much remains unchanged, from the perspective of the
mathematical user:

  - The syntax of that part of the GAP language that most users need
    for investigating mathematical problems.

  - The great majority of function names.

  - Data libraries and the access to them.

A number of visible aspects have changed:

  - Some function names that need finer specifications now that there
    are more structures available in GAP.

  - The access to information already obtained about a mathematical
    structure. In GAP 3 such information about a group could be
    looked up by directly inspecting the group record, whereas in
    GAP 4 functions must be used to access such information.

Behind the scenes, much has changed:

  - A new kernel, with improvements in memory management and in the
    language interpreter, as well as new features such as saving of
    workspaces and the possibility of compilation of GAP code into
    C.

  - A new structure to the library, based upon a new type and method
    selection system, which is able to support a broader range of
    algebraic computation and to make the structure of the library
    simpler and more modular.

  - New and faster algorithms in many mathematical areas.

  - Data structures and algorithms for new mathematical objects, such as
    algebras and semigroups.

  - A new and more flexible structure for the GAP installation and
    documentation, which means, for example, that a GAP package and
    its documentation can be installed and be fully usable without any
    changes to the GAP system.

Very few features of GAP 3 are not yet available in GAP 4.

  - Not all of the GAP 3 packages have yet been converted for use
    with GAP 4.

  - The library of crystallographic groups which was present in
    GAP 3 is now part of a GAP 4 package
    [**CrystCat**](https://www.gap-system.org/Packages/crystcat.html) by
    V. Felsch and F. Gähler.