This file is indexed.

/usr/share/axiom-20120501/input/setcmd.input is in axiom-test 20120501-8.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
)set break resume
)spool setcmd.output
)set message test on
)set message auto off
)clear all
 
--S 1 of 143
)set breakmode
--R-------------------------- The breakmode Option ---------------------------
--R
--R Description: execute break processing on error
--R
--R The breakmode option may be followed by any one of the following:
--R
--R    nobreak
--R    break
--R    query
--R -> resume 
--R    fastlinks
--R    quit
--R
--R The current setting is indicated.
--R
--E 1

--S 2 of 143
)set compiler
--R                  Current Values of  compiler  Variables                   
--R
--RVariable     Description                                Current Value
--R-----------------------------------------------------------------------------
--Routput       library in which to place compiled code    user.lib 
--Rinput        controls libraries from which to load compiled code  
--R
--E 2

--S 3 of 143
)set compiler
--R                  Current Values of  compiler  Variables                   
--R
--RVariable     Description                                Current Value
--R-----------------------------------------------------------------------------
--Routput       library in which to place compiled code    user.lib 
--Rinput        controls libraries from which to load compiled code  
--R
--E 3

--S 4 of 143
)set compile input
--R---------------------------- The input Option -----------------------------
--R
--R Description: controls libraries from which to load compiled code
--R
--R )set compile input add library is used to tell AXIOM to add library to
--Rthe front of the path used to find compile code.
--R )set compile input drop library is used to tell AXIOM to remove library 
--Rfrom this path.
--E 4

--S 5 of 143
)set compiler output
--R 
--R---------------------------- The output Option ----------------------------
--R
--R Description: library in which to place compiled code
--R
--R )set compile output library is used to tell the compiler where to place
--Rcompiled code generated by the library compiler.  By default it goes
--Rin a file called user.lib in the current directory.
--E 5

--S 6 of 143 no longer supported
-- )set compiler args
--E 6

--S 7 of 143
)set expose
--R 
--R---------------------------- The expose Option ----------------------------
--R
--R Description: control interpreter constructor exposure
--R
--R   The following groups are explicitly exposed in the current frame 
--R      (called initial ):
--R                                   basic                                   
--R                                categories                                 
--R                                  naglink                                  
--R                                   anna                                    
--R 
--R   The following constructors are explicitly exposed in the current 
--R      frame:
--R               there are no explicitly exposed constructors                
--R 
--R   The following constructors are explicitly hidden in the current 
--R      frame:
--R                there are no explicitly hidden constructors                
--R 
--E 7

--S 8 of 143
)set functions
--R                  Current Values of  functions  Variables                  
--R
--RVariable     Description                                Current Value
--R-----------------------------------------------------------------------------
--Rcache        number of function results to cache        0 
--Rcompile      compile, don't just define function bodies on 
--Rrecurrence   specially compile recurrence relations     on 
--R
--E 8

--S 9 of 143
)set functions cache
--R 
--R---------------------------- The cache Option -----------------------------
--R
--R Description: number of function results to cache
--R
--R )set functions cache is used to tell AXIOM how many
--R values computed by interpreter functions should be saved.  This
--R can save quite a bit of time in recursive functions, though one
--R must consider that the cached values will take up (perhaps
--R valuable) room in the workspace.
--R
--R The value given after cache must either be the word all or a positive integer.
--R This may be followed by any number of function names whose cache
--R sizes you wish to so set.  If no functions are given, the default
--R cache size is set.
--R
--R Examples:
--R   )set fun cache all         )set fun cache 10 f g Legendre
--R
--R In general, functions will cache no returned values.
--E 9

--S 10 of 143
)set functions compile
--R--------------------------- The compile Option ----------------------------
--R
--R Description: compile, don't just define function bodies
--R
--R The compile option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 10

--S 11 of 143
)set functions recurrence
--R-------------------------- The recurrence Option --------------------------
--R
--R Description: specially compile recurrence relations
--R
--R The recurrence option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 11

--S 12 of 143
)set fortran
--R                   Current Values of  fortran  Variables                   
--R
--RVariable     Description                                Current Value
--R-----------------------------------------------------------------------------
--Rints2floats  where sensible, coerce integers to reals   on 
--Rfortindent   the number of characters indented          6 
--Rfortlength   the number of characters on a line         72 
--Rtypedecs     print type and dimension lines             on 
--Rdefaulttype  default generic type for FORTRAN object    REAL 
--Rprecision    precision of generated FORTRAN objects     double 
--Rintrinsic    whether to use INTRINSIC FORTRAN functions off 
--Rexplength    character limit for FORTRAN expressions    1320 
--Rsegment      split long FORTRAN expressions             on 
--Roptlevel     FORTRAN optimisation level                 0 
--Rstartindex   starting index for FORTRAN arrays          1 
--Rcalling      options for external FORTRAN calls         ... 
--R
--RVariables with current values of ... have further sub-options. For example,
--Rissue )set  calling to see what the options are for calling .
--RFor more information, issue )help set .
--E 12

--S 13 of 143
)set fortran ints2floats
--R------------------------- The ints2floats Option --------------------------
--R
--R Description: where sensible, coerce integers to reals
--R
--R The ints2floats option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 13

--S 14 of 143
)set fortran fortindent
--R-------------------------- The fortindent Option --------------------------
--R
--R Description: the number of characters indented
--R
--R The fortindent option may be followed by an integer in the range 0 to
--R  inclusive. The current setting is 6 
--R
--E 14

--S 15 of 143
)set fortran fortlength
--R-------------------------- The fortlength Option --------------------------
--R
--R Description: the number of characters on a line
--R
--R The fortlength option may be followed by an integer in the range 1 to
--R  inclusive. The current setting is 72 
--R
--E 15

--S 16 of 143
)set fortran typedecs
--R--------------------------- The typedecs Option ---------------------------
--R
--R Description: print type and dimension lines
--R
--R The typedecs option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 16

--S 17 of 143
)set fortran defaulttype
--R------------------------- The defaulttype Option --------------------------
--R
--R Description: default generic type for FORTRAN object
--R
--R The defaulttype option may be followed by any one of the following:
--R
--R -> REAL 
--R    INTEGER
--R    COMPLEX
--R    LOGICAL
--R    CHARACTER
--R
--R The current setting is indicated.
--R
--E 17

