File: ChangeLog

package info (click to toggle)
jacal 1c7-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,068 kB
  • sloc: lisp: 6,489; sh: 419; makefile: 315
file content (2261 lines) | stat: -rw-r--r-- 65,775 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
2020-03-02  Aubrey Jaffer  <jaffer@jaffer-Lenovo-Z70-80>

	* toploads.scm (*jacal-version*): Bumped from 1c6 to 1c7.

2020-03-01  Aubrey Jaffer  <agj@alum.mit.edu>

	* DOC/ratint.tex, anti-diff.scm (rat:integrate): Corrected
	algorithm.

2020-02-29  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.texi (Calculus): Broadened domain of application and added
	examples.

	* anti-diff.scm (independent-of-var?): Ignore integration
	constants when checking result.
	(indef-integrate): Return novalue when integration fails.
	(rat:integrate): Debugged for rational expressions with single
	algebraic field extension.

2020-02-24  Aubrey Jaffer  <agj@alum.mit.edu>

	* anti-diff.scm (sqfr-splits): Fixed variable ordering bug.
	(indef-integrate): Normalize return value.
	(rat:integrate): Code cleanup.
	(rat:integrate): Long-division by extension var first.
	(indef-integrate): Use _$ as dummy extension var.

2020-02-23  Aubrey Jaffer  <agj@alum.mit.edu>

	* DOC/ratint.tex (section{Algebraic field extension}): Tracking
	anti-diff.scm.

	* anti-diff.scm (rat:integrate, indef-integrate): Nearly working
	with algebraic field extension.
	(poly:integrate): No longer needed.

	* ff.scm (ff:unorm): Fail gracefully when argument is number.

2020-02-21  Aubrey Jaffer  <agj@alum.mit.edu>

	* DOC/ratint.tex (section{Algebraic field extension}): Fixed
	coeff() argument order.
	(section{Rational Function Integration}): Expanded explanation.

	* anti-diff.scm (rat:integrate): Put all numerator factors into
	p_1(x).  Tighten bounds check for M vs. N.
	(indef-integrate): Workaround negated integration bug.

	* Makefile (w32install): Output to dist directory.

2020-02-19  Aubrey Jaffer  <agj@alum.mit.edu>

	* DOC/ratint.tex (section{Algebraic field extension}): Redevelop
	algorithm to handle algebraic field extensions.

	* anti-diff.scm (indef-integrate): Warn if derivative of integral
	does not equal original integrand.
	(rat:integrate): Reorganized along path to handling algebraic
	extensions.

2020-02-16  Aubrey Jaffer  <agj@alum.mit.edu>

	* t.math, test.math: Added high power integration test.

2020-02-16  Aubrey Jaffer  <jaffer@jaffer-Lenovo-Z70-80>

	* toploads.scm (*jacal-version*): Bumped from 1c5 to 1c6.

2020-02-15  Aubrey Jaffer  <agj@alum.mit.edu>

	* anti-diff.scm, builtin.scm: (integrate): Evaluate integral at
	definite limits.
	(rat:integrate): Removed special treatment for M = 0.

	* t.math, test.math: Added integration test cases.

	* jacal.texi (Calculus): Integration section added.

	* DOC/ratint.tex, anti-diff.scm: Algorithm simplified to use only
	square-free factorization.

2020-02-14  Aubrey Jaffer  <agj@alum.mit.edu>

	* DOC/ratint.tex, anti-diff.scm, t.math: Integration works!

	* anti-diff.scm (rat:integrate, integrate): Reorganized code for
	splitting unsquared factors in numerator.

2020-02-13  Aubrey Jaffer  <agj@alum.mit.edu>

	* anti-diff.scm: Works for many cases.  p_2(x) not handled yet.
	(rat:integrate): Fixed off-by-one.  Fixed powfacts argument.
	(sqfr-splits): Fixed constant return.
	(rat:integrate): Corrected powers of M+.
	(poly:integrate): univ:demote corrects for variable ordering.
	(integrate): Call poly:integrate when denominator independent of
	integration variable.

	* DOC/ratint.tex: Both p_1(x) and p_2(x) require special treatment.

2020-02-09  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile, anti-diff.scm, builtin.scm, jacalcat, vect.scm:
	(anti-diff.scm): Added.

	* DOC/ratint.tex: Revised algorithm to extract p_1(x).

2020-02-06  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacalcat, anti-diff.scm, builtin.scm: Developing indefinite
	integration.

	* English.scm (prec:prefix): Corrected '^-' binding power.

2019-05-11  Aubrey Jaffer  <agj@alum.mit.edu>

	* types.scm (sexp->new-var): Handle differential shadow-var.

2019-05-03  Aubrey Jaffer  <agj@alum.mit.edu>

	* test.math: Added radical test case.

	* ext.scm (alg:clear-leading-exts): Overly cautious check removed.
	(alg:conjugate): fixed (a/4)^(1/2) and ((4/a)^(1/3))^3.

2019-04-28  Aubrey Jaffer  <agj@alum.mit.edu>

	* ext.scm (alg:clear-leading-exts): Renamed from
	alg:clear-denom; extended to all implicits.

2019-04-15  Aubrey Jaffer  <agj@alum.mit.edu>

	* sexp.scm (sexp:alpha-convert): Handles arguments in
	non-canonical expressions, replacing clambda.

2019-04-14  Aubrey Jaffer  <agj@alum.mit.edu>

	* sexp.scm (seval): lambda takes exactly 2 arguments.

	* English.scm (tran:translations): Added
	not-a-scalar-expression-or-equation:--

	* builtin.scm (factors, factor): Type check argument.

2019-04-12  Aubrey Jaffer  <agj@alum.mit.edu>

	* toploads.scm (*jacal-version*): Bumped from 1c4 to 1c5.

	* English.scm (tran:translations): Added not-a-square-matrix:--

	* vect.scm (ncmult, transpose): Removed gratuitous calls to
	bunch:norm.

	* builtin.scm (describe): Improved description of matrices.

	* elim.scm (eliminate): Fixed long-standing bug where [a]*5 ==> 5 a.

	* norm.scm (ncexpt): Fail gracefully when given funky exponent.

	* jacal.texi: Described how to code row-vectors (as opposed to
	bunches) and column-vectors.

2019-04-08  Aubrey Jaffer  <agj@alum.mit.edu>

	* sexp.scm (rapply): Catch out-of-range index.

2015-01-14  Aubrey Jaffer  <jaffer@dv7t>

	* toploads.scm (*jacal-version*): Bumped from 1c3 to 1c4.

2013-05-10  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.texi (Installation): Added configure to Unix script.

2013-05-08  Aubrey Jaffer  <jaffer@dv7>

	* toploads.scm (*jacal-version*): Bumped from 1c2 to 1c3.

2012-04-10  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (upgnu): Added target to upload to ftp.gnu.org.