--S 18 of 143
)set fortran precision
--R-------------------------- The precision Option ---------------------------
--R
--R Description: precision of generated FORTRAN objects
--R
--R The precision option may be followed by any one of the following:
--R
--R    single
--R -> double 
--R
--R The current setting is indicated.
--R
--E 18

--S 19 of 143
)set fortran intrinsic
--R-------------------------- The intrinsic Option ---------------------------
--R
--R Description: whether to use INTRINSIC FORTRAN functions
--R
--R The intrinsic option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 19

--S 20 of 143
)set fortran explength
--R-------------------------- The explength Option ---------------------------
--R
--R Description: character limit for FORTRAN expressions
--R
--R The explength option may be followed by an integer in the range 0 to
--R  inclusive. The current setting is 1320 
--R
--E 20

--S 21 of 143
)set fortran segment
--R--------------------------- The segment Option ----------------------------
--R
--R Description: split long FORTRAN expressions
--R
--R The segment option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 21

--S 22 of 143
)set fortran optlevel
--R--------------------------- The optlevel Option ---------------------------
--R
--R Description: FORTRAN optimisation level
--R
--R The optlevel option may be followed by an integer in the range 0 to
--R 2 inclusive. The current setting is 0 
--R
--E 22

--S 23 of 143
)set fortran startindex
--R-------------------------- The startindex Option --------------------------
--R
--R Description: starting index for FORTRAN arrays
--R
--R The startindex option may be followed by an integer in the range 0 to
--R 1 inclusive. The current setting is 1 
--R
--E 23

--S 24 of 143
)set fortran calling
--R                   Current Values of  calling  Variables                   
--R
--RVariable     Description                                Current Value
--R-----------------------------------------------------------------------------
--Rtempfile     set location of temporary data files       /tmp/ 
--Rdirectory    set location of generated FORTRAN files    ./ 
--Rlinker       linker arguments (e.g. libraries to search) -lxlf 
--R
--E 24

--S 25 of 143
)set fortran calling tempfile
--R--------------------------- The tempfile Option ---------------------------
--R
--R Description: set location of temporary data files
--R
--R )set fortran calling tempfile  is used to tell AXIOM where
--R to place intermediate FORTRAN data files . This must be the 
--R name of a valid existing directory to which you have permission 
--R to write (including the final slash).
--R
--R Syntax:
--R   )set fortran calling tempfile DIRECTORYNAME
--R
--R The current setting is /tmp/ 
--E 25

--S 26 of 143
)set fortran calling directory
--R-------------------------- The directory Option ---------------------------
--R
--R Description: set location of generated FORTRAN files
--R
--R )set fortran calling directory  is used to tell AXIOM where
--R to place generated FORTRAN files. This must be the name 
--R of a valid existing directory to which you have permission 
--R to write (including the final slash).
--R
--R Syntax:
--R   )set fortran calling directory DIRECTORYNAME
--R
--R The current setting is ./ 
--E 26

--S 27 of 143
)set fortran calling linker
--R---------------------------- The linker Option ----------------------------
--R
--R Description: linker arguments (e.g. libraries to search)
--R
--R )set fortran calling linkerargs  is used to pass arguments to the linker
--R when using  mkFort  to create functions which call Fortran code.
--R For example, it might give a list of libraries to be searched,
--R and their locations.
--R The string is passed verbatim, so must be the correct syntax for
--R the particular linker being used.
--R
--R Example: )set fortran calling linker "-lxlf"
--R
--R The current setting is -lxlf 
--E 27

--S 28 of 143 no longer supported
--)set kernel
--E 28

--S 29 of 143 no longer supported
--)set kernel warn
--E 29

--S 30 of 143 no longer supported
--)set kernel protect
--E 30

--S 31 of 143
)set hyperdoc
--R                  Current Values of  hyperdoc  Variables                   
--R
--RVariable     Description                                Current Value
--R-----------------------------------------------------------------------------
--Rfullscreen   use full screen for this facility          off 
--Rmathwidth    screen width for history output            120 
--R
--E 31

--S 32 of 143
)set hyperdoc fullscreen
--R-------------------------- The fullscreen Option --------------------------
--R
--R Description: use full screen for this facility
--R
--R The fullscreen option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 32

--S 33 of 143
)set hyperdoc mathwidth
--R-------------------------- The mathwidth Option ---------------------------
--R
--R Description: screen width for history output
--R
--R The mathwidth option may be followed by an integer in the range 0 to
--R  inclusive. The current setting is 120 
--R
--E 33

--S 34 of 143
)set help
--R                    Current Values of  help  Variables                     
--R
--RVariable     Description                                Current Value
--R-----------------------------------------------------------------------------
--Rfullscreen   use fullscreen facility, if possible       on 
--R
--E 34

--S 35 of 143
)set help fullscreen
--R-------------------------- The fullscreen Option --------------------------
--R
--R Description: use fullscreen facility, if possible
--R
--R The fullscreen option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 35

--S 36 of 143
)set history
--R--------------------------- The history Option ----------------------------
--R
--R Description: save workspace values in a history file
--R
--R The history option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 36

--S 37 of 143
)set messages
--R                  Current Values of  messages  Variables                   
--R
--RVariable     Description                                Current Value
--R-----------------------------------------------------------------------------
--Rany          print the internal type of objects of domain Any on 
--Rautoload     print file auto-load messages              off 
--Rbottomup     display bottom up modemap selection        off 
--Rcoercion     display datatype coercion messages         off 
--Rdropmap      display old map defn when replaced         off 
--Rexpose       warning for unexposed functions            off 
--Rfile         print msgs also to SPADMSG LISTING         off 
--Rframe        display messages about frames              off 
--Rhighlighting use highlighting in system messages        off 
--Rinstant      present instantiation summary              off 
--Rinsteach     present instantiation info                 off 
--Rinterponly   say when function code is interpreted      on 
--Rnaglink      show NAGLink messages                      on 
--Rnumber       display message number with message        off 
--Rprompt       set type of input prompt to display        step 
--Rselection    display function selection msgs            off 
--Rset          show )set setting after assignment         off 
--Rstartup      display messages on start-up               on 
--Rsummary      print statistics after computation         off 
--Rtesting      print system testing header                on 
--Rtime         print timings after computation            off 
--Rtype         print type after computation               on 
--Rvoid         print Void value when it occurs            off 
--R
--E 37

--S 38 of 143
)set messages autoload
--R 
--R--------------------------- The autoload Option ---------------------------
--R
--R Description: print file auto-load messages
--R
--R The autoload option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 38

--S 39 of 143
)set messages bottomup
--R--------------------------- The bottomup Option ---------------------------
--R
--R Description: display bottom up modemap selection
--R
--R The bottomup option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 39

--S 40 of 143
)set messages coercion
--R--------------------------- The coercion Option ---------------------------
--R
--R Description: display datatype coercion messages
--R
--R The coercion option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 40

--S 41 of 143
)set messages dropmap
--R--------------------------- The dropmap Option ----------------------------
--R
--R Description: display old map defn when replaced
--R
--R The dropmap option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 41

--S 42 of 143
)set messages expose
--R---------------------------- The expose Option ----------------------------
--R
--R Description: warning for unexposed functions
--R
--R The expose option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 42

--S 43 of 143
)set messages file
--R----------------------------- The file Option -----------------------------
--R
--R Description: print msgs also to SPADMSG LISTING
--R
--R The file option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 43

--S 44 of 143
)set messages frame
--R---------------------------- The frame Option -----------------------------
--R
--R Description: display messages about frames
--R
--R The frame option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 44

--S 45 of 143
)set messages highlighting
--R------------------------- The highlighting Option -------------------------
--R
--R Description: use highlighting in system messages
--R
--R The highlighting option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 45

--S 46 of 143
)set messages instant
--R--------------------------- The instant Option ----------------------------
--R
--R Description: present instantiation summary
--R
--R The instant option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 46

--S 47 of 143
)set messages insteach
--R--------------------------- The insteach Option ---------------------------
--R
--R Description: present instantiation info
--R
--R The insteach option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 47

--S 48 of 143
)set messages interponly
--R-------------------------- The interponly Option --------------------------
--R
--R Description: say when function code is interpreted
--R
--R The interponly option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 48

--S 49 of 143
)set messages number
--R---------------------------- The number Option ----------------------------
--R
--R Description: display message number with message
--R
--R The number option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 49

--S 50 of 143
)set messages prompt
--R---------------------------- The prompt Option ----------------------------
--R
--R Description: set type of input prompt to display
--R
--R The prompt option may be followed by any one of the following:
--R
--R    none
--R    frame
--R    plain
--R -> step 
--R    verbose
--R
--R The current setting is indicated.
--R
--E 50

--S 51 of 143
)set messages selection
--R-------------------------- The selection Option ---------------------------
--R
--R Description: display function selection msgs
--R
--R The selection option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 51

--S 52 of 143
)set messages set
--R----------------------------- The set Option ------------------------------
--R
--R Description: show )set setting after assignment
--R
--R The set option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 52

--S 53 of 143
)set messages startup
--R--------------------------- The startup Option ----------------------------
--R
--R Description: display messages on start-up
--R
--R The startup option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 53

--S 54 of 143
)set messages summary
--R--------------------------- The summary Option ----------------------------
--R
--R Description: print statistics after computation
--R
--R The summary option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 54

--S 55 of 143
)set messages testing
--R--------------------------- The testing Option ----------------------------
--R
--R Description: print system testing header
--R
--R The testing option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 55

--S 56 of 143
)set messages time
--R----------------------------- The time Option -----------------------------
--R
--R Description: print timings after computation
--R
--R The time option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R    long
--R
--R The current setting is indicated.
--R
--E 56

--S 57 of 143
)set messages type
--R----------------------------- The type Option -----------------------------
--R
--R Description: print type after computation
--R
--R The type option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 57

--S 58 of 143
)set messages void
--R----------------------------- The void Option -----------------------------
--R
--R Description: print Void value when it occurs
--R
--R The void option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 58

--S 59 of 143
)set messages any
--R----------------------------- The any Option ------------------------------
--R
--R Description: print the internal type of objects of domain Any
--R
--R The any option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 59

--S 60 of 143
)set messages naglink
--R--------------------------- The naglink Option ----------------------------
--R
--R Description: show NAGLink messages
--R
--R The naglink option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 60

--S 61 of 143
)set naglink host
--R----------------------------- The host Option -----------------------------
--R
--R Description: internet address of host for NAGLink
--R
--R )set naglink host is used to tell  AXIOM which  host to contact for
--R a NAGLink request. An Internet address should be supplied. The host
--R specified must be running the NAGLink daemon.
--R
--R The current setting is localhost 
--E 61

--S 62 of 143
)set naglink persistence
--R------------------------- The persistence Option --------------------------
--R
--R Description: number of (fortran) functions to remember
--R
--R )set naglink persistence is used to tell  the  nagd  daemon how  many ASP
--R source and object files to keep around in case you reuse them. This helps
--R to avoid needless recompilations. The number specified should be a 
--R non-negative integer.
--R
--R The current setting is 1 
--E 62

--S 63 of 143
)set naglink messages
--R--------------------------- The messages Option ---------------------------
--R
--R Description: show NAGLink messages
--R
--R The messages option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 63

--S 64 of 143
)set naglink double
--R---------------------------- The double Option ----------------------------
--R
--R Description: enforce DOUBLE PRECISION ASPs
--R
--R The double option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 64

--S 65 of 143
)set output 
--R 
--R                   Current Values of  output  Variables                    
--R
--RVariable     Description                                Current Value
--R-----------------------------------------------------------------------------
--Rabbreviate   abbreviate type names                      off 
--Ralgebra      display output in algebraic form           On:CONSOLE 
--Rcharacters   choose special output character set        plain 
--Rfortran      create output in FORTRAN format            Off:CONSOLE 
--Rfraction     how fractions are formatted                vertical 
--Rhtml         create output in HTML style                Off:CONSOLE 
--Rlength       line length of output displays             77 
--Rmathml       create output in MathML style              Off:CONSOLE 
--Ropenmath     create output in OpenMath style            Off:CONSOLE 
--Rscript       display output in SCRIPT formula format    Off:CONSOLE 
--Rscripts      show subscripts,... linearly               off 
--Rshoweditor   view output of )show in editor             off 
--Rtex          create output in TeX style                 Off:CONSOLE 
--R
--E 65

--S 66 of 143
)set output abbreviate
--R-------------------------- The abbreviate Option --------------------------
--R
--R Description: abbreviate type names
--R
--R The abbreviate option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 66