2011-11-26  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (html, install-html): HTML generated by `makeinfo --html'.

2011-10-25  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (snapdir, infodir, htmldir): Added defaults so make
	works with empty "config.status".

2011-04-21  Aubrey Jaffer  <agj@alum.mit.edu>

	* toploads.scm: Updated copyright dates.

2011-04-01  Aubrey Jaffer  <agj@alum.mit.edu>

	* tensor.scm, func.scm : Updated calls to defbltn.

2010-12-20  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacalcat, toploads.scm: Changed defmacro:load calls to regular load.

2010-08-13  Aubrey Jaffer  <agj@alum.mit.edu>

	* decompose.scm (decompose): Changed = to eqv?.

2010-08-12  Vytautas Jancauskas

	* decompose.scm: Fixed a small bug when decomposing a polynomial

	* builtin.scm, decompose.scm: Removed the two numeric parameters
	from decompose

2010-08-09  author  Vytautas Jancauskas

	* Makefile, builtin.scm, decompose.scm, jacalcat:
	Added rudimentary polynomial decomposition support

2010-07-08  Aubrey Jaffer  <agj@alum.mit.edu>

	* test.math (interp_fn): Updated to new interp parameters.

	* interpolate.scm (interp:taylor): Pulled repeated computation out
	of recursion.

	* jacal.sh: Added support for (gosh) Gauche-0.9.

2010-06-29  Aubrey Jaffer  <jaffer@dv7>

	* toploads.scm (*jacal-version*): Bumped from 1c1 to 1c2.

2010-06-28  Aubrey Jaffer  <agj@alum.mit.edu>

	* interpolate.scm: Refactored some app* calls.

	* grammar.scm (block-write-strings): Made output one narrower.

	* jacal.texi (Miscellaneous): Updated commands(), show all, show
	priority, and show grammars commands.
	(Matrix Parts): Added 'rank' and 'charpoly'.
	(Lambda Calculus): Added mixed rank example.
	(Miscellaneous): Added 'tex', 'scheme', 'disp2d', and 'standard'
	commands.

2010-06-24  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.texi (Interpolation): Added section.

	* interpolate.scm (memon, factorial): Merged duplicated functions.

	* builtin.scm (interp*): Dynamically-load 'interpolate.

	* toploads.scm, jacalcat: Made "interpolate.scm" dynamically-loaded.

	* combin.scm (memon): Moved from "uv-hensel.scm".

2010-06-23  Vytautas Jancauskas

	* interploate.scm: Added Neville's algorithm for polynomial
	interpolation.  Removed the requirement to specify the same number
	of derivatives for each point in newtons interpolation.  Added
	simple memoization for newtons interpolation since it makes it
	ALOT faster.

	* builtin.scm (interp.neville): Added.

2010-06-22  Vytautas Jancauskas

	* interp_test.scm, interpolate.scm: Hermite interpolation.

2010-06-21  Vytautas Jancauskas

	* interp_test.scm: Added simple unit testing for interpolation
	code.

	* interpolate.scm: Initial preparations for adding hermite
	interpolation.

2010-06-20  Vytautas Jancauskas

	* interpolate.scm: A minor efficiency change in some procedures
	when checking if a list is of a single element.

2010-06-19  Vytautas Jancauskas

	* builtin.scm, interpolate.scm (interp.newton): Added newtons
	method for polynomial interpolation.

	* interpolate.scm: Signal an error when passing an empty point
	list to interp.

	* interpolate.scm: Added divided differences procedure for newtons
	method of polynomial interpolation.

2010-06-19  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile: INSTALL_INFO = ginstall-info

2010-06-02  Aubrey Jaffer  <agj@alum.mit.edu>

	* configure: Improved portability of trailing / detection.

2010-05-21  Aubrey Jaffer  <agj@alum.mit.edu>

	* configure (ac_default_prefix): Was lacking trailing /.

	* Makefile (install-script): Removed sed // filter.

2010-05-21  Vytautas Jancauskas

	* Makefile, builtin.scm, interpolate.scm, toploads.scm:
	Added a rudimentary form of interpolation

2010-03-15  Aubrey Jaffer  <agj@alum.mit.edu>

	* English.scm (tps:2d): Put space between brackets and matrix
	contents in order to differentiate between bunch and matrix.

2010-03-13  Aubrey Jaffer  <agj@alum.mit.edu>

	* builtin.scm (args, func): Handle non-function case.

	* info.scm (info:example): Output warning if none found.

2010-02-23  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (Makefile): Runs ./configure to create config.status.

2010-02-13  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile: Reorganized per <http://www.gnu.org/prep/standards/>.

2010-02-04  Aubrey Jaffer  <agj@alum.mit.edu>

	* configure: GNU-style configuration for installation creates
	config.status, which is included by Makefile.

2010-01-28  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.sh (Guile 1.8.6): Added -l ${SCHEME_LIBRARY_PATH}guile.use
	conditioned on "guile.use" existence.

2009-09-27  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.texi (Lambda Calculus): Added doc for elementwise.

2009-08-24  Sarah V. Jaffer

	* builtin.scm, ff.scm, sexp.scm:
	All calls of defbltn now check for correct number of arguments.

2009-08-02  Aubrey Jaffer  <jaffer@localhost.localdomain>

	* toploads.scm (*jacal-version*): Bumped from 1b9 to 1c1.

2009-08-01  Aubrey Jaffer  <agj@alum.mit.edu>

	* uv-hensel.scm (u:prime-power): Use integer-log instead of
	homegrown cilog.

	* hensel.scm (hen:multivariate-hensel)
	(hen:multivariate-diophant): Moved math:debug checks inline.

2009-07-18  Aubrey Jaffer  <agj@alum.mit.edu>

	* grammar.scm (flush-input-whitespace): Added.

	* English.scm (grm-reader): Abstracted from grammar definitions.

2009-07-16  Aubrey Jaffer  <agj@alum.mit.edu>

	* hensel.scm (hen:multivariate-diophant): Call
	ff:check-pairwise-relatively-prime-ideal; catches problem earlier.

	* uv-hensel.scm (ff:check-pairwise-relatively-prime): Simplified.
	(ff:check-pairwise-relatively-prime-ideal): Added.

2009-07-10  Aubrey Jaffer  <agj@alum.mit.edu>

	* uv-hensel.scm, ff.scm: Code cleanup.

	* combin.scm (del): Removed; replaced by 'remove'.  Cleanup.

	* poly.scm (poly:has-binomial-terms?): Added.

	* hensel.scm (poly:factorszpp): Prepare for choosing special-var
	randomly.

2009-07-03  Aubrey Jaffer  <agj@alum.mit.edu>

	* view.scm (view):
	* toploads.scm (prec:warn):
	* sexp.scm (batch1):
	* grammar.scm (read-sexp):
	* builtin.scm (make-grammar-bltn):
	* English.scm: Changed to track changes to Precedence-parsing
	module in SLIB.

2009-06-04  Aubrey Jaffer  <agj@alum.mit.edu>

	* uv-hensel.scm (check-mel): Fixed error message.

	* debug.scm (qp): Define instead of qpn; lose extra blank lines.

	* ff.scm (ff:print): Just use math:print.

	* Makefile (check, t): Added.

2009-05-27  Aubrey Jaffer  <agj@alum.mit.edu>

	* hensel.scm (poly:factorszpp): Code cleanup.

2009-05-25  Aubrey Jaffer  <agj@alum.mit.edu>

	* test.math: Added factor bug (unlucky random-ideal) test case.

	* poly.scm (poly:elim2): Moved math:trace from poly:elim.

2008-02-01  Aubrey Jaffer  <jaffer@aubrey.jaffer>

	* toploads.scm (*jacal-version*): Bumped from 1b8 to 1b9.

2008-01-31  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile, jacal.spec: Always put - between jacal and version.

2008-01-28  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.texi (Overview): JACAL is a GNU package.
	(GNU Free Documentation License): Moved under "Overview".

2008-01-23  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (jacal48): Increased -h, but still says
	"4500000 is too small" when run!

	* sexp.scm (hash-table): Require.

	* toploads.scm (byte): If BYTE (required by RANDOM) requires
	ARRAY, then it will redefine EQUAL?, which will screw up
	HASH-TABLE.  So require BYTE first.

	* Makefile (jacallibdir): Removed extra lib/ from path.

2008-01-19  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (install): test -d is not needed with mkdir -p.

2008-01-18  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (install): mkdir -p.

2008-01-16  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (RSYNC): --rsync-path no longer needed.

2008-01-15  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.nsi (MUI_ICON): Set to equal.ico.

	* Makefile: Removed JACAL.lnk.

	* jacal.nsi: Create shortcuts at installation; removed JACAL.lnk.

2008-01-09  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (doszip): Added eqaul.ico.

	* equal.ico: Added equal-sign icon.

2007-12-21  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.sh, jacal.1: Added Larceny.

	* jacal.texi (Installation): Added Larceny.

	* builtin.scm (degree): Fixed WNA error message.

2007-12-17  Aubrey Jaffer  <agj@alum.mit.edu>

	* English.scm (tran:translations): Removed not-a-bunch?.

	* builtin.scm (poly): Fixed for rational coefficients.

2007-11-29  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.sh: mzscheme.init renamed from DrScheme.init.

	* English.scm (tran:translations): Added file-not-found.

	* builtin.scm (load): Check that file exists before loading.

	* sexp.scm (batch): Check that file exists before running.

2007-11-28  Aubrey Jaffer  <agj@alum.mit.edu>

	* toploads.scm: defmacro:load "sexp.scm" because it uses
	fluid-let.

	* jacal.1, jacal.sh (Usage): Updated list of implementations.

	* Makefile (install): Grab SCHEME_LIBRARY_PATH from `slib'.

2007-11-23  Aubrey Jaffer  <jaffer@aubrey.jaffer>

	* toploads.scm (*jacal-version*): Bumped from 1b7 to 1b8.

2007-09-04  Aubrey Jaffer  <agj@alum.mit.edu>

	* *: Updated license notices to GPL 3.

	* COPYING: Updated to GPL-3.0.

	* Makefile (srcdir.mk): Removed.
	(install*): Added $(DESTDIR) prefix.

2007-09-03  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.sh: Added support for SISC.

2007-09-02  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.texi (Demonstrating Jacal): Give full batch commands.

2007-06-08  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile: Changed to use "mkdir -p".

2007-04-28  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (jacal.html): Make in unix for w32install because MinGW
	chokes on @syncodeindex.

	* jacal.sh (kawa): Added.

2007-03-26  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (mfiles): Added version.txi.

2007-03-05  Jerry van Dijk

	* jacal.nsi: NSIS Windows installer script.

	* Makefile (w32install): Added target.

2007-01-20  Aubrey Jaffer  <agj@alum.mit.edu>

	* uv-hensel.scm (landau-mignotte-bound*2): integer-sqrt has moved
	from 'root' to 'math-integer' SLIB module.

	* Makefile (mfiles): Added elk.scm (trampoline for "jacal.sh").

2006-11-04  Waldek Hebisch

	* uv-hensel.scm (u:factorsz): Found an example to exercise LOOP.

2006-11-01  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.texi: Eliminated cover texts from GFDL.

2006-10-21  Aubrey Jaffer  <jaffer@aubrey.jaffer>

	* toploads.scm (*jacal-version*): Bumped from 1b6 to 1b7.

2006-09-14  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.texi (Index): Merged indexes.

2006-08-10  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (dvi, pdf): New tetex-3.0(-20.FC5) broke them -- fixed.
	(ratint.pdf): Repaired for tetex-3.0; ratint.dvi still broken.

2006-06-30  Aubrey Jaffer  <agj@alum.mit.edu>

	* unparse.scm (print-using-grammar): Renamed from inprint.
	(template-print): Renamed from tprint.

2006-06-03  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.sh: Pass extra argument to $command.

2006-05-14  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (mfiles): Added fdl.texi.
	(docs): Added target to make all documentation files; invoke xdvi.

2006-03-22  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (jacal48): Add "(require 'fluid-let)"; batch now works.