--S 67 of 143
)set output algebra
--R--------------------------- The algebra Option ----------------------------
--R
--R Description: display output in algebraic form
--R
--R )set output algebra is used to tell AXIOM to turn algebra-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output algebra <arg>
--R    where arg can be one of
--R  on          turn algebra printing on (default state)
--R  off         turn algebra printing off
--R  console     send algebra output to screen (default state)
--R  fp<.fe>     send algebra output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .spout.
--R
--RIf you wish to send the output to a file, you may need to issue this command
--Rtwice: once with on and once with the file name. For example, to send
--Ralgebra output to the file polymer.spout, issue the two commands
--R
--R  )set output algebra on
--R  )set output algebra polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  On:CONSOLE 
--E 67

--S 68 of 143
)set output characters
--R-------------------------- The characters Option --------------------------
--R
--R Description: choose special output character set
--R
--R
--R The characters option may be followed by any one of the following:
--R
--R    default
--R -> plain 
--R
--R The current setting is indicated within the list.  This option determines 
--R the special characters used for algebraic output.  This is what the
--R current choice of special characters looks like:
--R   ulc is shown as +          urc is shown as +       
--R   llc is shown as +          lrc is shown as +       
--R   vbar is shown as |         hbar is shown as -      
--R   quad is shown as ?         lbrk is shown as [      
--R   rbrk is shown as ]         lbrc is shown as {      
--R   rbrc is shown as }         ttee is shown as +      
--R   btee is shown as +         rtee is shown as +      
--R   ltee is shown as +         ctee is shown as +      
--R   bslash is shown as \    
--E 68

--S 69 of 143
)set output fortran
--R--------------------------- The fortran Option ----------------------------
--R
--R Description: create output in FORTRAN format
--R
--R )set output fortran is used to tell AXIOM to turn FORTRAN-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RAlso See: )set fortran
--R
--RSyntax:   )set output fortran <arg>
--R    where arg can be one of
--R  on          turn FORTRAN printing on
--R  off         turn FORTRAN printing off (default state)
--R  console     send FORTRAN output to screen (default state)
--R  fp<.fe>     send FORTRAN output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .sfort.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RFORTRAN output to the file polymer.sfort, issue the two commands
--R
--R  )set output fortran on
--R  )set output fortran polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 69

--S 70 of 143
)set output fraction
--R--------------------------- The fraction Option ---------------------------
--R
--R Description: how fractions are formatted
--R
--R The fraction option may be followed by any one of the following:
--R
--R -> vertical 
--R    horizontal
--R
--R The current setting is indicated.
--R
--E 70

--S 71 of 143
)set output length
--R---------------------------- The length Option ----------------------------
--R
--R Description: line length of output displays
--R
--R The length option may be followed by an integer in the range 10 to
--R 245 inclusive. The current setting is 77 
--R
--E 71

--S 72 of 143
)set output mathml
--R---------------------------- The mathml Option ----------------------------
--R
--R Description: create output in MathML style
--R
--R )set output mathml is used to tell AXIOM to turn MathML-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output mathml <arg>
--R    where arg can be one of
--R  on          turn MathML printing on
--R  off         turn MathML printing off (default state)
--R  console     send MathML output to screen (default state)
--R  fp<.fe>     send MathML output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .stex.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RMathML output to the file polymer.smml, issue the two commands
--R
--R  )set output mathml on
--R  )set output mathml polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 72

--S 73 of 143
)set output openmath
--R--------------------------- The openmath Option ---------------------------
--R
--R Description: create output in OpenMath style
--R
--R )set output openmath is used to tell AXIOM to turn OpenMath output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output openmath <arg>
--R    where arg can be one of
--R  on          turn OpenMath printing on
--R  off         turn OpenMath printing off (default state)
--R  console     send OpenMath output to screen (default state)
--R  fp<.fe>     send OpenMath output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .som.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--ROpenMath output to the file polymer.som, issue the two commands
--R
--R  )set output openmath on
--R  )set output openmath polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 73

--S 74 of 143
)set output script
--R---------------------------- The script Option ----------------------------
--R
--R Description: display output in SCRIPT formula format
--R
--R )set output script is used to tell AXIOM to turn IBM Script formula-style
--Routput printing on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output script <arg>
--R    where arg can be one of
--R  on          turn IBM Script formula printing on
--R  off         turn IBM Script formula printing off (default state)
--R  console     send IBM Script formula output to screen (default state)
--R  fp<.fe>     send IBM Script formula output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .sform.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RIBM Script formula output to the file polymer.sform, issue the two commands
--R
--R  )set output script on
--R  )set output script polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 74

--S 75 of 143
)set output scripts
--R--------------------------- The scripts Option ----------------------------
--R
--R Description: show subscripts,... linearly
--R
--R The scripts option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 75

--S 76 of 143
)set output showeditor
--R-------------------------- The showeditor Option --------------------------
--R
--R Description: view output of )show in editor
--R
--R The showeditor option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 76

--S 77 of 143
)set output tex
--R----------------------------- The tex Option ------------------------------
--R
--R Description: create output in TeX style
--R
--R )set output tex is used to tell AXIOM to turn TeX-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output tex <arg>
--R    where arg can be one of
--R  on          turn TeX printing on
--R  off         turn TeX printing off (default state)
--R  console     send TeX output to screen (default state)
--R  fp<.fe>     send TeX output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .stex.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RTeX output to the file polymer.stex, issue the two commands
--R
--R  )set output tex on
--R  )set output tex polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 77

--S 78 of 143
)set quit
--R----------------------------- The quit Option -----------------------------
--R
--R Description: protected or unprotected quit
--R
--R The quit option may be followed by any one of the following:
--R
--R -> protected 
--R    unprotected
--R
--R The current setting is indicated.
--R
--E 78

--S 79 of 143
)set streams
--R                   Current Values of  streams  Variables                   
--R
--RVariable     Description                                Current Value
--R-----------------------------------------------------------------------------
--Rcalculate    specify number of elements to calculate    10 
--Rshowall      display all stream elements computed       off 
--R
--E 79

--S 80 of 143
)set streams calculate
--R-------------------------- The calculate Option ---------------------------
--R
--R Description: specify number of elements to calculate
--R
--R   )set streams calculate is used to tell AXIOM how many elements of a 
--R      stream to calculate when a computation uses the stream. The value
--R      given after calculate must either be the word all or a positive 
--R      integer.
--R
--R      The current setting is 10 .
--E 80

--S 81 of 143
)set streams showall
--R--------------------------- The showall Option ----------------------------
--R
--R Description: display all stream elements computed
--R
--R The showall option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 81

--S 82 of 143
)set system
--R                   Current Values of  system  Variables                    
--R
--RVariable     Description                                Current Value
--R-----------------------------------------------------------------------------
--Rfunctioncode show gen. LISP for functions when compiled off 
--Roptimization show optimized LISP code                   off 
--Rprettyprint  prettyprint BOOT func's as they compile    on 
--R
--E 82

--S 83 of 143
)set system functioncode
--R------------------------- The functioncode Option -------------------------
--R
--R Description: show gen. LISP for functions when compiled
--R
--R The functioncode option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 83

--S 84 of 143
)set system optimization
--R------------------------- The optimization Option -------------------------
--R
--R Description: show optimized LISP code
--R
--R The optimization option may be followed by any one of the following:
--R
--R    on
--R -> off 
--R
--R The current setting is indicated.
--R
--E 84

--S 85 of 143
)set system prettyprint
--R------------------------- The prettyprint Option --------------------------
--R
--R Description: prettyprint BOOT func's as they compile
--R
--R The prettyprint option may be followed by any one of the following:
--R
--R -> on 
--R    off
--R
--R The current setting is indicated.
--R
--E 85

--S 86 of 143
)set userlevel
--R-------------------------- The userlevel Option ---------------------------
--R
--R Description: operation access level of system user
--R
--R The userlevel option may be followed by any one of the following:
--R
--R    interpreter
--R    compiler
--R -> development 
--R
--R The current setting is indicated.
--R
--E 86

--S 87 of 143
)set output char
--R-------------------------- The characters Option --------------------------
--R
--R Description: choose special output character set
--R
--R
--R The characters option may be followed by any one of the following:
--R
--R    default
--R -> plain 
--R
--R The current setting is indicated within the list.  This option determines 
--R the special characters used for algebraic output.  This is what the
--R current choice of special characters looks like:
--R   ulc is shown as +          urc is shown as +       
--R   llc is shown as +          lrc is shown as +       
--R   vbar is shown as |         hbar is shown as -      
--R   quad is shown as ?         lbrk is shown as [      
--R   rbrk is shown as ]         lbrc is shown as {      
--R   rbrc is shown as }         ttee is shown as +      
--R   btee is shown as +         rtee is shown as +      
--R   ltee is shown as +         ctee is shown as +      
--R   bslash is shown as \    
--E 87

--S 88 of 143
)set output char default
--E 88

--S 89 of 143
)set output char
--RÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ The characters Option ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
--R
--R Description: choose special output character set
--R
--R
--R The characters option may be followed by any one of the following:
--R
--R -> default 
--R    plain
--R
--R The current setting is indicated within the list.  This option determines 
--R the special characters used for algebraic output.  This is what the
--R current choice of special characters looks like:
--R   ulc is shown as Ú          urc is shown as ¿       
--R   llc is shown as À          lrc is shown as Ù       
--R   vbar is shown as ³         hbar is shown as Ä      
--R   quad is shown as NIL       lbrk is shown as [      
--R   rbrk is shown as ]         lbrc is shown as {      
--R   rbrc is shown as }         ttee is shown as       
--R   btee is shown as Á         rtee is shown as ´      
--R   ltee is shown as à        ctee is shown as Š     
--R   bslash is shown as \    
--E 89

--S 90 of 143
)set output char plain
--E 90

--S 91 of 143
)set output char
--R-------------------------- The characters Option --------------------------
--R
--R Description: choose special output character set
--R
--R
--R The characters option may be followed by any one of the following:
--R
--R    default
--R -> plain 
--R
--R The current setting is indicated within the list.  This option determines 
--R the special characters used for algebraic output.  This is what the
--R current choice of special characters looks like:
--R   ulc is shown as +          urc is shown as +       
--R   llc is shown as +          lrc is shown as +       
--R   vbar is shown as |         hbar is shown as -      
--R   quad is shown as ?         lbrk is shown as [      
--R   rbrk is shown as ]         lbrc is shown as {      
--R   rbrc is shown as }         ttee is shown as +      
--R   btee is shown as +         rtee is shown as +      
--R   ltee is shown as +         ctee is shown as +      
--R   bslash is shown as \    
--E 91

--S 92 of 143
)set output fortran
--R--------------------------- The fortran Option ----------------------------
--R
--R Description: create output in FORTRAN format
--R
--R )set output fortran is used to tell AXIOM to turn FORTRAN-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RAlso See: )set fortran
--R
--RSyntax:   )set output fortran <arg>
--R    where arg can be one of
--R  on          turn FORTRAN printing on
--R  off         turn FORTRAN printing off (default state)
--R  console     send FORTRAN output to screen (default state)
--R  fp<.fe>     send FORTRAN output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .sfort.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RFORTRAN output to the file polymer.sfort, issue the two commands
--R
--R  )set output fortran on
--R  )set output fortran polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 92

--S 93 of 143
)set output fortran foo
--I   FORTRAN output will be written to file /research/test/foo.sfort .
--E 93

--S 94 of 143
)set output fortran
--R--------------------------- The fortran Option ----------------------------
--R
--R Description: create output in FORTRAN format
--R
--R )set output fortran is used to tell AXIOM to turn FORTRAN-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RAlso See: )set fortran
--R
--RSyntax:   )set output fortran <arg>
--R    where arg can be one of
--R  on          turn FORTRAN printing on
--R  off         turn FORTRAN printing off (default state)
--R  console     send FORTRAN output to screen (default state)
--R  fp<.fe>     send FORTRAN output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .sfort.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RFORTRAN output to the file polymer.sfort, issue the two commands
--R
--R  )set output fortran on
--R  )set output fortran polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  Off:/research/test/foo.sfort 
--E 94

--S 95 of 143
)set output fortran on
--E 95

--S 96 of 143
)set output fortran
--R--------------------------- The fortran Option ----------------------------
--R
--R Description: create output in FORTRAN format
--R
--R )set output fortran is used to tell AXIOM to turn FORTRAN-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RAlso See: )set fortran
--R
--RSyntax:   )set output fortran <arg>
--R    where arg can be one of
--R  on          turn FORTRAN printing on
--R  off         turn FORTRAN printing off (default state)
--R  console     send FORTRAN output to screen (default state)
--R  fp<.fe>     send FORTRAN output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .sfort.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RFORTRAN output to the file polymer.sfort, issue the two commands
--R
--R  )set output fortran on
--R  )set output fortran polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  On:/research/test/foo.sfort 
--E 96