2006-03-19  Aubrey Jaffer  <agj@alum.mit.edu>

	* sexp.scm: Added (require 'fluid-let).

2006-03-01  Aubrey Jaffer  <agj@alum.mit.edu>

	* ff.scm (sym:invert, sym:sym): Use symmetric:modulus procedure.

2006-02-13  Aubrey Jaffer  <jaffer@aubrey>

	* toploads.scm (*jacal-version*): Bumped from 1b5 to 1b6.

2006-02-13  Aubrey Jaffer  <agj@alum.mit.edu>

	* English.scm (tok:char-group): Works returning string (instead of
	symbol); why?

	* types.scm (var:sexp-apply, var:sexp-string): Commented out
	unused functions.

2005-12-28  Aubrey Jaffer  <agj@alum.mit.edu>

	* builtin.scm (scheme): Inputs string argument as Scheme.
	(make-grammar-bltn): Added.
	(tex): Inputs string argument as TeX.
	(standard, disp2d): Added; input string argument as standard.

	* info.scm (jacobi, jacobian): Added.

	* builtin.scm (jacobi, jacobian): Added.

2005-12-26  Aubrey Jaffer  <agj@alum.mit.edu>

	* norm.scm (diff): Added poly:square-free-var call to remove
	differentials in both numerator and denominator.

2005-12-01  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.sh (gui): Removed guile.scm; uses go.scm instead.

	* Makefile (install): Removed guile.scm; uses go.scm instead.

	* *.scm: Downcased all program identifiers.

2005-06-22  Aubrey Jaffer  <jaffer@aubrey>

	* toploads.scm (*jacal-version*): Bumped from 1b4 to 1b5.

2005-06-21  Aubrey Jaffer  <agj@alum.mit.edu>

	* elim.scm (clambda?): Descend bunches rather than matrixes.

	* builtin.scm (wronski, wronskian): Added.

2005-01-22  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.1: Documented jacal script.

	* view.scm, vect.scm, uv-hensel.scm, tensor.scm, sqfree.scm,
	poly.scm, norm.scm, hensel.scm, grammar.scm, ff.scm, factors.scm,
	ext.scm, elim.scm, debug.scm, combin.scm, builtin.scm, types.scm,
	sexp.scm, English.scm: Added appropriate REQUIREs.

	* Makefile (tags): Cleaned.

	* scl.scm: Removed; each file does its own REQUIREs.

2005-01-19  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.sh (gsi): Gambit 4.0 doesn't allow input redirection;
	foils --version test.

2004-12-05  Aubrey Jaffer  <agj@alum.mit.edu>

	* builtin.scm (degree, flatten): Added.
	(poly): With single argument, convert equation to polynomial.

	* poly.scm (poly:total-degree): Added.

2004-09-22  Aubrey Jaffer  <agj@alum.mit.edu>

	* uv-hensel.scm, hensel.scm, poly.scm, ff.scm: EXPT replaces
	INTEGER-EXPT.

	* scl.scm: No longer need logical for INTEGER-EXPT.

2004-09-15  Aubrey Jaffer  <agj@alum.mit.edu>

	* ff.scm (ff:null-space-basis, ff:null-space-basis-gcl-bug):
	array:copy! renamed from array-copy! and arguments reversed.

2004-01-16  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile ($(infodir)jacal.info): "cp -a" ==> "cp -p".
	(jacal.info): Only run infobar if PREVDOCS exists.

	* jacal.sh: grep -q is not universal.  echo -n not portable.
	Test for rpm existence before call.

2004-01-14  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.sh: Separated shell assignments and exports.

	* Makefile (srcdir.mk): Include after target.
	Separated shell assignments and exports.

2003-11-30  Aubrey Jaffer  <jaffer@scm.jaffer>

	* toploads.scm (*jacal-version*): Bumped from 1b3 to 1b4.

2003-11-30  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacalcat (finite-fields, polynomial-factors, univariate-hensel):
	FLUID-LET users must be defmacro.

	* jacal.sh (scheme48): Only invoke with scheme48 argument.

2003-11-11  Aubrey Jaffer  <agj@alum.mit.edu>

	* uv-hensel.scm, scl.scm, grammar.scm, ff.scm, factors.scm,
	builtin.scm: Cleaned some REQUIREs.

2003-11-10  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.sh (gsi): Gambit interpreter added.

2003-09-24  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (pinstall): jacalcat was missing.

2003-07-16  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (release): make pdfs.

2003-07-06  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacalcat: Added SLIB catalog additions for JACAL.

	* toploads.scm: SLIB catalog:read replaces ad-hoc *catalog*
	manipulation.

2003-06-22  Aubrey Jaffer  <jaffer@aubrey.jaffer>

	* toploads.scm (*jacal-version*): Bumped from 1b2 to 1b3.

2002-12-02  Aubrey Jaffer  <agj@alum.mit.edu>

	* builtin.scm (verify): Added newline before did-not-verify:.

	* Makefile (install): Removed gratuitous '/' after $(...dir).

2002-10-13  Aubrey Jaffer  <agj@alum.mit.edu>

	* builtin.scm (tex): Added TeX-output command.

2002-06-29  Aubrey Jaffer  <agj@alum.mit.edu>

	* hensel.scm (map-svpf-factors): take SPEC-VAR argument.

	* sqfree.scm (Yuniv:square-free-factorization): math:trace
	logging.

	* debug.scm (poly:factor<): Wrap with check for well-ordering.

	* builtin.scm (verify): Print expressions using *input-grammar*.

	* toploads.scm (*catalog*): Added feature debug-jacal.

	* factors.scm (svpf): Simplified.
	(poly:factor<): Fixed ordering of vars.

	* poly.scm (univ:one?): Take and check VAR argument.

	* sexp.scm (batch1): Newline after echo.

	* grammar.scm (math:print): Take n-ary arguments.

2002-06-27  Aubrey Jaffer  <agj@alum.mit.edu>

	* uv-hensel.scm (squarefreeness-preserving-modulus): Err if all
	primes < 100 fail.

	* ff.scm (basis->polys): Abstracted from ff:null-space-basis.
	(ff:p/p, ff:q-matrix): Replaced ff:degree of already ff:unorm
	arrays with univ:deg.

2002-06-26  Aubrey Jaffer  <agj@alum.mit.edu>

	* ff.scm (ff:null-space-basis): Return vector.

	* sqfree.scm (*univ:square-free-factorization): Replaced APPENDs
	with CONS.

	* elim.scm (var:elim): Replaced APPENDs with CONS.

2002-06-25  Aubrey Jaffer  <agj@alum.mit.edu>

	* hensel.scm: Evaluation functions moved from ff.scm

	* uv-hensel.scm (memon): Moved from hensel.scm.

	* poly.scm (poly:unitz, poly:primz): Moved from ff.scm.

	* ff.scm: Moved some procedures to sqfree.scm and factors.scm.

	* Makefile (sfiles): Added sqfree.scm and factors.scm.

	* sqfree.scm: Procedures for square-freeness.

	* factors.scm: Procedures for sorting and converting polynomial
	factors.

2002-06-23  Aubrey Jaffer  <agj@alum.mit.edu>

	* poly.scm (univ:monomial): Numerical compares use EQV? not EQ?.

	* sexp.scm (bunch->sexp): Numerical compares use EQV? not EQ?.

	* hensel.scm: Moved univariate hensel procedures into
	uv-hensel.scm.

	* Makefile (sfiles): Added uv-hensel.scm.

	* test.math: Self-set additional variables.
	Added copyrights and license.

	* uv-hensel.scm: Moved univariate hensel procedures into.

2002-05-19  Aubrey Jaffer  <agj@alum.mit.edu>

	* view.scm, vect.scm, unparse.scm, types.scm, toploads.scm,
	tensor.scm, sexp.scm, scl.scm, rw.math, poly.scm, norm.scm,
	modeinit.scm, math.scm, jacal.sh, info.scm, hist.scm, hensel.scm,
	grammar.scm, func.scm, ff.scm, ext.scm, elim.scm, combin.scm,
	builtin.scm, Makefile, English.scm: Added 12-line GPL2 notice.

	* COPYING: Replaced with GNU GENERAL PUBLIC LICENSE Version 2.

2002-05-12  Aubrey Jaffer  <agj@alum.mit.edu>

	* English.scm (.): Allow in symbols and numbers.

	* test.math: Put spaces around "."

2002-04-21  Aubrey Jaffer  <agj@alum.mit.edu>

	* combin.scm (combinations): Fixed map argument length mismatch.

	* jacal.sh (usage): Added.
	(--version, -v): Supported.

	* Makefile (install): Define jacal VERSION in jacal.sh.

2002-03-11  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.sh (mzscheme): Load DrScheme.init.

2002-03-05  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (temp/jacal): Link ratint.pdf from htmldir.

	* test.math: Added factoring test suite.

2002-02-21  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.spec (%doc): ratint.pdf replaced ratint.dvi

	* Makefile (ratint.pdf): Added.

2002-02-11  Aubrey Jaffer  <jaffer@aubrey.jaffer>

	* toploads.scm (*jacal-version*): Bumped from 1b1 to 1b2.

	* Makefile (CITERS, CITES): Abstracted functional file groups.

2002-01-31  Aubrey Jaffer  <agj@alum.mit.edu>

	* ff.scm (ff:null-space-basis-gcl-bug, ff:null-space-basis):
	(ff:q-matrix): Changed to use create-array.

2002-01-13  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.texi (Concept Index): Added.
	(Installation): Rewrote with separate instructions per platform.
	(Manifest): Added.

	* Makefile (README): Generate from jacal$(VERSION).info.

	* jacal.texi (Starting Jacal): Removed .scm from slib:load
	example.

2001-10-09  Aubrey Jaffer  <agj@alum.mit.edu>

	* elim.scm (infinite-list-of): Removed.
	(eliminate): Check that parallel bunches are the same length.

2001-09-23  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile, jacal.sh, jacal.spec (guile.scm): Create special
	script for guile because it needs (use-modules (ice-9 slib)) in
	order to access SLIB.

2001-08-29  Bo Forslund  <bo.forslund@abc.se>

	* jacal.spec (Prefix): Use builtin %{_prefix}.
	(%post): .* allows use of .bz2 or .gz.

	* Makefile (pinstall): HELP file added.

2001-07-16  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (unjacal48): Target added; deletes scheme48.image.

2001-06-07  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (rpm): Build src.rpm also.

2001-05-28  Aubrey Jaffer  <agj@alum.mit.edu>

	* scl.scm (multiarg/and-): Added require of.

2001-05-27  Aubrey Jaffer  <agj@alum.mit.edu>

	* jacal.spec (%install): Create script
	${RPM_BUILD_ROOT}%{prefix}/bin/jacal containing
	JACALDIR=%{prefix}/share/jacal/.

	* jacal.sh: Make install or building rpm prepends JACALDIR
	definition to script.

	* Makefile (install): Makes up script $(exec_prefix)bin/jacal.

Mon May 21 19:22:11 EDT 2001  Aubrey Jaffer  <jaffer@aubrey.jaffer>

	* toploads.scm (*jacal-version*): Bumped from 1b0 to 1b1.

2001-05-21    <ajaffer@scanlogic.com>

	* Makefile (install): Added target.

2001-05-20  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (html): Renamed "jacal" subdirectory to "prevdocs".
	(scheme48.image): Added target.

	* jacal: Added script to run jacal on multiple implementations.

	* jacal.spec: Added spec file to generate a .rpm file.

2001-05-16  Aubrey Jaffer  <agj@alum.mit.edu>

	* Makefile (pdf): Added targets.

2001-01-15  Aubrey Jaffer  <agj@alum.mit.edu>

	* ff.scm (rat:factor->sexp): Fixed for simple numeric numerators
	or denominators.

2000-12-01  Aubrey Jaffer  <agj@alum.mit.edu>

	* toploads.scm (prec:warn): Now accepts multiple arguments.

1999-09-17  Aubrey Jaffer  <jaffer@mit-ai>

	* jacal.texi: Put description into jacal_toc.html.

Sun Sep 12 22:43:04 EDT 1999  Aubrey Jaffer  <jaffer@mit-ai>

	* toploads.scm (*jacal-version*): Bumped from 1a9 to 1b0.

1999-05-22  Aubrey Jaffer  <jaffer@mit-ai>

	* hensel.scm (poly:factorz): Issues messages for multivariate
	factoring when math:trace is on.

1999-05-21  Aubrey Jaffer  <jaffer@mit-ai>

	* hensel.scm (poly:factorszpp): Fixed factoring for multivariate
	polynomials whose leading coefficients have repeated factors.

1999-05-16  Aubrey Jaffer  <jaffer@mit-ai>

	* hensel.scm (map-svpf-factors): abstracted from poly:factorz.

	* ff.scm (number->poly): moved from hensel.scm.

1999-05-15  Aubrey Jaffer  <jaffer@mit-ai>

	* ff.scm (u:factorz): Integrated into poly:factorz.

	* hensel.scm (poly:factorszpp): put limits on number of random
	ideals and primes tried.

1999-04-30  Aubrey Jaffer  <jaffer@mit-ai>

	* vect.scm (mtrx:inverse): Added.

1999-04-27  Aubrey Jaffer  <jaffer@mit-ai>

	* toploads.scm (*catalog*): "usercat" didn't work from other
	directories;  Augment *catalog* directly.

1999-04-10  Aubrey Jaffer  <jaffer@mit-ai>

	* sexp.scm (defbltn): Extra definition removed.
	(sapply): Constant functions now represented by the constant.

1999-01-29  Aubrey Jaffer  <jaffer@mit-ai>

	* builtin.scm (factors, factor): now accept equations as argument.

	* sexp.scm (*->or-eqns): Added to factor equations.

1999-01-28  Aubrey Jaffer  <jaffer@mit-ai>

	* jacal.texi (Algebraic Commands): documented extrule.

Sun Jan 17 12:02:50 EST 1999  Aubrey Jaffer  <jaffer@mit-ai>

	* toploads.scm (*jacal-version*): Bumped from 1a8 to 1a9.

1999-01-15  Aubrey Jaffer  <jaffer@mit-ai>

	* ff.scm (ff:q-matrix ff:null-space-basis): Were assuming
	array-mapping worked for vectors.
	(ravect->list): to convert arrays to lists.
	(ff:generate-field power-list): rewrote sans array-mapping.

	* debug.scm (math:printn): don't put symbols on separate lines.

1998-12-08  Aubrey Jaffer  <jaffer@mit-ai>

	* jacal.texi (Installation): Added HTML anchor for Installation
	instructions.

1998-11-03  Aubrey Jaffer  <jaffer@mit-ai>

	* builtin.scm (equate-coeffs): Removes duplicates.

	* hensel.scm (remove-duplicates): Moved to SLIB.

	* combin.scm (del): Moved from "ff.scm".

Tue Nov 3 17:48:00 EST 1998  Aubrey Jaffer  <jaffer@scm.colorage.net>

	* toploads.scm (*jacal-version*): Bumped from 1a7 to 1a8.

1998-10-26  Aubrey Jaffer  <jaffer@mit-ai>

	* builtin.scm (equatecoeffs): added.

	* ext.scm, elim.scm, poly.scm, norm.scm: promote -> poly:promote

	* builtin.scm (coeff, coeffs): added to properly process
	polynomials with rational coefficients.

1998-09-18  Aubrey Jaffer  <jaffer@colorage.com>

	* hensel.scm (mri): Added global state `ideal:prngs' to reduce
	chance of reentrant random calls.

Sun Oct 26 23:49:02 1997  Jerry Hedden  <hedden@netaxs.com>

	* rw.math: updated.  The previous version had some errors.

Mon Sep 22 12:39:18 EDT 1997  Aubrey Jaffer  <jaffer@mit-ai>

	* toploads.scm (*jacal-version*): Bumped from 1a6 to 1a7.

Tue May 20 10:26:44 1997  Aubrey Jaffer  <jaffer@mit-ai>

	* ext.scm (alg:conjugate): fixed 1/x^(3/2) bug.

Sun May 18 11:02:58 1997  Aubrey Jaffer  <jaffer@mit-ai>

	* ext.scm (make-radical-exts): added.  Factors radicands and calls
	(make-radical-ext): which now just processes a single irreducible
	integer or polynomial.

	* builtin.scm (factors): added.
	(factorial): added.

	* ff.scm (negate-factors-exps): added.
	(poly:sort-merge-factors): added.

	* sexp.scm (terms->factors-list): added.
	(batch): now uses fluid-let to protect *grammar*s and page
	parameters from errors, etc.

Sat May 17 22:55:58 1997  Aubrey Jaffer  <jaffer@mit-ai>

	* sexp.scm (defsym): now maintains both canonical and
	non-canonical definitions.

	* norm.scm (poly:sqfr-all): renamed from poly:factor.  Fixes
	conflict with hensel.scm function of same name.

	* ff.scm (factors->sexp): added.  Sorting deferred until
	conversion.  Factor now returns an `sexp' factored expression.

Sat May 10 18:56:23 EDT 1997  Aubrey Jaffer  <jaffer@scm.bertronics.com>

	* toploads.scm (*jacal-version*): Bumped from 1a5 to 1a6.

Sat May 10 16:37:50 1997  Aubrey Jaffer  <jaffer@mit-ai>

	* builtin.scm (abs realpart imagpart): added.

	* poly.scm (poly:cabs): added.

Wed May  7 15:14:04 1997  Aubrey Jaffer  <jaffer@mit-ai>

	* parse.scm: rewrote and moved to SLIB.

Fri Mar 14 20:02:30 1997  Aubrey Jaffer  <jaffer@mit-ai>

	* builtin.scm (parallel ||): operator added.

Mon Oct  7 10:45:04 1996  Aubrey Jaffer  <jaffer@bertronics>

	* grammar.scm (jacal:found-bug): Added.  Used in hensel.scm for
	clauses which I have never observed to execute.

Tue Sep  3 23:31:30 1996  Aubrey Jaffer  <jaffer@bertronics>

	* hensel.scm (u:factorsz): removed repeated sub-calculations and
	simplified.

Mon Sep  2 16:56:58 1996  Aubrey Jaffer  <jaffer@bertronics>

	* hensel.scm (landau-mignotte-bound*2): Resolved confusion over
	formula by Monte-Carlo testing.

Thu Aug 22 11:51:32 1996  Aubrey Jaffer  <jaffer@bertronics>

	* jacal.texi (Algebraic Commands): Documentation of `|' operator
	added.  Also fixed @: --> @@:.

Wed May 29 14:57:24 1996  Aubrey Jaffer  <jaffer@jacal.bertronics>

	* hensel.scm (cilog): floored replaced with ceiling integer
	logarithm of y base b.
	(landau-mignotte-bound*2): Fixed according to ACA.  Now
	encapsulates all exact/inexact conditionals.  Added documentation
	of the Landau-Mignot bound.

Mon Apr 22 22:02:53 1996  Aubrey Jaffer  <jaffer@jacal.bertronics>

	* vect.scm (determinant): Fixed long standing bug where
	determinants which should return zero instead generated
	"ERROR: car: Wrong type in arg1 0".

Thu, 9 Nov 1995 23:59:00 +1100  Michael Thomas (mjt@octavia.anu.edu.au)

	* hensel.scm: fixed missing number->poly to convert result of
	poly:- to u:p/c argument.

Sun Oct  1 00:16:38 1995  Aubrey Jaffer  (jaffer@jacal)

	* ff.scm (sqarefreeness-preserving-modulus): pulled out of
	u:factorsz.
	(u:factorsz f1): Now calls univ:prem rather than poly:pdiv.

	* poly.scm (poly:prem): Merged with function from ff.scm.  Now
	takes var argument.

	* builtin.scm (mod): fixed.
	(jacal:modulus): added.

	* ff.scm (landau-mignotte-bound2): rewritten so that it does not
	require inexacts.

Mon Sep 11 00:01:01 1995  Aubrey Jaffer  (jaffer@jacal)

	* math.scm (set-handlers! cleanup-handlers!): No longer intercepts
	user-interrupt.  SCM now does a break(point) from user-interrupt
	(^c).

	* poly.scm (poly:valid? p): added to check variable ordering in
	polynomials.

	* debug.scm (math:continuable-break-with-object
	math:break-with-object): added to facilitate operating on
	troublesome expressions.

	* builtin.scm (continue): added to work with breaks.

September  4 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (hen:mhenseln correct-lcs): Fixed leading coefficient
	update problems.

August 30 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (correct-lcs): Fixed handling of repeated factors in
	the leading coefficient.

August 29 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (hen:mhenseln): Fixed bug by replacing delete with
	the non-destructive function del. Should delete be
	destructive?

August 15 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (poly:factorzpp): Removed extraneous and buggy ideal
	generation code.

August 11 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (uniques): Fixed

August  2 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (mri): Added Modified make-random-ideal to return
	unique numbers for each variable in the ideal and to accept a
	list of forbidden numbers.

July 31  1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (poly:sff): Fixed special variable bug

July 27  1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm: Tidied up output formats
	(u:factorz): Fixed sign bug
	(poly:factorz): Added ability to handle non-primitive and
	non-square-free leading coefficients.

July 25  1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm (poly:factorz): Worked around a bug in GCL algorithm
	6.3 by extracting factors which are powers of a variable.

July 18  1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm (factorz): Replaced factorsz.
	(poly:factorz): Replaced poly:factorsz.
	(poly:factorsq factorsq): Removed.
	Incorporated squarefree multivariate factorisation.
	(poly:contz): Fixed sign bug.

June 18  1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm (poly:univariate?): Renamed from u:univariate?.
	(factorsz): Renamed from factormsz.
	(factorq): Added built in function.

June 13  1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm (ff:eea-gcd): Refixed
	(hen:mhenseln):	Fixed leading coefficient bugs.
	(u:unitz poly:unitz): Added.
	(u:primz u:contz): Renamed from u:pp and u:cont.
	(poly:primz): Fixed.
	(unitz primz contz): Added built in's to obtain the unit,
	primitive and content of multivariate polynomials over Z

June 9   1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm: Fixed some bugs in multivariate factoring system.

June 8   1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm (poly:0-degree-norm): Fixed bug in poly:evaln by
	adding.
	(u:evalp, u:evaln): Minor optimisations to.
	(poly->number):	Renamed from u:convert.

June 4   1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm (ff:eea-gcd): Fixed bug (I hope)!!!

June 1   1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm: Dealt with the leading coefficient problem.  Cleaned
	up the code.

May 30   1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm (unlucky?): Factored out test for unlucky
	homomorphisms into.  Cleaned up the code.

May 5    1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm (u:prime-power): Added.
	(ff:q-matrix): Fixed bug.

April 28 1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm (u:sff): Renamed from poly:sff.
	(poly:sff): Added.

April 27 1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm (poly:factorzpp): Dealt with unlucky homomorphisms
	and bugs.

April 24 1995  Mike Thomas  (mjt@octavia.anu.edu.au)

	* ff.scm: Merged Aubrey's 18 April version of ff.scm with the
	changes I've made since last mail.The file now (in places)
	uses the prime number generator added to SLIB.
	(ff:sff ff:mnorm): Changes to multivariate stuff.

Sun Mar 12 00:08:08 1995  Aubrey Jaffer  (jaffer@jacal)

	* jacal.texi (Factoring): section added.

	* builtin.scm (factor): Now autoloads "ff.scm" and calls factoruq.

Mar 6 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm: Finished adding basic multivariate procedures, still
	debugging.

Mar 5 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm: Fixed a bug in ff:null-space-basis by changing to a
	slower algorithm from Knuth.  I still don't know why GCL's
	algorithm fails. Undoubtedly my coding.

Mar 2 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (factoruq u:factorq): Added.

Mar 1 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm: Added sorting of results from poly:sff, u:factorz,
	ff:berlekamp, to accomodate algorithmic changes I might choose to
	make later, and to make the output more consistent.
	* ff.scm: Fixed ff:sff.
	* ff.scm: Added argument checks to bltn's berl, ffsff and sff.
	* ff.scm: Added a third argument to bltn ffsff, a power for the
	prime to be raised to.

Thu Feb 23 14:56:36 1995  Aubrey Jaffer  (jaffer@jacal)
	* ff.scm (ff:print): replaced large number of display and newline
	statements.  Formatted code and comments for 80 columns.

February 22 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (u:factorsmz u:factormz): Changed to cover
	non-monic polys
	* Deleted some junk from the file.

february 21 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (hen:diophantine (most important)):
	(hen:diophantine1 hen:multiterm-eea-lift hen:eea-lift):
	Memoized. Very successful, because the speed increase is
	enormous, with little memory cost.

February 20 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm: Debugging of hensel lifting and u:factorsmz
	* Fiddled with ff:euclid-gcd to no noticeable speed increase.

February 17 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm: Finally completed initial Hensel lifting and factorisation
	but it is very buggy and slow. The diophantine solvers have
	inbuilt checkers for their results.
	* (ff:diff): Fixed bug in, floating global variable
	* (sym:sym u:zero? u:one? u:number? ff:eea-gcd): Small
	efficiency changes.

February 6 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm(ff:p+p ff:p-p): Fixed minor bug.

February 4 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm: In failed pursuit of (ff:berlekamp p7 3) bug revamped
	ff:q-matrix, to no noticeable gain in speed in ff:berlekamp.

February 1 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (ff:p/p->qr): fixed bug in special cases
	* used ff:p/p->qr in ff:euclid-gcd, ff:eea-lift
	* (ff:p-p): fixed bug in , didn't negate tail of second
	argument when it is longer than the first.
	* (number->poly): added, fixed related bug in ff:p*p

January 31 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (ff:p/p->qr ff:p/p): new division algorithm
	(Knuth's D algorithm, sec 4.6.1)

January 30 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm: converted to symmetric representation instead of
	positive.
	* added extended Euclidean GCD for u: and sym:
	* added initial attempt at hen:eea-lift for support
	of multivariate Hensel lifting (GCL algorithm 6.3)

January 27 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm: improved source code documentation
	* replaced eqv?'s with =
	* (ff:leading): sped up
	* (u:zero? u:one? u:number?): altered to use cadr, = instead
	of equal? in u:number
	* (u:pp u:cont): remove ff:norm from, assuming they will be
	sent normalised arguments
	* (ff:norm): sped up
	* u:lose-lzeros inserted where u:norm not needed
	* (ff:norm ff:p*c ff:p+p ff:p-p): rewrote using map instead of do.
	* (ff:higher-deg): rewrote.
	* (ff:p/c ff:p/p): altered.

January  1 1995  Mike Thomas  (mjt@octavia.anu.edu.au)
	* ff.scm (ff:inverse): Replaced with the faster
	modular:invert (require 'modular).

Fri Jul  8 11:57:56 1994  Aubrey Jaffer  (jaffer@jacal)

	* norm.scm ((extize p)):
	* sexp.scm ((batch1)): call to sect:next-string changed to
	chap:next-string and moved to SLIB.

Wed Jun  1 00:00:05 1994  Aubrey Jaffer  (jaffer@jacal)

	* builtin.scm (push-modes pop-modes): added for example.

Fri May 27 00:38:23 1994  Aubrey Jaffer  (jaffer@jacal)

	* toploads.scm ((jacal:dot)): Print out dots while loading.

Sun May 15 10:27:09 1994  Aubrey Jaffer  (jaffer@jacal)

	* Makefile (DOC/jacal.dvi): jacal.dvi and associated files now
	left in DOC subdirectory.

Sat May 14 23:49:51 1994  Aubrey Jaffer  (jaffer@jacal)

	* sexp.scm ((list-of-procedure-defsyms)): hash version was not
	filtering wiht procedure?

	* elim.scm ((implicits:map proc b)): fixed [a,b,c]=0 says "not a
	polynomial equation".

Mon Apr  4 11:34:37 1994  Aubrey Jaffer  (jaffer@jacal)

	* jacal.texi (Top): Much cleaned up and expanded.  Now prints
	correctly and has indexes.

Fri Apr  1 13:10:19 1994  Aubrey Jaffer  (jaffer@jacal)

	* Makefile (intro): Added message for those who just make.
	(jacal): makes SCM startup script for JACAL.
	Cleaned up and reorganized Makefile.

Fri Dec 24 00:41:32 1993    (jaffer at jacal)

	From: Jerry D. Hedden <HEDDEN@esdsdf.dnet.ge.com>
	* slib.texi: tensor operators documented.
	* rw.math: General Relativity batch file updated.
	* tensor.scm: updated.

Fri Nov 26 17:17:06 1993    (jaffer at jacal)

	From: Hal Abelson <hal@mit-ai>
	* unparse.scm (hglue): did not handle missing optional arguments
	correctly.

Tue Oct 26 00:47:37 1993    (jaffer at jacal)

	From: eigenstr@falstaff.cs.rose-hulman.edu
	* jacal.texi: TeXinfo documentation created.  manual directory
	removed.

Tue Oct 19 00:53:45 1993    (jaffer at jacal)

	* jacal1a2 released

	* types.scm (make-shadow): radical functions can finally be
	applied!

Mon Oct 18 22:39:09 1993    (jaffer at jacal)

	* types.scm (make-shadow): rewritten.  Now allows substitution in
	f(@2).
	* types.scm (var:shadow): now cached.

Thu Oct 14 00:33:51 1993    (jaffer at jacal)

	* elim.scm (bump-shadow): added.  Now called by capply.

Sun Oct  3 14:46:36 1993    (jaffer at jacal)

	* norm.scm (expr:normalize): fixed ({@|@^2=3}/3)^2; being 3/9
	bug;
	* types.scm (var:depends): now includes all var and func
	depenencies, rather than just terminal dependencies.  Eliminate of
	funcs now works.
	* types.scm (defext): greatly simplified thanks to new
	var:depends.

Tue Sep 28 13:48:04 1993    (jaffer at jacal)

	* types.scm (make-var sexp->new-var): make-var ==> sexp->new-var.
	make-var now just an alias for vector.

Tue Sep  7 01:12:43 1993    (jaffer at jacal)

	* elim.scm (ext:elim): no longer loops on eliminate([f(y)=0,f=a],f);

	* norm.scm (chain-rule): now chains radicals of funcs.

	* builtin.scm (over): defined same as /.

Mon Aug 30 01:14:32 1993    (jaffer at jacal)

	From: mjt@juliet.anu.edu.au (Michael Thomas)
	* test.math

Fri Aug 27 10:24:03 1993    (jaffer at jacal)

	* types.scm (deferop): function is now a licit (rather than sexp).
	var:elim now will eliminate from function position.

Mon Aug 23 23:49:24 1993    (jaffer at jacal)

	* sexp.scm (batch1): simple recall of formula does not evaluate
	and define new symbol.

Fri Aug 13 23:34:28 1993    (jaffer at jacal)

	* sexp.scm (math->sexp deferedmath->sexp bunch->sexp horner):
	horner now a passed parameter.

Mon Aug  9 00:06:58 1993    (jaffer at jacal)

	* builtin.scm norm.scm (PolyDiff expl:diff): added and diff no
	longer tries to use poly:diff.

Tue Jul 27 00:28:18 1993    (jaffer at jacal)

	* types.scm (var:differential): applications now differentiate to
	partials (partial chain rule).

Sat Jul 24 00:26:32 1993    (jaffer at jacal)

	* types.scm (make-var): infinite loop on f(@1) fixed.

Tue Jul 20 00:33:15 1993    (jaffer at jacal)

	* unparse.scm (display-chunk): trailing newlines no longer printed
	from inprint.  Newlines added to comments in demo to compensate.

	* English.scm demo: Underscore (_) no longer allowed identifier
	syntax.

Fri Jul  2 01:20:41 1993    (jaffer at jacal)

	* builtin.scm info.scm (discriminant): changed from
	poly_discriminant.

Sun Jun 13 23:22:18 1993  Aubrey Jaffer  (jaffer at camelot)

	* unparse.scm (display-box): now paginates within expressions on
	blank lines.

Fri Jun 11 00:10:11 1993  Aubrey Jaffer  (jaffer at camelot)

	* sexp.scm (rapply): now can deferop.
	* English.scm grammar.scm (math:translations math:translate):
	added.

	From: Jerry D. Hedden <HEDDEN@esdsdf.dnet.ge.com>
	* rw.math: General Relativity batch file added.
	* tensor.scm (indexshift indexswap contract tmult): added.  Some
	documentation in README release notes.

Tue Jun  8 00:07:28 1993  Aubrey Jaffer  (jaffer at basel)

	* sexp.scm (batch): now uses dynamic-wind to bind page-height
	during batch.

	* modinit.scm: added capability for international language
	support.

Mon Jun  7 01:55:00 1993  Aubrey Jaffer  (jaffer at camelot)

	* unparse.scm (display-box): now paginates output.

Sun Jun  6 20:39:09 1993  Aubrey Jaffer  (jaffer at camelot)

	* grammar.scm (paginate-file help): created.
	* HELP: created.
	* info.scm: created.  All descriptions and examples moved there.

Sat Jun  5 00:07:02 1993  Aubrey Jaffer  (jaffer at camelot)

	* elim.scm (var:funcs ext:elim): variables now eliminate from
	functional arguments.

	* elim.scm types.scm ext.scm: radicals now have func-arglist.

Fri Jun  4 23:20:35 1993  Aubrey Jaffer  (jaffer at camelot)

	* grammar.scm(math-write): added.  writes to Null grammar no
	longer do math->sexp.

Wed Jun  2 00:18:56 1993  Aubrey Jaffer  (jaffer at caddr)

	* ext.scm (alg:vars): simplified using var:depends.

Tue Jun  1 00:15:49 1993  Aubrey Jaffer  (jaffer at camelot)

	* stdgrm.scm (^): priority changed so that (^ (^ b c) a) is
	parenthesized.

	* grammar.scm (math:print): now uses [] for lists.

	* debug.scm: added tracing defmacros.

Mon May 31 01:30:28 1993  Aubrey Jaffer  (jaffer at camelot)

	* sexp.scm (seval): can now apply non-curried radical functions.

Sun May 30 23:44:19 1993  Aubrey Jaffer  (jaffer at camelot)

	* elim.scm (ext:elim): now eliminates variables through radicals.

Sat May 29 22:04:08 1993  Aubrey Jaffer  (jaffer at montreux)

	* demo: test of partial added.

	* types.scm (var:shadow ext:shadow): now uses last byte
	(differential degree) to distinguish shadow priority.

Wed May 26 00:28:07 1993  Aubrey Jaffer  (jaffer at camelot)

	* builtin.scm types.scm grammar.scm (list-of-grammars
	list-of-flags list-of-infodefs list-of-vars): added.

Thu May 20 18:32:47 1993  Aubrey Jaffer  (jaffer at montreux)

	* parse.scm stdgrm.scm: TeX input mode added.

Wed May 19 15:05:19 1993  Aubrey Jaffer  (jaffer at montreux)

	* builtin.scm parse.scm scl.scm sexp.scm stdgrm.scm toploads.scm
	types.scm: Now all use alists rather than hash-tables.

	* parse.scm stdgrm.scm: many buglets fixed.  Code works with
	either alists or hash-tables now.

Thu Apr 29 23:50:02 1993  Aubrey Jaffer  (jaffer at camelot)

	* builtin.scm (prime? CartProd Elementwise): added.

Wed Mar 17 12:12:21 1993  Aubrey Jaffer  (jaffer at montreux)

	* ext.scm (make-radical-ext): 0^(1/2) fixed.

	* poly.scm types.scm (signcan num denom): equations now print as
	positive.

Sun Mar 14 00:40:49 1993  Aubrey Jaffer  (jaffer at camelot)

	* poly.scm (poly:elim2): like poly:resultant but removes gcd of
	leading coefficients.  This removes some of extraneous factors in
	elimination.

Sat Mar  6 16:51:52 1993  Aubrey Jaffer  (jaffer at camelot)

	* elim.scm: created with elimination and canonical lambda.

Tue Mar  2 00:27:08 1993  Aubrey Jaffer  (jaffer at camelot)

	* types.scm (deferop): now sets up depends.

Sun Feb 28 23:47:03 1993  Aubrey Jaffer  (jaffer at camelot)

	* all: "_" separator replaced with ":".

	* builtin.scm (describe): now works for most objects.

Fri Jan 29 23:32:15 1993  Aubrey Jaffer  (jaffer at camelot)

	* builtin.scm (linkradicals verify): added.

Tue Jan 26 22:58:53 1993  Aubrey Jaffer  (jaffer at camelot)

	* vect.scm (ncexpt): fixed.

	* builtin.scm (augcoefmatrix coefmatrix triangularize rank
	charpoly cofactor): added

Wed Jan 20 00:21:32 1993  Aubrey Jaffer  (jaffer at montreux)

	* ext.scm (alg_clear-denoms): no longer clears nilpotents (0^(1/2))

	* builtin.scm (%inftsl): removed.  Can be done by 0^(1/2).

	* stdgrm.scm: whitespace characters now defined from looping over
	char-whitespace?.

Wed Dec 23 14:32:37 1992  Aubrey Jaffer  (jaffer at camelot)

	* builtin.scm vect.scm (dotproduct): split into ncprod and
	dotproduct.

	* builtin.scm (gcd): now takes arbitrary number of arguments.

	* builtin.scm norm.scm (diff): now works for all cases.

	* sexp.scm (seva): changed function position evaluation so that
	det:determinant; makes det alias determinant.

	* unparse.scm grammar.scm: output-port-width is always supplied an
	argument (for MITScheme).

	* builtin.scm (trace debug): flags added.

	* poly.scm (poly_resultant): now returns 0 for degenerate case.

Tue Dec 22 00:34:44 1992  Aubrey Jaffer  (jaffer at camelot)

	* builtin.scm: fixed signs on %i and %sqrt1.  All constant field
	extensions now have low priority.

	* sexp.scm (cmprs_^): fixed (a^2)^c;

	* sexp.scm (fcinverse): now definitely fixed.

	* norm.scm (vsubst): now will only substitute vars for vars.

Sun Dec 20 01:53:36 1992  Aubrey Jaffer  (jaffer at camelot)

	* sexp.scm (fcinverse): fixed sign bug with functional inversion.
	Busted if other variables involved now.

	* norm.scm (expr_normalize): fixed sign bug with algebraic
	extensions.

Sat Dec 19 22:28:29 1992  Aubrey Jaffer  (jaffer at camelot)

	* sexp.scm (coes->horner-sexp) Horner's rule mode added.

	* sexp.scm (clambda?): now does not accept non-matrix bunches.

	* unparse.scm: 2d line breaking implemented.

	* Too many changes to record.

Sun Dec  6 01:26:24 1992  Aubrey Jaffer  (jaffer at camelot)

	* builtin.scm (diagmatrix scalarmatrix): old diagmatrix renamed to
	scalarmatrix.  Diagmatrix now takes a vector argument.

Sat Dec  5 12:45:12 1992  Aubrey Jaffer  (jaffer at camelot)

	* types.scm: diff-depth now encoded in var_ord.

	* all internal variables now generated using sect:inc-string.

	* types.scm: variable ordering now done entirely with string<?
	(with override byte before actual string and number of diffs after).

	* types.scm: finite-differentials eliminated.

	* builtin.scm: moved all initial var creation and prefixed @ names
	with _.

	* unparse.scm (hglue): fixed order of evaluation bug in DO.

Wed Jun  3 13:23:52 1992  Aubrey Jaffer  (jaffer at Ivan)

	*all: files renamed to *.scm form.

	* parse.scm unparse.scm sexp.scm types.scm:  grammars are now
	records.  2d output formatting added.

Tue May 28 00:06:05 1991  Aubrey Jaffer  (jaffer at Ivan)

	* builtin.scm (example): fixed.

	* ext.scm builtin.scm (mod, alg_mod): alg_mod created.  mod now
	will clear denominators (like radicals do).

	* math.scm builtin.scm (*transcript-output*, transcript): created.

Sat May 25 23:06:03 1991  Aubrey Jaffer  (jaffer at Ivan)

	* math.scm (sload, *jacal-version*, *jacal-directory*): defined.

Sun May 19 22:08:43 1991  Aubrey Jaffer  (jaffer at Ivan)

	* math.scm (*current-input*, *current-output*) dynamic variables
	to allow input and output indirection.

	* sexp.scm builtin.scm (batch, load) batch created, load fixed.

Wed Feb  6 00:23:17 1991  Aubrey Jaffer  (jaffer at foxkid)

	* poly.scm (univ_prem_list) eliminated.  This fixed radicals bug.
	{*}_vect -> {*} functions renamed since only vect version now.

	* sexp.scm (warning) now puts out a trailing newline and returns
	last value.

Wed Dec  5 16:28:00 1990  Aubrey Jaffer  (jaffer at foxkid)

	* std.grm (^^): binding power upped to 210 so that d^^2(f(x))
	does not apply 2 to f(x).

	* poly (): - now only takes 2 arguments (more are not required
	in Scheme^4).

	* BUG: ((x+a)^(1/2))^3 ==> x+a.  Proably due to previous change.

Mon Oct 29 13:48:00 1990  Aubrey Jaffer  (jaffer at foxkid)

	* poly (poly_^): no longer uses builtin scheme expt (not essential
	procedure).

	* types (num, denom): no longer handle numbers other than integers.

	* sexp (seval): now checks for rationals and converts them, signals
	error for inexact inputs.

	* parse (def_bp ...) null? => not [confusion between () and #f]

	* scl.scm (sort): created. char-code-limit added.

Mon Aug 27 01:33:07 1990  Aubrey Jaffer  (jaffer at zohar)

	* poly (poly_resultant): now returns DEMOTED gcd if non-constant.
	this fixes rotbug!

Sun Aug 26 23:12:34 1990  Aubrey Jaffer  (jaffer at zohar)

	* poly (univ_/?): fixed for dividing by number.  Did not fix rotbug.

	* poly (univ_/ const_promote): created
	...-0-term ==> ...-const

Sun Jul  1 23:06:30 1990  Aubrey Jaffer  (jaffer at zohar)

	* norm (total-differential chain-exts poly_diffn):
	fixed differentials.

Sat May 12 21:48:01 1990  Aubrey Jaffer  (jaffer at zohar)

	* types (impl_number? ==> rat_number?)

	* types (proc):
	defined so that proc will funcallize (funcalls of proc removed)

	* types (rat_unit-denom?):
	created

	* scl.scm (union):
	defined

	* parse (lex):
	letrec removed.

Thu May 10 00:25:17 1990  Aubrey Jaffer  (jaffer at lammert)

	* types (make-rad-ext):
	fixed variable ordering bug.

Tue May  8 21:42:25 1990  Aubrey Jaffer  (jaffer at lammert)

	* parse (lex):
	removed letrec.

Fri May  4 00:03:17 1990  Aubrey Jaffer  (jaffer at lammert)

	* types (make-ext-var):
	did defext after vsubst. changed vsubst to cons of cdr.  Now
	defines nested radicals properly.  Nested radicals clear out of
	denominators correctly.

Thu May  3 00:53:22 1990  Aubrey Jaffer  (jaffer at lammert)

	* all:
	removed all letrec use except lex in parse.l and determinant in vect.l

Wed May  2 00:28:01 1990  Aubrey Jaffer  (jaffer at lammert)

	* ext (ext_conjugate):
	full algebraic version works.  ext_simplify of nested radicals is
	broken (infinite loop).

	* poly (univ_pdiv_vect):
	finally made a version of pseudo division with quotient which works.

Fri Apr 27 00:48:03 1990  Aubrey Jaffer  (jaffer at lammert)

	* exts:
	eliminated letrec.

	* types:
	added new field	(var_dependencies) to var.

Thu Apr 26 01:29:54 1990  Aubrey Jaffer  (jaffer at lammert)

	* ext (ext_find-var-if -> ext_for-each-var):
	rewritten for efficiency and to purge letrec.

Wed Apr 25 21:24:12 1990  Aubrey Jaffer  (jaffer at lammert)

	* combined ext and radicals -> ext
	* combined bunch and matrix -> vect
	* combined impl and factor -> norm
	* combined top and seval -> sexp
	* compilum.lisp -> compilem.lisp

Mon Apr 23 00:43:33 1990  Aubrey Jaffer  (jaffer at lammert)

	* poly:
	eliminated (letrec ...)

	* poly.l (poly_do-vars):
	created;

	* types.l (bunch_map):
	created;

	* seval.l (capply, diffarg):
	simplified with the use of the above functions.

Thu Apr 19 00:31:36 1990  Aubrey Jaffer  (jaffer at lammert)

	* types.scm (eqn?):
	I no longer depend on char? being disjoint from other types.  This
	is in order to be compatible with Scheme^3.

	* builtin.l :
	fixed and added many functions.

Wed Apr 18 17:22:31 1990  Aubrey Jaffer  (jaffer at lammert)

	* seval.l (fcexpt):
	now works.  changed calls to capply to app*.
	fcinverse works but negates its argument (why?).

Mon Apr 16 01:21:49 1990  Aubrey Jaffer  (jaffer at lammert)

	* ext (ext_clear-denoms):
	works for square roots.  subtle problem with determinant screws up
	higher order.
	* syntax -> macsyma.syn
	* meta -> builtins :
	documentation strings entered for most functions.
	* poly (sylvester & bruno) :
	resultant matrix functions created.

Wed Apr 11 01:37:54 1990  Aubrey Jaffer  (jaffer at lammert)

	* impl (ncexpt):
	created.  positive exponent works for matrices, vectors, and
	functions.  Problems with inverses.
	* radicals :
	radicands now come out positive.

Thu Apr  5 01:02:04 1990  Aubrey Jaffer  (jaffer at lammert)

	* radicals, matrix, types (make-rat):
	created in types.  This eliminates almost all constructions:
	(list @ num -denom)

	* radicals (all):
	schemized.  improved ipow.  radicands keep coming out negative.

Wed Apr  4 15:48:20 1990  Aubrey Jaffer  (jaffer at lammert)

	* syntax (leadingplus => leading+?)
	fixed and moved to seval

	* syntax (inprint)
	now understands (define var exp)

Fri Mar 30 01:24:04 1990  Aubrey Jaffer  (jaffer at lammert)

	* cgol, seval (math):
	input and output grammar independently settable.  grammars now
	contain both input and output functions.  line terminators work
	correctly.

Thu Mar 29 00:31:20 1990  Aubrey Jaffer  (jaffer at gerber)

	* cgol, syntax, seval:
	made input syntax switchable.  Input delimiters made postfix (this
	was a change to cgol_parse).

Wed Mar 28 16:16:25 1990  Aubrey Jaffer  (jaffer at lammert)

	* cgol (all):
	all syntax tables now in one structure: cgol_grammar.

	* seval, syntax, cgol (seval, bunch->sexp, inprint, #\[):
	sexps now use vectors instead of '(bunch ...) to represent vectors.
	delimiters for end of expression (#\; #\$) now are read after the
	expression is read and dispatched in seval.  This should move to cgol.

Tue Mar 27 00:19:21 1990  Aubrey Jaffer  (jaffer at gerber)

	* poly, types, seval:
	leading coefficient of impls is now negative.  this means less
	poly_negates for type conversion.

Sat Mar 24 00:18:42 1990  Aubrey Jaffer  (jaffer at gerber)

	* all (all):
	added missing else clauses to conds and ifs.  Now runs in scheme.

Fri Mar 23 00:46:43 1990  Aubrey Jaffer  (jaffer at lammert)

	* syntax.l (;):
	changed to character token.

	* seval.l (seval):
	fixed some problems with suchthat and clambda variables.

	* seval.l (math):
	spruced up messages to reflect syntax_infix.

	* seval.l (poly->sexp):
	simplified

Tue Mar 20 00:08:31 1990  Aubrey Jaffer  (jaffer at lammert)

	* poly.lisp (degree&lc):
	eliminated in favor of much simpler degree.  This sidesteps Common
	Lisp compiler problem.  It also means lc is not contructed unless
	it is needed.  Should speed things up.

	* scl.scm:
	read-file removed (was interfering with reader).  Many common lisp
	utility functions defined.

	* syntax.l:
	"|" eliminated from symbol names.  Scheme association lists now
	used.

	* factor.l (poly_factor-split):
	do* eliminated.

	* matrix.l (mtrx_diagmatrix, rank, triangularize):
	do* eliminated

	* poly.l (poly_coeff):
	rewritten to not use do*.  map-no-end-0s written; gives much more
	efficient implementation of poly_coeff.  Everything using
	univ_monomial should be rewritten using map-no-end-0s.

	* scl.lisp (define):
	defun removed; Less error messages on loading.  Non-scheme
	functions removed.  List? fixed to accept '().  pair?, list? and
	procedure? now check for closures-might-be-conses.

Fri Mar 16 00:03:42 1990  Aubrey Jaffer  (jaffer at gerber)

	* output:
	split between seval and syntax

Wed Mar 14 01:05:57 1990  Aubrey Jaffer  (jaffer at lammert)

	* all:
	code now loads.  debugged up to problems with symbols
	vs. vars in top level math.

Mon Mar 12 01:23:19 1990  Aubrey Jaffer  (jaffer at lammert)

	* types:
	finished entering code.  Started debugging.

Fri Mar  9 00:05:56 1990  Aubrey Jaffer  (jaffer at lammert)

	* types:
	massive changes to make vars be vectors (not finished).

	* seval (capply):
	now decimates in body bunches (rather than args).

	* impl:
	differentials bunchized

Mon Mar  5 00:24:20 1990  Aubrey Jaffer  (jaffer at gerber)

	* seval (seval):
	now lexically binds clambda, rlambda, and suchthat symbols.
	* all:
	fixed misc things.

Sun Mar  4 00:37:14 1990  Aubrey Jaffer  (jaffer at gerber)

	* types:
	types created.  started new data type regime. lots is broken.

Wed Feb 28 13:30:19 1990  Aubrey Jaffer  (jaffer at gerber)

	* meta:
	made arithmetic operations nary and changed names

Tue Feb 27 01:30:19 1990  Aubrey Jaffer  (jaffer at gerber)

	* matrix (determinant):
	completed

Mon Feb 26 00:11:34 1990  Aubrey Jaffer  (jaffer at gerber)

	* bunch, matrix:
	@n order changed; matrix functions work again

	* syntax, output
	lambda syntax fixed: \[a,b],b-a;

Sun Feb 25 00:15:23 1990  Aubrey Jaffer  (jaffer at lammert)

	* seval (seval): schemized and simplified.
	* meta, impl, matrix:
	functions split between internal and user callable versions.
	Not finished.

Tue Feb 13 00:25:04 1990  Aubrey Jaffer  (jaffer at lammert)

	* cgol, syntax:
	now foo((a,x)) --> (foo (begin a x))

Mon Feb 12 01:23:56 1990  Aubrey Jaffer  (jaffer at lammert)

	* cgol, syntax:
	parsing rewritten.  some minor bugs and incompatabilities
	introduced.  Nary parsing introduced; not supported in seval.

Thu Feb  8 23:33:23 1990  Aubrey Jaffer  (jaffer at lammert)

	* poly (univ_prs):
	schemized

Tue Feb  6 00:52:56 1990  Aubrey Jaffer  (jaffer at gerber)

	* poly:
	eliminated most do* and blocks

Mon Feb  5 01:08:43 1990  Aubrey Jaffer  (jaffer at gerber)

	* impl:
	cleaned up derivatives some, not finished.

Sat Feb  3 00:32:43 1990  Aubrey Jaffer  (jaffer at gerber)

	* poly:
	reordered functions and put in dummies to allow compilation

	* poly (univ_prem):
	schemified

	* poly (poly_norm => univ_norm):
	rewritten in scheme.

Tue Jan 30 01:15:54 1990  Aubrey Jaffer  (jaffer at lammert)

	* bunch.scl (bunch_elim):
	rewrote for scheme

Sun Jan 28 01:08:51 1990  Aubrey Jaffer  (jaffer at gerber)

	* scl.lisp:
	changed to not use macros to define builtins so that compiled
	version works.

	* scl.lisp (define):
	now uses defun whenever possible, so that functions have their
	name with them. Still cannot compile poly.lisp.
	* poly.lisp (univ_prs):
	had step sub-clause missing in do*.  should speed thing up a bit.

Tue Jan 23 13:32:07 1990  Aubrey Jaffer  (jaffer at lammert)

	* scl.lisp:
	expanded to full scheme and debugged.
	* *.lisp -> *.scl:
	and many conversions done. all "#'" removed.  most calls changed to
	scheme names.
	* rearranged directories

Thu Jan 18 01:28:51 1990  Aubrey Jaffer  (jaffer at gerber)

	* scl.lisp (lambda and define defined).
	* *.lisp:
	#'(lambda --> (lambda

Tue Jan 16 01:33:59 1990  Aubrey Jaffer  (jaffer at crispy-critters)

	* scm.lisp:
	the Scheme compatability definitions created.  Some char and
	string functions changed in all files.

Mon Jan 15 01:06:58 1990  Aubrey Jaffer  (jaffer at crispy-critters)

	* poly.lisp removed lambda-unshadow (unused).  moved symbol
	creation from nmatrix.

	* *.lisp all variables now reside in package "USER".

Sat Jan 13 18:26:02 1990  Aubrey Jaffer  (jaffer at lammert)

	* seval.lisp, impl.lisp:
	added finite differentials. eliminated express and unexpress.

	* seval.lisp (capply):
	fixed bug: vector of functions of vector of
	arguments.  fixed clambda for differentials.

	* math.lisp: moved all test calls here

Fri Jan 12 01:20:27 1990  Aubrey Jaffer  (jaffer at crispy-critters)

	* poly.lisp output.lisp degree => degree&lc changed to return a
	list rather than multiple values (in prep for Scheme)

Thu Jan  4 01:10:57 1990  Aubrey Jaffer  (jaffer at gerber)

	* impl.lisp (vsubst): now works on bunches
	* poly.lisp moved differential and lambda var functions here
	* seval.lisp capply and related functions rewritten to implement
	differential operators.

Tue Dec 19 23:44:43 1989  Aubrey Jaffer  (jaffer at gerber)

	* syntax.lisp (a*b)'' now works
	* seval.lisp simplified capply and added function for differential
	clambda (not finished).

Sun Dec 17 23:08:06 1989  Aubrey Jaffer  (jaffer at gerber)

	* poly.lisp zero? and one? written and used

Sat Dec 16 01:07:49 1989  Aubrey Jaffer  (jaffer at gerber)

	* poly.lisp split large poly_* into poly_* and univ_*
	* factor.lisp created from diff and factor stuff in poly.lisp

Fri Dec 15 00:32:37 1989  Aubrey Jaffer  (jaffer at gerber)

	* poly.lisp moved differential functions from impl.lisp
	* seval.lisp cleaned up capply to prepare for differential operators.

Thu Nov 27 11:31:00 1989  Aubrey Jaffer  (jaffer at rosalyn.ai.mit.edu)

	* seval.lisp applying vectors of clambdas works again

Thu Nov 16 11:31:00 1989  Aubrey Jaffer  (jaffer at rosalyn.ai.mit.edu)

	* *.lisp lowercased and reformated all files

Fri Nov 10 01:02:34 1989  Aubrey Jaffer  (jaffer at gerber)

	* doc/layers created
	* ext.lisp created from impl.lisp
	* impl.lisp, seval.lisp many name changes inpreperation
	for scheme and better layering

Thu Nov  9 01:18:18 1989  Aubrey Jaffer  (jaffer at gerber)

	* radicals.lisp added rad_depth

Sun Nov  5 23:58:10 1989  Aubrey Jaffer  (jaffer at rice-chex)

	* caf.lisp => impl.lisp (all caf -> impl)
	* output.lisp (all 2 -> ->)
	layering improved

Wed Nov  1 14:32:45 1989  Aubrey Jaffer  (jaffer at lammert)

	* poly.lisp (square-free -> poly_square-free)
	* bunch.lisp meta.lisp (eliminate is now in meta.lisp)

Wed Oct 25 01:09:22 1989  Aubrey Jaffer  (jaffer at lammert)

	* bunch.lisp, output.lisp (bunch?)
	() is now a bunch.

Tue Oct 24 22:34:08 1989  Aubrey Jaffer  (jaffer at lammert)

	* poly.lisp (resultant->poly_resultant)
	and functions which use it
	now check for getting back number (instead of equation).