--S 97 of 143
)set output fortran append
--I   FORTRAN output will be written to file /research/test/NIL.sfort .
--E 97

--S 98 of 143
)set output fortran
--R--------------------------- The fortran Option ----------------------------
--R
--R Description: create output in FORTRAN format
--R
--R )set output fortran is used to tell AXIOM to turn FORTRAN-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RAlso See: )set fortran
--R
--RSyntax:   )set output fortran <arg>
--R    where arg can be one of
--R  on          turn FORTRAN printing on
--R  off         turn FORTRAN printing off (default state)
--R  console     send FORTRAN output to screen (default state)
--R  fp<.fe>     send FORTRAN output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .sfort.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RFORTRAN output to the file polymer.sfort, issue the two commands
--R
--R  )set output fortran on
--R  )set output fortran polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  On:/research/test/NIL.sfort 
--E 98

--S 99 of 143
)set output fortran foo
--I   FORTRAN output will be written to file /research/test/foo.sfort .
--E 99

--S 100 of 143
)set output fortran
--R--------------------------- The fortran Option ----------------------------
--R
--R Description: create output in FORTRAN format
--R
--R )set output fortran is used to tell AXIOM to turn FORTRAN-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RAlso See: )set fortran
--R
--RSyntax:   )set output fortran <arg>
--R    where arg can be one of
--R  on          turn FORTRAN printing on
--R  off         turn FORTRAN printing off (default state)
--R  console     send FORTRAN output to screen (default state)
--R  fp<.fe>     send FORTRAN output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .sfort.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RFORTRAN output to the file polymer.sfort, issue the two commands
--R
--R  )set output fortran on
--R  )set output fortran polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  On:/research/test/foo.sfort 
--E 100

--S 101 of 143
)set output algebra
--R--------------------------- The algebra Option ----------------------------
--R
--R Description: display output in algebraic form
--R
--R )set output algebra is used to tell AXIOM to turn algebra-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output algebra <arg>
--R    where arg can be one of
--R  on          turn algebra printing on (default state)
--R  off         turn algebra printing off
--R  console     send algebra output to screen (default state)
--R  fp<.fe>     send algebra output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .spout.
--R
--RIf you wish to send the output to a file, you may need to issue this command
--Rtwice: once with on and once with the file name. For example, to send
--Ralgebra output to the file polymer.spout, issue the two commands
--R
--R  )set output algebra on
--R  )set output algebra polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  On:CONSOLE 
--E 101

--S 102 of 143
)set output algebra foo
--E 102

--S 103 of 143
)set output algebra
--R--------------------------- The algebra Option ----------------------------
--R
--R Description: display output in algebraic form
--R
--R )set output algebra is used to tell AXIOM to turn algebra-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output algebra <arg>
--R    where arg can be one of
--R  on          turn algebra printing on (default state)
--R  off         turn algebra printing off
--R  console     send algebra output to screen (default state)
--R  fp<.fe>     send algebra output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .spout.
--R
--RIf you wish to send the output to a file, you may need to issue this command
--Rtwice: once with on and once with the file name. For example, to send
--Ralgebra output to the file polymer.spout, issue the two commands
--R
--R  )set output algebra on
--R  )set output algebra polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  On:/tmp/foo.spout 
--E 103

--S 104 of 143
)set output algebra off
--E 104

--S 105 of 143
)set output algebra
--R--------------------------- The algebra Option ----------------------------
--R
--R Description: display output in algebraic form
--R
--R )set output algebra is used to tell AXIOM to turn algebra-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output algebra <arg>
--R    where arg can be one of
--R  on          turn algebra printing on (default state)
--R  off         turn algebra printing off
--R  console     send algebra output to screen (default state)
--R  fp<.fe>     send algebra output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .spout.
--R
--RIf you wish to send the output to a file, you may need to issue this command
--Rtwice: once with on and once with the file name. For example, to send
--Ralgebra output to the file polymer.spout, issue the two commands
--R
--R  )set output algebra on
--R  )set output algebra polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  Off:/tmp/foo.spout 
--E 105

--S 106 of 143
)set output algebra console
--E 106

--S 107 of 143
)set output algebra
--R--------------------------- The algebra Option ----------------------------
--R
--R Description: display output in algebraic form
--R
--R )set output algebra is used to tell AXIOM to turn algebra-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output algebra <arg>
--R    where arg can be one of
--R  on          turn algebra printing on (default state)
--R  off         turn algebra printing off
--R  console     send algebra output to screen (default state)
--R  fp<.fe>     send algebra output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .spout.
--R
--RIf you wish to send the output to a file, you may need to issue this command
--Rtwice: once with on and once with the file name. For example, to send
--Ralgebra output to the file polymer.spout, issue the two commands
--R
--R  )set output algebra on
--R  )set output algebra polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 107

--S 108 of 143
)set output algebra on
--E 108

--S 109 of 143
)set output algebra
--R--------------------------- The algebra Option ----------------------------
--R
--R Description: display output in algebraic form
--R
--R )set output algebra is used to tell AXIOM to turn algebra-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output algebra <arg>
--R    where arg can be one of
--R  on          turn algebra printing on (default state)
--R  off         turn algebra printing off
--R  console     send algebra output to screen (default state)
--R  fp<.fe>     send algebra output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .spout.
--R
--RIf you wish to send the output to a file, you may need to issue this command
--Rtwice: once with on and once with the file name. For example, to send
--Ralgebra output to the file polymer.spout, issue the two commands
--R
--R  )set output algebra on
--R  )set output algebra polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  On:CONSOLE 
--E 109

--S 110 of 143
)set output mathml
--R---------------------------- The mathml Option ----------------------------
--R
--R Description: create output in MathML style
--R
--R )set output mathml is used to tell AXIOM to turn MathML-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output mathml <arg>
--R    where arg can be one of
--R  on          turn MathML printing on
--R  off         turn MathML printing off (default state)
--R  console     send MathML output to screen (default state)
--R  fp<.fe>     send MathML output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .stex.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RMathML output to the file polymer.smml, issue the two commands
--R
--R  )set output mathml on
--R  )set output mathml polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 110

--S 111 of 143
)set output mathml foo
--I   MathML output will be written to file /research/test/foo.smml .
--E 111

--S 112 of 143
)set output mathml
--R---------------------------- The mathml Option ----------------------------
--R
--R Description: create output in MathML style
--R
--R )set output mathml is used to tell AXIOM to turn MathML-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output mathml <arg>
--R    where arg can be one of
--R  on          turn MathML printing on
--R  off         turn MathML printing off (default state)
--R  console     send MathML output to screen (default state)
--R  fp<.fe>     send MathML output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .stex.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RMathML output to the file polymer.smml, issue the two commands
--R
--R  )set output mathml on
--R  )set output mathml polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  Off:/research/test/foo.smml 
--E 112

--S 113 of 143
)set output mathml on
--E 113

--S 114 of 143
)set output mathml
--R---------------------------- The mathml Option ----------------------------
--R
--R Description: create output in MathML style
--R
--R )set output mathml is used to tell AXIOM to turn MathML-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output mathml <arg>
--R    where arg can be one of
--R  on          turn MathML printing on
--R  off         turn MathML printing off (default state)
--R  console     send MathML output to screen (default state)
--R  fp<.fe>     send MathML output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .stex.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RMathML output to the file polymer.smml, issue the two commands
--R
--R  )set output mathml on
--R  )set output mathml polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  On:/research/test/foo.smml 
--E 114

--S 115 of 143
)set output mathml console
--E 115

--S 116 of 143
)set output mathml
--R---------------------------- The mathml Option ----------------------------
--R
--R Description: create output in MathML style
--R
--R )set output mathml is used to tell AXIOM to turn MathML-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output mathml <arg>
--R    where arg can be one of
--R  on          turn MathML printing on
--R  off         turn MathML printing off (default state)
--R  console     send MathML output to screen (default state)
--R  fp<.fe>     send MathML output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .stex.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RMathML output to the file polymer.smml, issue the two commands
--R
--R  )set output mathml on
--R  )set output mathml polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  On:CONSOLE 
--E 116

--S 117 of 143
)set output openmath
--R--------------------------- The openmath Option ---------------------------
--R
--R Description: create output in OpenMath style
--R
--R )set output openmath is used to tell AXIOM to turn OpenMath output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output openmath <arg>
--R    where arg can be one of
--R  on          turn OpenMath printing on
--R  off         turn OpenMath printing off (default state)
--R  console     send OpenMath output to screen (default state)
--R  fp<.fe>     send OpenMath output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .som.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--ROpenMath output to the file polymer.som, issue the two commands
--R
--R  )set output openmath on
--R  )set output openmath polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 117

--S 118 of 143
)set output openmath on
--E 118

--S 119 of 143
)set output openmath
--R--------------------------- The openmath Option ---------------------------
--R
--R Description: create output in OpenMath style
--R
--R )set output openmath is used to tell AXIOM to turn OpenMath output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output openmath <arg>
--R    where arg can be one of
--R  on          turn OpenMath printing on
--R  off         turn OpenMath printing off (default state)
--R  console     send OpenMath output to screen (default state)
--R  fp<.fe>     send OpenMath output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .som.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--ROpenMath output to the file polymer.som, issue the two commands
--R
--R  )set output openmath on
--R  )set output openmath polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  On:CONSOLE 
--E 119

--S 120 of 143
)set output openmath foo
--I   OpenMath output will be written to file /research/test/foo.som .
--E 120

--S 121 of 143
)set output openmath
--R--------------------------- The openmath Option ---------------------------
--R
--R Description: create output in OpenMath style
--R
--R )set output openmath is used to tell AXIOM to turn OpenMath output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output openmath <arg>
--R    where arg can be one of
--R  on          turn OpenMath printing on
--R  off         turn OpenMath printing off (default state)
--R  console     send OpenMath output to screen (default state)
--R  fp<.fe>     send OpenMath output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .som.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--ROpenMath output to the file polymer.som, issue the two commands
--R
--R  )set output openmath on
--R  )set output openmath polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  On:/research/test/foo.som 
--E 121

--S 122 of 143
)set output openmath off
--E 122

--S 123 of 143
)set output openmath
--R--------------------------- The openmath Option ---------------------------
--R
--R Description: create output in OpenMath style
--R
--R )set output openmath is used to tell AXIOM to turn OpenMath output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output openmath <arg>
--R    where arg can be one of
--R  on          turn OpenMath printing on
--R  off         turn OpenMath printing off (default state)
--R  console     send OpenMath output to screen (default state)
--R  fp<.fe>     send OpenMath output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .som.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--ROpenMath output to the file polymer.som, issue the two commands
--R
--R  )set output openmath on
--R  )set output openmath polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  Off:/research/test/foo.som 
--E 123

--S 124 of 143
)set output openmath console
--E 124

--S 125 of 143
)set output openmath
--R--------------------------- The openmath Option ---------------------------
--R
--R Description: create output in OpenMath style
--R
--R )set output openmath is used to tell AXIOM to turn OpenMath output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output openmath <arg>
--R    where arg can be one of
--R  on          turn OpenMath printing on
--R  off         turn OpenMath printing off (default state)
--R  console     send OpenMath output to screen (default state)
--R  fp<.fe>     send OpenMath output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .som.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--ROpenMath output to the file polymer.som, issue the two commands
--R
--R  )set output openmath on
--R  )set output openmath polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 125

--S 126 of 143
)set output script
--R---------------------------- The script Option ----------------------------
--R
--R Description: display output in SCRIPT formula format
--R
--R )set output script is used to tell AXIOM to turn IBM Script formula-style
--Routput printing on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output script <arg>
--R    where arg can be one of
--R  on          turn IBM Script formula printing on
--R  off         turn IBM Script formula printing off (default state)
--R  console     send IBM Script formula output to screen (default state)
--R  fp<.fe>     send IBM Script formula output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .sform.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RIBM Script formula output to the file polymer.sform, issue the two commands
--R
--R  )set output script on
--R  )set output script polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 126

--S 127 of 143
)set output script on
--E 127

--S 128 of 143
)set output script
--R---------------------------- The script Option ----------------------------
--R
--R Description: display output in SCRIPT formula format
--R
--R )set output script is used to tell AXIOM to turn IBM Script formula-style
--Routput printing on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output script <arg>
--R    where arg can be one of
--R  on          turn IBM Script formula printing on
--R  off         turn IBM Script formula printing off (default state)
--R  console     send IBM Script formula output to screen (default state)
--R  fp<.fe>     send IBM Script formula output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .sform.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RIBM Script formula output to the file polymer.sform, issue the two commands
--R
--R  )set output script on
--R  )set output script polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  On:CONSOLE 
--E 128

--S 129 of 143
)set output script foo
--I   IBM Script formula output will be written to file 
--I      /research/test/foo.sform .
--E 129

--S 130 of 143
)set output script
--R---------------------------- The script Option ----------------------------
--R
--R Description: display output in SCRIPT formula format
--R
--R )set output script is used to tell AXIOM to turn IBM Script formula-style
--Routput printing on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output script <arg>
--R    where arg can be one of
--R  on          turn IBM Script formula printing on
--R  off         turn IBM Script formula printing off (default state)
--R  console     send IBM Script formula output to screen (default state)
--R  fp<.fe>     send IBM Script formula output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .sform.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RIBM Script formula output to the file polymer.sform, issue the two commands
--R
--R  )set output script on
--R  )set output script polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  On:/research/test/foo.sform 
--E 130

--S 131 of 143
)set output script console
--E 131

--S 132 of 143
)set output script
--R---------------------------- The script Option ----------------------------
--R
--R Description: display output in SCRIPT formula format
--R
--R )set output script is used to tell AXIOM to turn IBM Script formula-style
--Routput printing on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output script <arg>
--R    where arg can be one of
--R  on          turn IBM Script formula printing on
--R  off         turn IBM Script formula printing off (default state)
--R  console     send IBM Script formula output to screen (default state)
--R  fp<.fe>     send IBM Script formula output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .sform.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RIBM Script formula output to the file polymer.sform, issue the two commands
--R
--R  )set output script on
--R  )set output script polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  On:CONSOLE 
--E 132

--S 133 of 143
)set output script off
--E 133

--S 134 of 143
)set output script
--R---------------------------- The script Option ----------------------------
--R
--R Description: display output in SCRIPT formula format
--R
--R )set output script is used to tell AXIOM to turn IBM Script formula-style
--Routput printing on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output script <arg>
--R    where arg can be one of
--R  on          turn IBM Script formula printing on
--R  off         turn IBM Script formula printing off (default state)
--R  console     send IBM Script formula output to screen (default state)
--R  fp<.fe>     send IBM Script formula output to file with file prefix fp
--R              and file extension .fe. If not given, .fe defaults to .sform.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RIBM Script formula output to the file polymer.sform, issue the two commands
--R
--R  )set output script on
--R  )set output script polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 134

--S 135 of 143
)set output tex
--R----------------------------- The tex Option ------------------------------
--R
--R Description: create output in TeX style
--R
--R )set output tex is used to tell AXIOM to turn TeX-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output tex <arg>
--R    where arg can be one of
--R  on          turn TeX printing on
--R  off         turn TeX printing off (default state)
--R  console     send TeX output to screen (default state)
--R  fp<.fe>     send TeX output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .stex.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RTeX output to the file polymer.stex, issue the two commands
--R
--R  )set output tex on
--R  )set output tex polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 135

--S 136 of 143
)set output tex on
--E 136

--S 137 of 143
)set output tex
--R----------------------------- The tex Option ------------------------------
--R
--R Description: create output in TeX style
--R
--R )set output tex is used to tell AXIOM to turn TeX-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output tex <arg>
--R    where arg can be one of
--R  on          turn TeX printing on
--R  off         turn TeX printing off (default state)
--R  console     send TeX output to screen (default state)
--R  fp<.fe>     send TeX output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .stex.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RTeX output to the file polymer.stex, issue the two commands
--R
--R  )set output tex on
--R  )set output tex polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  On:CONSOLE 
--E 137

--S 138 of 143
)set output tex foo
--I   TeX output will be written to file /research/test/foo.stex .
--E 138

--S 139 of 143
)set output tex
--R----------------------------- The tex Option ------------------------------
--R
--R Description: create output in TeX style
--R
--R )set output tex is used to tell AXIOM to turn TeX-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output tex <arg>
--R    where arg can be one of
--R  on          turn TeX printing on
--R  off         turn TeX printing off (default state)
--R  console     send TeX output to screen (default state)
--R  fp<.fe>     send TeX output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .stex.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RTeX output to the file polymer.stex, issue the two commands
--R
--R  )set output tex on
--R  )set output tex polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  On:/research/test/foo.stex 
--E 139

--S 140 of 143
)set output tex off
--E 140

--S 141 of 143
)set output tex
--R----------------------------- The tex Option ------------------------------
--R
--R Description: create output in TeX style
--R
--R )set output tex is used to tell AXIOM to turn TeX-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output tex <arg>
--R    where arg can be one of
--R  on          turn TeX printing on
--R  off         turn TeX printing off (default state)
--R  console     send TeX output to screen (default state)
--R  fp<.fe>     send TeX output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .stex.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RTeX output to the file polymer.stex, issue the two commands
--R
--R  )set output tex on
--R  )set output tex polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--IThe current setting is:  Off:/research/test/foo.stex 
--E 141

--S 142 of 143
)set output tex console
--E 142

--S 143 of 143
)set output tex
--R----------------------------- The tex Option ------------------------------
--R
--R Description: create output in TeX style
--R
--R )set output tex is used to tell AXIOM to turn TeX-style output
--Rprinting on and off, and where to place the output.  By default, the
--Rdestination for the output is the screen but printing is turned off.
--R
--RSyntax:   )set output tex <arg>
--R    where arg can be one of
--R  on          turn TeX printing on
--R  off         turn TeX printing off (default state)
--R  console     send TeX output to screen (default state)
--R  fp<.fe>     send TeX output to file with file prefix fp and file
--R              extension .fe. If not given, .fe defaults to .stex.
--R
--RIf you wish to send the output to a file, you must issue this command
--Rtwice: once with on and once with the file name. For example, to send
--RTeX output to the file polymer.stex, issue the two commands
--R
--R  )set output tex on
--R  )set output tex polymer
--R
--RThe output is placed in the directory from which you invoked AXIOM or
--Rthe one you set with the )cd system command.
--RThe current setting is:  Off:CONSOLE 
--E 143

)spool 
)lisp (bye)