forked from daly/axiom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog
15929 lines (15929 loc) · 891 KB
/
changelog
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
20130811 tpd src/axiom-website/patches.html 20130811.01.tpd.patch
20130811 tpd src/axiom-website/CATS/index.html
20130811 tpd src/axiom-website/CATS/rich5.input added
20130811 tpd src/axiom-website/CATS/rich5.input.pdf
20130811 tpd src/axiom-website/CATS/rich6a.input added
20130811 tpd src/axiom-website/CATS/rich6a.input.pdf
20130811 tpd src/axiom-website/CATS/rich6b.input added
20130811 tpd src/axiom-website/CATS/rich6b.input.pdf
20130811 tpd src/axiom-website/CATS/rich6c.input added
20130811 tpd src/axiom-website/CATS/rich6c.input.pdf
20130811 tpd src/axiom-website/CATS/rich6d.input added
20130811 tpd src/axiom-website/CATS/rich6d.input.pdf
20130811 tpd src/axiom-website/CATS/rich6e.input added
20130811 tpd src/axiom-website/CATS/rich6e.input.pdf
20130811 tpd src/input/Makefile added
20130811 tpd src/input/rich5.input added
20130811 tpd src/input/rich6a.input added
20130811 tpd src/input/rich6b.input added
20130811 tpd src/input/rich6c.input added
20130811 tpd src/input/rich6d.input added
20130811 tpd src/input/rich6e.input added
20130804 tpd src/axiom-website/patches.html 20130804.01.tpd.patch
20130804 tpd src/axiom-website/CATS/index.html
20130804 tpd src/axiom-website/CATS/rich1a.input added
20130804 tpd src/axiom-website/CATS/rich1a.input.pdf
20130804 tpd src/axiom-website/CATS/rich1b.input added
20130804 tpd src/axiom-website/CATS/rich1b.input.pdf
20130804 tpd src/axiom-website/CATS/rich3a.input added
20130804 tpd src/axiom-website/CATS/rich3a.input.pdf
20130804 tpd src/axiom-website/CATS/rich3c.input added
20130804 tpd src/axiom-website/CATS/rich3c.input.pdf
20130804 tpd src/axiom-website/CATS/rich3d.input added
20130804 tpd src/axiom-website/CATS/rich3d.input.pdf
20130804 tpd src/axiom-website/CATS/rich3e.input added
20130804 tpd src/axiom-website/CATS/rich3e.input.pdf
20130804 tpd src/axiom-website/CATS/rich3f.input added
20130804 tpd src/axiom-website/CATS/rich3f.input.pdf
20130804 tpd src/axiom-website/CATS/rich3g.input added
20130804 tpd src/axiom-website/CATS/rich3g.input.pdf
20130804 tpd src/axiom-website/CATS/rich3h.input added
20130804 tpd src/axiom-website/CATS/rich3h.input.pdf
20130804 tpd src/axiom-website/CATS/rich3i.input added
20130804 tpd src/axiom-website/CATS/rich3i.input.pdf
20130804 tpd src/axiom-website/CATS/rich3j.input added
20130804 tpd src/axiom-website/CATS/rich3j.input.pdf
20130804 tpd src/axiom-website/CATS/rich3k.input added
20130804 tpd src/axiom-website/CATS/rich3k.input.pdf
20130804 tpd src/axiom-website/CATS/rich3l.input added
20130804 tpd src/axiom-website/CATS/rich3l.input.pdf
20130804 tpd src/axiom-website/CATS/rich3m.input added
20130804 tpd src/axiom-website/CATS/rich3m.input.pdf
20130804 tpd src/axiom-website/CATS/rich3n.input added
20130804 tpd src/axiom-website/CATS/rich3n.input.pdf
20130804 tpd src/axiom-website/CATS/rich3o.input added
20130804 tpd src/axiom-website/CATS/rich3o.input.pdf
20130804 tpd src/axiom-website/CATS/rich3p.input added
20130804 tpd src/axiom-website/CATS/rich3p.input.pdf
20130804 tpd src/axiom-website/CATS/rich3q.input added
20130804 tpd src/axiom-website/CATS/rich3q.input.pdf
20130804 tpd src/axiom-website/CATS/rich3r.input added
20130804 tpd src/axiom-website/CATS/rich3r.input.pdf
20130804 tpd src/axiom-website/CATS/rich3s.input added
20130804 tpd src/axiom-website/CATS/rich3s.input.pdf
20130804 tpd src/axiom-website/CATS/rich3t.input added
20130804 tpd src/axiom-website/CATS/rich3t.input.pdf
20130804 tpd src/axiom-website/CATS/rich4a.input added
20130804 tpd src/axiom-website/CATS/rich4a.input.pdf
20130804 tpd src/axiom-website/CATS/rich4b.input added
20130804 tpd src/axiom-website/CATS/rich4b.input.pdf
20130804 tpd src/axiom-website/CATS/rich4c.input added
20130804 tpd src/axiom-website/CATS/rich4c.input.pdf
20130804 tpd src/axiom-website/CATS/rich4d.input added
20130804 tpd src/axiom-website/CATS/rich4d.input.pdf
20130804 tpd src/axiom-website/CATS/rich4e.input added
20130804 tpd src/axiom-website/CATS/rich4e.input.pdf
20130804 tpd src/axiom-website/CATS/rich4f.input added
20130804 tpd src/axiom-website/CATS/rich4f.input.pdf
20130804 tpd src/axiom-website/CATS/rich4g.input added
20130804 tpd src/axiom-website/CATS/rich4g.input.pdf
20130804 tpd src/axiom-website/CATS/rich4h.input added
20130804 tpd src/axiom-website/CATS/rich4h.input.pdf
20130804 tpd src/axiom-website/CATS/rich4i.input added
20130804 tpd src/axiom-website/CATS/rich4i.input.pdf
20130804 tpd src/axiom-website/CATS/rich4j.input added
20130804 tpd src/axiom-website/CATS/rich4j.input.pdf
20130804 tpd src/input/Makefile added
20130804 tpd src/input/rich1a.input added
20130804 tpd src/input/rich1b.input added
20130804 tpd src/input/rich3a.input added
20130804 tpd src/input/rich3c.input added
20130804 tpd src/input/rich3d.input added
20130804 tpd src/input/rich3e.input added
20130804 tpd src/input/rich3f.input added
20130804 tpd src/input/rich3g.input added
20130804 tpd src/input/rich3h.input added
20130804 tpd src/input/rich3i.input added
20130804 tpd src/input/rich3j.input added
20130804 tpd src/input/rich3k.input added
20130804 tpd src/input/rich3l.input added
20130804 tpd src/input/rich3m.input added
20130804 tpd src/input/rich3n.input added
20130804 tpd src/input/rich3o.input added
20130804 tpd src/input/rich3p.input added
20130804 tpd src/input/rich3q.input added
20130804 tpd src/input/rich3r.input added
20130804 tpd src/input/rich3s.input added
20130804 tpd src/input/rich3t.input added
20130804 tpd src/input/rich4a.input added
20130804 tpd src/input/rich4b.input added
20130804 tpd src/input/rich4c.input added
20130804 tpd src/input/rich4d.input added
20130804 tpd src/input/rich4e.input added
20130804 tpd src/input/rich4f.input added
20130804 tpd src/input/rich4g.input added
20130804 tpd src/input/rich4h.input added
20130804 tpd src/input/rich4i.input added
20130804 tpd src/input/rich4j.input added
20130727 tpd src/axiom-website/patches.html 20130727.01.tpd.patch
20130727 tpd src/axiom-website/CATS/index.html add rich3c
20130727 tpd src/axiom-website/CATS/rich3c.input added
20130727 tpd src/axiom-website/CATS/rich3c.input.pdf added
20130727 tpd src/input/Makefile add rich3c
20130727 tpd src/input/rich3c.input added
20130726 tpd src/axiom-website/patches.html 20130726.01.tpd.patch
20130726 tpd src/axiom-website/CATS/index.html add rich3b
20130726 tpd src/axiom-website/CATS/rich3b.input added
20130726 tpd src/axiom-website/CATS/rich3b.input.pdf added
20130726 tpd src/input/Makefile add rich3b
20130726 tpd src/input/rich3b.input added
20130725 tpd src/axiom-website/patches.html 20130725.01.tpd.patch
20130725 tpd src/axiom-website/CATS/index.html add rich2, rich3a
20130725 tpd src/axiom-website/CATS/rich2.input added
20130725 tpd src/axiom-website/CATS/rich2.input.pdf added
20130725 tpd src/axiom-website/CATS/rich3a.input added
20130725 tpd src/axiom-website/CATS/rich3a.input.pdf added
20130725 tpd src/input/Makefile add rich2, rich3a added
20130725 tpd src/input/rich2.input added
20130725 tpd src/input/rich3a.input added
20130723 tpd src/axiom-website/patches.html 20130723.01.tpd.patch
20130723 tpd src/axiom-website/CATS/rich1b.input
20130723 tpd src/axiom-website/CATS/rich1b.input.pdf
20130723 tpd src/input/rich1b.input
20130722 tpd src/axiom-website/patches.html 20130722.01.tpd.patch
20130722 tpd src/axiom-website/CATS/rich1a.input
20130722 tpd src/axiom-website/CATS/rich1a.input.pdf
20130722 tpd src/input/rich1a.input
20130721 tpd src/axiom-website/patches.html 20130721.01.tpd.patch
20130721 tpd src/input/rich2.input
20130721 tpd src/axiom-website/CATS/index.html
20130720 tpd src/axiom-website/patches.html 20130720.01.tpd.patch
20130720 tpd src/input/rich2.input
20130720 tpd src/input/Makefile
20130719 tpd src/axiom-website/patches.html 20130719.01.tpd.patch
20130719 tpd src/axiom-website/CATS/index.html
20130719 tpd src/axiom-website/CATS/rich1a.input
20130719 tpd src/axiom-website/CATS/rich1a.input.pdf
20130719 tpd src/axiom-website/CATS/rich1b.input
20130719 tpd src/axiom-website/CATS/rich1b.input.pdf
20130718 tpd 20130718 tpd src/axiom-website/patches.html 20130718.01.tpd.patch
20130718 tpd src/input/rich1b.input
20130718 tpd src/input/rich1a.input
20130718 tpd src/input/Makefile
20130718 tpd src/interp/Makefile
20130715 tpd src/axiom-website/patches.html 20130715.01.tpd.patch
20130715 tpd buglist add kamke4, kamke6 missing bug
20130715 tpd src/axiom-website/CATS/index.html updated
20130715 tpd src/axiom-website/CATS/charlwood.input added
20130715 tpd src/axiom-website/CATS/charlwood.input.pdf added
20130715 tpd src/axiom-website/CATS/kamke6.input fixed
20130715 tpd src/axiom-website/CATS/kamke4.input fixed
20130715 tpd src/axiom-website/CATS/kamke0.txt added
20130715 tpd src/axiom-website/CATS/kamke1.txt added
20130715 tpd src/axiom-website/CATS/kamke2.txt added
20130715 tpd src/axiom-website/CATS/kamke3.txt added
20130715 tpd src/axiom-website/CATS/kamke5.txt added
20130715 tpd src/axiom-website/CATS/kamke6.txt added
20130715 tpd src/axiom-website/CATS/kamke7.txt added
20130715 tpd src/input/Makefile add charlwood
20130715 tpd src/input/charlwood.input added
20130714 tpd src/axiom-website/patches.html 20130714.02.tpd.patch
20140714 tpd src/input/Makefile charlwood.input added
20140714 tpd src/input/charlwood.input added
20130714 tpd src/axiom-website/patches.html 20130714.01.tpd.patch
20130714 tpd src/axiom-website/CATS/axiom.sty added
20130714 tpd src/axiom-website/CATS/index.html added
20130714 tpd src/axiom-website/CATS/richalgebraic000-099.input added
20130714 tpd src/axiom-website/CATS/richalgebraic000-099.input.pdf added
20130714 tpd src/axiom-website/CATS/richalgebraic100-199.input added
20130714 tpd src/axiom-website/CATS/richalgebraic100-199.input.pdf added
20130714 tpd src/axiom-website/CATS/richalgebraic200-299.input added
20130714 tpd src/axiom-website/CATS/richalgebraic200-299.input.pdf added
20130714 tpd src/axiom-website/CATS/richalgebraic300-399.input added
20130714 tpd src/axiom-website/CATS/richalgebraic300-399.input.pdf added
20130714 tpd src/axiom-website/CATS/richalgebraic400-461.input added
20130714 tpd src/axiom-website/CATS/richalgebraic400-461.input.pdf added
20130714 tpd src/axiom-website/CATS/richerror000-078.input added
20130714 tpd src/axiom-website/CATS/richerror000-078.input.pdf added
20130714 tpd src/axiom-website/CATS/richexponential.input added
20130714 tpd src/axiom-website/CATS/richexponential.input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper000-099.input added
20130714 tpd src/axiom-website/CATS/richhyper000-099.input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper100-199,input added
20130714 tpd src/axiom-website/CATS/richhyper100-199,input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper100-199.input added
20130714 tpd src/axiom-website/CATS/richhyper100-199.input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper1000-1098.input added
20130714 tpd src/axiom-website/CATS/richhyper1000-1098.input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper200-299.input added
20130714 tpd src/axiom-website/CATS/richhyper200-299.input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper300-399.input added
20130714 tpd src/axiom-website/CATS/richhyper300-399.input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper400-499.input added
20130714 tpd src/axiom-website/CATS/richhyper400-499.input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper500-599.input added
20130714 tpd src/axiom-website/CATS/richhyper500-599.input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper600-699.input added
20130714 tpd src/axiom-website/CATS/richhyper600-699.input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper700-799.input added
20130714 tpd src/axiom-website/CATS/richhyper700-799.input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper800-899.input added
20130714 tpd src/axiom-website/CATS/richhyper800-899.input.pdf added
20130714 tpd src/axiom-website/CATS/richhyper900-999.input added
20130714 tpd src/axiom-website/CATS/richhyper900-999.input.pdf added
20130714 tpd src/axiom-website/CATS/richintfunc000-032.input added
20130714 tpd src/axiom-website/CATS/richintfunc000-032.input.pdf added
20130714 tpd src/axiom-website/CATS/richinvhyper000-099.input added
20130714 tpd src/axiom-website/CATS/richinvhyper000-099.input.pdf added
20130714 tpd src/axiom-website/CATS/richinvhyper100-199.input added
20130714 tpd src/axiom-website/CATS/richinvhyper100-199.input.pdf added
20130714 tpd src/axiom-website/CATS/richinvhyper200-296.input added
20130714 tpd src/axiom-website/CATS/richinvhyper200-296.input.pdf added
20130714 tpd src/axiom-website/CATS/richinvtrig000-092.input added
20130714 tpd src/axiom-website/CATS/richinvtrig000-092.input.pdf added
20130714 tpd src/axiom-website/CATS/richlog000-099.input added
20130714 tpd src/axiom-website/CATS/richlog000-099.input.pdf added
20130714 tpd src/axiom-website/CATS/richlog100-199.input added
20130714 tpd src/axiom-website/CATS/richlog100-199.input.pdf added
20130714 tpd src/axiom-website/CATS/richlog200-299.input added
20130714 tpd src/axiom-website/CATS/richlog200-299.input.pdf added
20130714 tpd src/axiom-website/CATS/richlog300-391.input added
20130714 tpd src/axiom-website/CATS/richlog300-391.input.pdf added
20130714 tpd src/axiom-website/CATS/richrational.input added
20130714 tpd src/axiom-website/CATS/richrational.input.pdf added
20130714 tpd src/axiom-website/CATS/richspecfunc000-022.input added
20130714 tpd src/axiom-website/CATS/richspecfunc000-022.input.pdf added
20130714 tpd src/axiom-website/CATS/richtrig000-099.input added
20130714 tpd src/axiom-website/CATS/richtrig000-099.input.pdf added
20130714 tpd src/axiom-website/CATS/richtrig100-199.input added
20130714 tpd src/axiom-website/CATS/richtrig100-199.input.pdf added
20130714 tpd src/axiom-website/CATS/richtrig200-299.input added
20130714 tpd src/axiom-website/CATS/richtrig200-299.input.pdf added
20130714 tpd src/axiom-website/CATS/richtrig300-399.input added
20130714 tpd src/axiom-website/CATS/richtrig300-399.input.pdf added
20130714 tpd src/axiom-website/CATS/richtrig400-499.input added
20130714 tpd src/axiom-website/CATS/richtrig400-499.input.pdf added
20130714 tpd src/axiom-website/CATS/richtrig500-599.input added
20130714 tpd src/axiom-website/CATS/richtrig500-599.input.pdf added
20130714 tpd src/axiom-website/CATS/richtrig600-699.input added
20130714 tpd src/axiom-website/CATS/richtrig600-699.input.pdf added
20130714 tpd src/axiom-website/CATS/richtrig700-799.input added
20130714 tpd src/axiom-website/CATS/richtrig700-799.input.pdf added
20130714 tpd src/axiom-website/CATS/richtrig800-899.input added
20130714 tpd src/axiom-website/CATS/richtrig800-899.input.pdf added
20130714 tpd src/axiom-website/CATS/richtrig900-920.input added
20130714 tpd src/axiom-website/CATS/richtrig900-920.input.pdf added
20130702 tpd src/axiom-website/patches.html 20130702.01.tpd.patch
20130702 tpd books/bookvolbib add Griesmer ref, sort items
20130701 tpd src/axiom-website/patches.html 20130701.01.tpd.patch
20130701 tpd src/interp/Makefile make cleanup
20130630 tpd src/axiom-website/patches.html 20130630.01.tpd.patch
20130630 tpd src/interp/Makefile make cleanup
20130630 tpd src/algebra/Makefile make cleanup
20130630 tpd Makefile make cleanup
20130625 tpd src/axiom-website/patches.html 20130625.02.tpd.patch
20130625 tpd src/interp/br-con.lisp move code to bookvol5
20130625 tpd books/bookvol5 move code from br-con.lisp
20130625 tpd src/axiom-website/patches.html 20130625.01.tpd.patch
20130625 tpd src/sman/Makefile cleanup
20130625 tpd src/share/Makefile cleanup
20130625 tpd src/scripts/Makefile cleanup
20130625 tpd src/lib/Makefile cleanup
20130625 tpd src/interp/br-con.lisp cleanup
20130625 tpd src/interp/Makefile cleanup
20130625 tpd src/input/Makefile cleanup
20130625 tpd src/etc/Makefile cleanup
20130625 tpd src/doc/Makefile cleanup
20130625 tpd src/clef/Makefile cleanup
20130625 tpd src/booklets/Makefile cleanup
20130625 tpd src/algebra/Makefile cleanup
20130625 tpd books/tangle.lisp cleanup
20130625 tpd books/bookvol8 cleanup
20130625 tpd books/bookvol5 cleanup
20130625 tpd books/Makefile cleanup
20130623 tpd src/axiom-website/patches.html 20130623.01.tpd.patch
20130623 tpd src/interp/br-con.lisp move code to bookvol5
20130623 tpd books/bookvol5 move code from br-con.lisp
20130623 tpd buglist
20130622 tpd src/axiom-website/patches.html 20130622.01.tpd.patch
20130622 tpd src/interp/br-con.lisp move code to bookvol5
20130622 tpd books/bookvol5 move code from br-con.lisp
20130621 tpd src/axiom-website/patches.html 20130621.01.tpd.patch
20130621 tpd src/interp/br-con.lisp move code to bookvol5
20130621 tpd books/bookvol5 move code from br-con.lisp
20130618 tpd src/axiom-website/patches.html 20130618.01.tpd.patch
20130618 tpd src/interp/br-con.lisp move code to bookvol5
20130618 tpd books/bookvol5 move code from br-con.lisp
20130613 tpd src/axiom-website/patches.html 20130613.02.tpd.patch
20130613 tpd src/interp/br-con.lisp move code to bookvol5
20130613 tpd books/bookvol5 move code from br-con.lisp
20130613 tpd src/axiom-website/patches.html 20130613.01.tpd.patch
20130613 tpd books/bookvol8.1 add crc test section 2.8, 2.9
20130613 tpd books/ps/v81crcp56-2.8.1.1-3.eps added
20130613 tpd books/ps/v81crcp56-2.8.2.1-3.eps added
20130613 tpd books/ps/v81crcp56-2.8.3.1-3.eps added
20130613 tpd books/ps/v81crcp56-2.8.4.1-3.eps added
20130613 tpd books/ps/v81crcp56-2.8.5.1-3.eps added
20130613 tpd books/ps/v81crcp56-2.8.6.1-3.eps added
20130613 tpd books/ps/v81crcp58-2.9.1.1-3.eps added
20130613 tpd books/ps/v81crcp58-2.9.4.1-3.eps added
20130613 tpd books/ps/v81crcp58-2.9.5.1-3.eps added
20130613 tpd books/ps/v81crcp58-2.9.6.1-3.eps added
20130613 tpd books/ps/v81crcp60-2.9.10.1-3.eps added
20130613 tpd books/ps/v81crcp60-2.9.11.1-6.eps added
20130613 tpd books/ps/v81crcp60-2.9.9.1-3.eps added
20130609 tpd src/axiom-website/patches.html 20130609.03.tpd.patch
20130609 tpd books/bookvol8.1 add crc test section 2.5, 2.6, 2.7
20130609 tpd books/ps/v81crcp50-2.5.1.1-3.eps added
20130609 tpd books/ps/v81crcp50-2.5.2.1-3.eps added
20130609 tpd books/ps/v81crcp50-2.5.3.1-3.eps added
20130609 tpd books/ps/v81crcp50-2.5.4.1-3.eps added
20130609 tpd books/ps/v81crcp50-2.5.5.1-3.eps added
20130609 tpd books/ps/v81crcp50-2.5.6.1-3.eps added
20130609 tpd books/ps/v81crcp52-2.6.1.1-3.eps added
20130609 tpd books/ps/v81crcp52-2.6.2.1-3.eps added
20130609 tpd books/ps/v81crcp52-2.6.3.1-3.eps added
20130609 tpd books/ps/v81crcp52-2.6.4.1-3.eps added
20130609 tpd books/ps/v81crcp52-2.6.5.1-3.eps added
20130609 tpd books/ps/v81crcp52-2.6.6.1-3.eps added
20130609 tpd books/ps/v81crcp54-2.7.1.1-3.eps added
20130609 tpd books/ps/v81crcp54-2.7.2.1-3.eps added
20130609 tpd books/ps/v81crcp54-2.7.3.1-3.eps added
20130609 tpd books/ps/v81crcp54-2.7.4.1-3.eps added
20130609 tpd books/ps/v81crcp54-2.7.5.1-3.eps added
20130609 tpd books/ps/v81crcp54-2.7.6.1-3.eps added
20130609 tpd src/axiom-website/patches.html 20130609.02.tpd.patch
20130609 tpd buglist add 7244, 7245
20130609 tpd books/bookvol8.1 add crc test section 2.4
20130609 tpd books/ps/v81crcp46-2.4.1.1-3.eps added
20130609 tpd books/ps/v81crcp46-2.4.2.1-3.eps added
20130609 tpd books/ps/v81crcp46-2.4.3.1-3.eps added
20130609 tpd books/ps/v81crcp46-2.4.4.1-3.eps added
20130609 tpd books/ps/v81crcp48-2.4.5.1-3.eps added
20130609 tpd books/ps/v81crcp48-2.4.6.1-3.eps added
20130609 tpd books/ps/v81crcp48-2.4.7.1-3.eps added
20130609 tpd books/ps/v81crcp48-2.4.8.1-3.eps added
20130609 tpd src/axiom-website/patches.html 20130609.01.tpd.patch
20130609 tpd books/bookvol8.1 add crc test section 2.3
20130609 tpd books/ps/v81crcp42-2.3.1.1-3.eps added
20130609 tpd books/ps/v81crcp42-2.3.2.1-3.eps added
20130609 tpd books/ps/v81crcp42-2.3.3.1-3.eps added
20130609 tpd books/ps/v81crcp42-2.3.4.1-3.eps added
20130609 tpd books/ps/v81crcp44-2.3.5.1-3.eps added
20130609 tpd books/ps/v81crcp44-2.3.6.1-3.eps added
20130609 tpd books/ps/v81crcp44-2.3.7.1-3.eps added
20130609 tpd books/ps/v81crcp44-2.3.8.1-3.eps added
20130608 tpd src/axiom-website/patches.html 20130608.01.tpd.patch
20130608 tpd books/bookvol8.1 add new crc test graphs
20130608 tpd books/ps/v81crcp26-2.1.1.1-3.eps added
20130608 tpd books/ps/v81crcp26-2.1.1.4-6.eps added
20130608 tpd books/ps/v81crcp26-2.1.2.1-3.eps added
20130608 tpd books/ps/v81crcp26-2.1.2.4-6.eps added
20130608 tpd books/ps/v81crcp28-2.1.3.1-6.eps added
20130608 tpd books/ps/v81crcp28-2.1.3.7-10.eps added
20130608 tpd books/ps/v81crcp28-2.1.4.1-6.eps added
20130608 tpd books/ps/v81crcp28-2.1.4.7-10.eps added
20130608 tpd books/ps/v81crcp30-2.2.1.1-3.eps added
20130608 tpd books/ps/v81crcp30-2.2.2.1-3.eps added
20130608 tpd books/ps/v81crcp30-2.2.3.1-3.eps added
20130608 tpd books/ps/v81crcp30-2.2.4.1-3.eps added
20130608 tpd books/ps/v81crcp30-2.2.5.1-3.eps added
20130608 tpd books/ps/v81crcp30-2.2.6.1-3.eps added
20130608 tpd books/ps/v81crcp34-2.2.13.1-3.eps added
20130608 tpd books/ps/v81crcp34-2.2.14.1-3.eps added
20130608 tpd books/ps/v81crcp34-2.2.15.1-3.eps added
20130608 tpd books/ps/v81crcp34-2.2.16.1-3.eps added
20130608 tpd books/ps/v81crcp34-2.2.17.1-3.eps added
20130608 tpd books/ps/v81crcp34-2.2.18.1-3.eps added
20130608 tpd books/ps/v81crcp36-2.2.19.1-3.eps added
20130608 tpd books/ps/v81crcp36-2.2.20.1-3.eps added
20130608 tpd books/ps/v81crcp36-2.2.21.1-3.eps added
20130608 tpd books/ps/v81crcp36-2.2.22.1-3.eps added
20130608 tpd books/ps/v81crcp36-2.2.23.1-3.eps added
20130608 tpd books/ps/v81crcp36-2.2.24.1-3.eps added
20130608 tpd books/ps/v81crcp38-2.2.25.1-3.eps added
20130608 tpd books/ps/v81crcp38-2.2.26.1-3.eps added
20130608 tpd books/ps/v81crcp38-2.2.27.1-3.eps added
20130608 tpd books/ps/v81crcp38-2.2.28.1-3.eps added
20130608 tpd books/ps/v81crcp38-2.2.29.1-3.eps added
20130608 tpd books/ps/v81crcp38-2.2.30.1-3.eps added
20130608 tpd books/ps/v81crcp40-2.2.31.1-3.eps added
20130608 tpd books/ps/v81crcp40-2.2.32.1-3.eps added
20130608 tpd books/ps/v81crcp40-2.2.33.1-3.eps added
20130607 tpd src/axiom-website/patches.html 20130607.04.tpd.patch
20130607 tpd books/Makefile fix broken sed regular expression
20130607 tpd src/axiom-website/patches.html 20130607.03.tpd.patch
20130607 tpd src/interp/br-con.lisp move functions to bookvol5
20130607 tpd books/bookvol5 move functions from br-con.lisp
20130607 tpd src/axiom-website/patches.html 20130607.02.tpd.patch
20130607 tpd books/bookvol0 fix typos
20130607 tpd books/bookvol1 fix typos
20130607 tpd books/bookvol2 fix typos
20130607 tpd books/bookvol4 fix typos
20130607 tpd src/axiom-website/patches.html 20130607.01.tpd.patch
20130607 tpd books/ps/v81crcp20-2.2.2.1-3.eps added
20130607 tpd books/ps/v81crcp20-2.2.3.1-3.eps added
20130607 tpd books/ps/v81crcp27-2.1.1.1-3.eps added
20130607 tpd books/ps/v81crcp27-2.1.1.4-6.eps added
20130607 tpd books/ps/v81crcp27-2.1.2.1-3.eps added
20130607 tpd books/ps/v81crcp27-2.1.2.4-6.eps added
20130607 tpd books/ps/v81crcp28-2.1.3.1-6.eps added
20130607 tpd books/ps/v81crcp28-2.1.3.7-10.eps added
20130607 tpd books/ps/v81crcp28-2.1.4.1-6.eps added
20130607 tpd books/ps/v81crcp28-2.1.4.7-10.eps added
20130607 tpd books/ps/v81crcp30-2.2.1.1-3.eps added
20130607 tpd books/ps/v81crcp30-2.2.2.1-3.eps added
20130607 tpd books/ps/v81crcp30-2.2.3.1-3.eps added
20130607 tpd books/ps/v81crcp30-2.2.4.1-3.eps added
20130607 tpd books/ps/v81crcp30-2.2.5.1-3.eps added
20130607 tpd books/ps/v81crcp30-2.2.6.1-3.eps added
20130607 tpd books/ps/v81crcp32-2.2.10.1-3.eps added
20130607 tpd books/ps/v81crcp32-2.2.11.1-3.eps added
20130607 tpd books/ps/v81crcp32-2.2.12.1-3.eps added
20130607 tpd books/ps/v81crcp32-2.2.7.1-3.eps added
20130607 tpd books/ps/v81crcp32-2.2.8.1-3.eps added
20130607 tpd books/ps/v81crcp32-2.2.9.1-3.eps added
20130607 tpd books/ps/v81crcp34-2.2.13.1-3.eps added
20130607 tpd books/ps/v81crcp34-2.2.14.1-3.eps added
20130607 tpd books/ps/v81crcp34-2.2.15.1-3.eps added
20130607 tpd books/ps/v81crcp34-2.2.16.1-3.eps added
20130607 tpd buglist add 7242/7243
20130607 tpd books/bookvolbib add crc reference
20130607 tpd books/bookvol8.1 add crc test cases
20130607 tpd books/bookvol8 remove crc test cases
20130531 tpd src/axiom-website/patches.html 20130531.01.tpd.patch
20130531 tpd src/interp/br-con.lisp move code to bookvol5
20130531 tpd books/bookvol5 rewrite code from br-con
20130529 jzc src/axiom-website/patches.html 20130529.01.jzc.patch
20130529 jzc books/bookvol4 fix typos
20130529 jzc books/bookvol2 fix typos
20130529 jzc books/bookvol1 fix typos
20130529 jzc books/bookvol0 fix typos
20130528 tpd src/axiom-website/patches.html 20130528.01.tpd.patch
20130528 tpd src/interp/br-con.lisp rewrite functions into bookvol5
20130528 tpd src/interp/util.lisp remove autoload trigger functions
20130528 tpd books/bookvol10.5 standardize the table of contents
20130528 tpd books/bookvol10.4 standardize the table of contents
20130528 tpd books/bookvol10.3 standardize the table of contents
20130528 tpd books/bookvol10.2 standardize the table of contents
20130528 tpd books/bookvol10.1 standardize the table of contents
20130528 tpd books/bookvol10 standardize the table of contents
20130528 tpd books/bookvol9 standardize the table of contents
20130528 tpd books/bookvol8.1 standardize the table of contents
20130528 tpd books/bookvol8 standardize the table of contents
20130528 tpd books/bookvol7.1 standardize the table of contents
20130528 tpd books/bookvol7 standardize the table of contents
20130528 tpd books/bookvol6 standardize the table of contents
20130528 tpd books/bookvol5 standardize the table of contents
20130528 tpd books/bookvol4 standardize the table of contents
20130528 tpd books/bookvol3 standardize the table of contents
20130528 tpd books/bookvol2 standardize the table of contents
20130528 tpd books/bookvol1 standardize the table of contents
20130528 tpd books/bookvol0 standardize the table of contents
20130528 tpd books/bookheader.tex standardize the table of contents
20130528 tpd books/Makefile standardize the table of contents
20130526 tpd src/axiom-website/patches.html 20130526.03.tpd.patch
20130526 tpd src/interp/br-con.lisp incremental rewrite of br-con.lisp
20130526 tpd books/bookvol5 incremental rewrite of br-con.lisp
20130526 tpd src/axiom-website/patches.html 20130526.02.tpd.patch
20130526 tpd src/interp/regress.lisp improve diff output
20130526 tpd src/axiom-website/patches.html 20130526.01.tpd.patch
20130526 tpd src/algebra/Makefile fix failing test cases
20130526 tpd books/bookvol10.4 fix failing test cases
20130526 tpd books/bookvol10.3 fix failing test cases
20130526 tpd books/bookvol10.2 fix failing test cases
20130522 tpd src/axiom-website/patches.html 20130522.02.tpd.patch
20130522 tpd buglist remove error message for deleted files
20130522 tpd src/axiom-website/patches.html 20130522.01.tpd.patch
20130522 tpd src/Makefile fix {OUT} bug
20130513 tpd src/axiom-website/patches.html 20130513.01.tpd.patch
20130513 tpd src/interp/util.lisp remove autoload of ht-util
20130513 tpd src/interp/Makefile remove autoload of ht-util
20130513 tpd books/bookvol5 merge ht-util.lisp
20130513 tpd src/interp/ht-util.lisp deleted, merged with bookvol5
20130512 tpd src/axiom-website/patches.html 20130512.01.tpd.patch
20130512 tpd src/share/doc/hypertex/pages/util.ht deleted, unused
20130511 tpd src/axiom-website/patches.html 20130511.02.tpd.patch
20130511 tpd buglist remove dead items
20130511 tpd src/axiom-website/patches.html 20130511.01.tpd.patch
20130511 tpd src/doc/axiom.bib removed
20130511 tpd src/doc/Makefile remove src/doc/axiom.bib
20130508 exm src/axiom-website/patches.html 20130508.02.exm.patch
20130508 exm books/axbook.tgz fix sinCosExpandRules
20130508 exm src/axiom-website/patches.html 20130508.01.exm.patch
20130508 exm src/axiom-website/books.html add 8.1, 10.5, bibliography
20130501 tpd src/axiom-website/patches.html 20130501.01.tpd.patch
20130501 tpd books/bookvol10.1 use bookheader.tex
20130501 tpd books/bookvol10 use bookheader.tex
20130501 tpd books/bookvolbib use bookheader.tex
20130501 tpd books/bookvol8.1 remove Makefile residue
20130430 tpd src/axiom-website/patches.html 20130430.01.tpd.patch
20130430 tpd src/Makefile handle special case files for bookvol11
20130430 tpd src/algebra/Makefile add fastxhtml extraction call
20130430 tpd books/tangle.lisp add fastxhtml for extraction from bookvol11
20130430 tpd books/bookvol11 use latex chunking, remove Makefile
20130430 tpd books/Makefile use latex chunking for all books
20130430 tpd Makefile remove Makefile from bookvol11
20130429 tpd src/axiom-website/patches.html 20130429.02.tpd.patch
20130429 tpd books/bookvol8 use bookheader.tex
20130429 tpd books/bookvol7.1 use bookheader.tex
20130429 tpd books/bookvol1 use bookheader.tex
20130429 tpd src/axiom-website/patches.html 20130429.01.tpd.patch
20130429 tpd books/bookvol8 convert bookvol8 from noweb to chunks
20130429 tpd src/Makefile convert bookvol8 from noweb to chunks
20130429 tpd books/Makefile convert bookvol8 from noweb to chunks
20130428 tpd src/axiom-website/patches.html 20130428.04.tpd.patch
20130428 tpd src/input/cherry.input annotate the integration routines
20130428 tpd buglist add bug 7241, fix the integration routines
20130428 tpd readme add Edi Meier
20130428 tpd src/axiom-website/patches.html 20130428.03.tpd.patch
20130428 tpd src/doc/axiom.sty pick up additional macros
20130428 tpd books/bookvol9 use bookheader.tex
20130428 tpd books/bookvol7 use bookheader.tex
20130428 tpd books/bookvol6 use bookheader.tex
20130428 tpd books/bookvol5 use bookheader.tex
20130428 tpd books/bookvol4 use bookheader.tex
20130428 tpd books/bookvol3 use bookheader.tex
20130428 tpd books/bookvol2 use bookheader.tex
20130428 tpd books/bookvol12 use bookheader.tex
20130428 tpd books/bookvol10.5 use bookheader.tex
20130428 tpd books/bookvol10.4 use bookheader.tex
20130428 tpd books/bookvol10.3 use bookheader.tex
20130428 tpd books/bookvol10.2 use bookheader.tex
20130428 tpd books/bookvol0 use bookheader.tex
20130428 tpd books/bookheader.tex generalize for other books
20130428 tpd books/Makefile use bookheader.tex
20130428 tpd src/axiom-website/patches.html 20130428.02.tpd.patch
20130428 tpd books/bookvol11 use bookheader.tex
20130428 tpd books/Makefile handle bookheader.tex
20130428 tpd src/doc/axiom.sty collect axiom's standard macros
20130428 tpd books/bookheader.tex standardize the book headers
20130428 exm src/axiom-website/patches.html 20130428.01.exm.patch
20130428 exm faq fix mailing list links
20130428 exm src/axiom-website/community.html fix mailing list links
20130438 exm src/doc/booklet.c.pamphlet fix mailing list links
20130428 exm books/bookvol*.pamphlet credit list update
20130438 exm readme add Edi Meier
20130428 exm "Edi Meier" <[email protected]>
20130426 tpd src/axiom-website/patches.html 20130426.01.tpd.patch
20130426 tpd src/share/algebra/dependents.daase/dependents.daase/index.kaf del
20130426 tpd src/share/algebra/users.daase/users.daase/index.kaf deleted
20130426 tpd src/share/algebra/operation.daase add Attributes as Categories
20130426 tpd src/share/algebra/interp.daase add Attributes as Categories
20130426 tpd src/share/algebra/compress.daase add Attributes as Categories
20130426 tpd src/share/algebra/category.daase add Attributes as Categories
20130426 tpd src/share/algebra/browse.daase add Attributes as Categories
20130426 tpd src/interp/temp.text deleted
20130426 tpd src/algebra/libdb.text add Attributes as Categories
20130426 tpd src/algebra/Makefile.pamphlet
20130426 tpd books/ps/v102unitsknownattribute.eps added
20130426 tpd books/ps/v102shallowlymutableattribute.eps added
20130426 tpd books/ps/v102rightunitaryattribute.eps added
20130426 tpd books/ps/v102partiallyorderedsetattribute.eps added
20130426 tpd books/ps/v102nullsquareattribute.eps added
20130426 tpd books/ps/v102nozerodivisorsattribute.eps added
20130426 tpd books/ps/v102notherianattribute.eps added
20130426 tpd books/ps/v102multiplicativevaluationattribute.eps added
20130426 tpd books/ps/v102leftunitaryattribute.eps added
20130426 tpd books/ps/v102lazyrepresentationattribute.eps added
20130426 tpd books/ps/v102jacobiidentityattribute.eps added
20130426 tpd books/ps/v102finiteaggregateattribute.eps added
20130426 tpd books/ps/v102commutativestarattribute.eps added
20130426 tpd books/ps/v102centralattribute.eps added
20130426 tpd books/ps/v102canonicalunitnormalattribute.eps added
20130426 tpd books/ps/v102canonicalclosedattribute.eps added
20130426 tpd books/ps/v102canonicalattribute.eps added
20130426 tpd books/ps/v102arbitraryprecisionattribute.eps added
20130426 tpd books/ps/v102arbitraryexponentattribute.eps added
20130426 tpd books/ps/v102approximateattribute.eps added
20130426 tpd books/ps/v102additivevaluationattribute.eps added
20130426 tpd books/bookvol5 add Attributes as Categories
20130426 tpd books/bookvol10.2 add Attributes as Categories
20130423 tpd src/axiom-website/patches.html 20130423.02.tpd.patch
20130423 tpd Makefile make clean removes all cruft
20130423 tpd src/axiom-website/patches.html 20130423.01.tpd.patch
20130423 tpd books/ps/v102compar.eps add Comparable
20130423 tpd src/algebra/Makefile add Comparable
20130423 tpd books/bookvol5 add Comparable
20130423 tpd books/bookvol10.2 add Comparable
20130422 tpd src/axiom-website/patches.html 20130422.01.tpd.patch
20130422 tpd src/share/algebra/users.daase/users.daase/index.kaf FINITE
20130422 tpd src/share/algebra/operation.daase add enumerate to FINITE
20130422 tpd src/share/algebra/interp.daase add enumerate to FINITE
20130422 tpd src/share/algebra/dependents.daase/dependents.daase/index.kaf
20130422 tpd src/share/algebra/compress.daase add enumerate to FINITE
20130422 tpd src/share/algebra/category.daase add enumerate to FINITE
20130422 tpd src/share/algebra/browse.daase add enumerate to FINITE
20130422 tpd src/algebra/Makefile add FINITE-
20130422 tpd books/bookvol10.2 add enumerate to FINITE
20130418 jzc src/axiom-website/patches.html 20130418.01.jzc.patch
20130418 jzc books/bookvol0 fix Jenks book format issues
20130414 tpd src/axiom-website/patches.html 20130414.01.tpd.patch
20130414 tpd src/axiom-website/documentation.html add quote
20130411 tpd src/axiom-website/patches.html 20130411.01.tpd.patch
20130411 tpd src/interp/util.lisp remove bc-matrix autoload triggers
20130411 tpd src/interp/debugsys.lisp delete removed files
20130411 tpd src/interp/Makefile remove bc-matrix
20130411 tpd src/doc/axiom.bib remove bc-matrix
20130411 tpd books/ps/v5bccomplexlimit.eps added
20130411 tpd books/ps/v5bclinearsolveeqns.eps added
20130411 tpd books/ps/v5bcdefiniteintegrate.eps added
20130411 tpd books/ps/v5bclinearsolvematrix1.eps added
20130411 tpd books/ps/v5bcdifferentiate.eps added
20130411 tpd books/ps/v5bclinearsolvematrixinhomo.eps added
20130411 tpd books/ps/v5bcdraw2dfun.eps added
20130411 tpd books/ps/v5bcpuiseuxseries.eps added
20130411 tpd books/ps/v5bcdraw2dpar.eps added
20130411 tpd books/ps/v5bcreadmatrix.eps added
20130411 tpd books/ps/v5bcdraw2dsolve.eps added
20130411 tpd books/ps/v5bcreallimit.eps added
20130411 tpd books/ps/v5bcdraw3dfun.eps added
20130411 tpd books/ps/v5bcreallimitgen.eps added
20130411 tpd books/ps/v5bcdraw3dpar1.eps added
20130411 tpd books/ps/v5bcseriesbyformula.eps added
20130411 tpd books/ps/v5bcdraw3dpar.eps added
20130411 tpd books/ps/v5bcseries.eps added
20130411 tpd books/ps/v5bcdraw.eps added
20130411 tpd books/ps/v5bcseriesexpansion.eps added
20130411 tpd books/ps/v5bcindefiniteintegrate.eps added
20130411 tpd books/ps/v5bcsolve.eps added
20130411 tpd books/ps/v5bcinputexplicitmatrix.eps added
20130411 tpd books/ps/v5bcsum.eps added
20130411 tpd books/ps/v5bcinputmatrixbyformula.eps added
20130411 tpd books/ps/v5bcsystemsolve.eps added
20130411 tpd books/ps/v5bclaurentseries.eps added
20130411 tpd books/ps/v5bctaylorseries.eps added
20130411 tpd books/ps/v5bclimit.eps added
20130411 tpd books/ps/v5bclinearsolve.eps added
20130411 tpd books/bookvol5 add bc-matrix code
20130411 tpd src/interp/bc-matrix removed
20130411 tpd books/bookvol7 remove bibliography
20130411 tpd books/bookvol9 fix paren balance
20130411 tpd books/bookvolbib add [Kau08]
20130411 tpd books/bookvol4 remove autoload files
20130411 tpd add radicalSolve test cases from [CCxx]
20130411 tpd buglist add todo items
20130331 tpd src/axiom-website/patches.html 20130331.02.tpd.patch
20130331 tpd books/bookvol10.4 fix OUT.spad warning (bug 329)
20130331 tpd buglist fix bug 329, add todo 330
20130331 tpd src/algebra/Makefile update graph info for OUT
20130331 tpd src/axiom-website/patches.html 20130331.01.tpd.patch
20130331 tpd src/input/richalgebraic100-199.input fix failures
20130330 tpd src/axiom-website/patches.html 20130330.02.tpd.patch
20130330 tpd books/bookvol0 fix typo
20130330 tpd src/axiom-website/patches.html 20130330.01.tpd.patch
20130330 tpd readme update credits
20130330 tpd books/bookvolbib update credits
20130330 tpd books/bookvol12 update credits
20130330 tpd books/bookvol11 update credits
20130330 tpd books/bookvol10.5 update credits
20130330 tpd books/bookvol10.4 update credits
20130330 tpd books/bookvol10.3 update credits
20130330 tpd books/bookvol10.2 update credits
20130330 tpd books/bookvol10.1 update credits
20130330 tpd books/bookvol10 update credits
20130330 tpd books/bookvol9 update credits
20130330 tpd books/bookvol8.1 update credits
20130330 tpd books/bookvol8 update credits
20130330 tpd books/bookvol7.1 update credits
20130330 tpd books/bookvol7 update credits
20130330 tpd books/bookvol6 update credits
20130330 tpd books/bookvol5 update credits
20130330 tpd books/bookvol4 update credits
20130330 tpd books/bookvol3 update credits
20130330 tpd books/bookvol2 update credits
20130330 tpd books/bookvol1 update credits
20130329 tpd src/axiom-website/patches.html 20130329.02.tpd.patch
20130329 tpd books/bookvol0 fix typo
20130329 tpd src/axiom-website/patches.html 20130329.01.tpd.patch
20130329 tpd books/ps/23dcola.eps added, removed books/ps/23dcola.ps
20130329 tpd books/ps/23dcolb.eps added, removed books/ps/23dcolb.ps
20130329 tpd books/ps/23dpal.eps added, removed books/ps/23dpal.ps
20130329 tpd books/ps/2d1vara.eps added, removed books/ps/2d1vara.ps
20130329 tpd books/ps/2d1varb.eps added, removed books/ps/2d1varb.ps
20130329 tpd books/ps/2d1vard.eps added, removed books/ps/2d1vard.ps
20130329 tpd books/ps/2dctrl.eps added, removed books/ps/2dctrl.ps
20130329 tpd books/ps/2doptad.eps added, removed books/ps/2doptad.ps
20130329 tpd books/ps/2doptcp.eps added, removed books/ps/2doptcp.ps
20130329 tpd books/ps/2doptcpr.eps added, removed books/ps/2doptcpr.ps
20130329 tpd books/ps/2doptcvc.eps added, removed books/ps/2doptcvc.ps
20130329 tpd books/ps/2doptplr.eps added, removed books/ps/2doptplr.ps
20130329 tpd books/ps/2doptptc.eps added, removed books/ps/2doptptc.ps
20130329 tpd books/ps/2doptrga.eps added, removed books/ps/2doptrga.ps
20130329 tpd books/ps/2doptrgb.eps added, removed books/ps/2doptrgb.ps
20130329 tpd books/ps/2doptsc.eps added, removed books/ps/2doptsc.ps
20130329 tpd books/ps/2doptut.eps added, removed books/ps/2doptut.ps
20130329 tpd books/ps/2dpaca.eps added, removed books/ps/2dpaca.ps
20130329 tpd books/ps/2dppca.eps added, removed books/ps/2dppca.ps
20130329 tpd books/ps/2dppcb.eps added, removed books/ps/2dppcb.ps
20130329 tpd books/ps/2dppcc.eps added, removed books/ps/2dppcc.ps
20130329 tpd books/ps/2dppce.eps added, removed books/ps/2dppce.ps
20130329 tpd books/ps/3d2vara.eps added, removed books/ps/3d2vara.ps
20130329 tpd books/ps/3d2varb.eps added, removed books/ps/3d2varb.ps
20130329 tpd books/ps/3dbuilda.eps added, removed books/ps/3dbuilda.ps
20130329 tpd books/ps/3dbuildb.eps added, removed books/ps/3dbuildb.ps
20130329 tpd books/ps/3dctrl.eps added, removed books/ps/3dctrl.ps
20130329 tpd books/ps/3dgamma11.eps added, removed books/ps/3dgamma11.ps
20130329 tpd books/ps/3dmult1a.eps added, removed books/ps/3dmult1a.ps
20130329 tpd books/ps/3dmult1b.eps added, removed books/ps/3dmult1b.ps
20130329 tpd books/ps/3doptcf1.eps added, removed books/ps/3doptcf1.ps
20130329 tpd books/ps/3doptcf2.eps added, removed books/ps/3doptcf2.ps
20130329 tpd books/ps/3doptcf3.eps added, removed books/ps/3doptcf3.ps
20130329 tpd books/ps/3doptcrd.eps added, removed books/ps/3doptcrd.ps
20130329 tpd books/ps/3doptpts.eps added, removed books/ps/3doptpts.ps
20130329 tpd books/ps/3doptrad.eps added, removed books/ps/3doptrad.ps
20130329 tpd books/ps/3doptsty.eps added, removed books/ps/3doptsty.ps
20130329 tpd books/ps/3doptttl.eps added, removed books/ps/3doptttl.ps
20130329 tpd books/ps/3doptvb.eps added, removed books/ps/3doptvb.ps
20130329 tpd books/ps/3dpsa.eps added, removed books/ps/3dpsa.ps
20130329 tpd books/ps/3dpsb.eps added, removed books/ps/3dpsb.ps
20130329 tpd books/ps/3dpsca.eps added, removed books/ps/3dpsca.ps
20130329 tpd books/ps/3dpscb.eps added, removed books/ps/3dpscb.ps
20130329 tpd books/ps/arrow.eps added, removed books/ps/arrow.ps
20130329 tpd books/ps/arrowr.eps added, removed books/ps/arrowr.ps
20130329 tpd books/ps/bessel.eps added, removed books/ps/bessel.ps
20130329 tpd books/ps/bouquet.eps added, removed books/ps/bouquet.ps
20130329 tpd books/ps/cartcoord.eps added, removed books/ps/cartcoord.ps
20130329 tpd books/ps/clipgamma.eps added, removed books/ps/clipgamma.ps
20130329 tpd books/ps/compatan.eps added, removed books/ps/compatan.ps
20130329 tpd books/ps/compexp.eps added, removed books/ps/compexp.ps
20130329 tpd books/ps/compgamma.eps added
20130329 tpd books/ps/complexexp.eps added, removed books/ps/complexexp.ps
20130329 tpd books/ps/complexroot.eps added, removed books/ps/complexroot.ps
20130329 tpd books/ps/cylcoord.eps added, removed books/ps/cylcoord.ps
20130329 tpd books/ps/defcoord.eps added, removed books/ps/defcoord.ps
20130329 tpd books/ps/modbess.eps added, removed books/ps/modbess.ps
20130329 tpd books/ps/modbessc.eps added, removed books/ps/modbessc.ps
20130329 tpd books/ps/newmap.eps added, removed books/ps/newmap.ps
20130329 tpd books/ps/p449.eps added
20130329 tpd books/ps/realbeta.eps added, removed books/ps/realbeta.ps
20130329 tpd books/ps/ribbon1.eps added, removed books/ps/ribbon1.ps
20130329 tpd books/ps/ribbon2.eps added, removed books/ps/ribbon2.ps
20130329 tpd books/ps/ribbon2r.eps added, removed books/ps/ribbon2r.ps
20130329 tpd books/ps/ribbons.eps added, removed books/ps/ribbons.ps
20130329 tpd books/ps/ribbons2.eps added, removed books/ps/ribbons2.ps
20130329 tpd books/ps/ribbons2b.eps added, removed books/ps/ribbons2b.ps
20130329 tpd books/ps/ribbons5.eps added, removed books/ps/ribbons5.ps
20130329 tpd books/ps/vectorroot.eps added, removed books/ps/vectorroot.ps
20130329 tpd books/ps/vectorsin.eps added, removed books/ps/vectorsin.ps
20130329 tpd books/axbook.tgz fix typos
20130329 tpd books/bookvolbib add new reference
20130329 tpd books/bookvol0 add graphics, fix typos, add text
20130327 tpd src/axiom-website/patches.html 20130327.01.tpd.patch
20130327 tpd src/input/functioncode.input added
20130327 tpd src/input/Makefile add functioncode.input
20130326 tpd src/axiom-website/patches.html 20130326.01.tpd.patch
20130326 tpd v103elementaryfunctionsunivariatepuiseuxseries.ps renamed
20130326 tpd v103elementaryfunctionsunivariatelaurentseries.ps renamed
20130326 tpd books/bookvol10.3 move EFULS EFUPXS from package to domain
20130326 tpd books/bookvol10.4 move EFULS EFUPXS from package to domain
20130326 tpd buglist add bugs found in tests
20130326 tpd src/input/cmds.input fix failures
20130326 tpd src/input/complexfactor.input fix failures
20130326 tpd src/input/r20bugs.input fix failures
20130326 tpd src/input/richalgebraic000-099.input fix failures
20130326 tpd src/input/richalgebraic100-199.input fix failures
20130326 tpd src/input/richalgebraic400-461.input fix failures
20130326 tpd src/input/richhyper1000-1098.input fix failures
20130326 tpd src/input/richinvhyper000-099.input fix failures
20130326 tpd src/input/richlog300-391.input fix failures
20130326 tpd src/input/richtrig800-899.input fix failures
20130324 tpd src/axiom-website/patches.html 20130324.02.tpd.patch
20130324 tpd books/bookvolbib add references
20130324 jxb src/axiom-website/patches.html 20130324.01.jxb.patch
20130324 jxb src/input/Makefile add romanpolynomials.input
20130324 jxb src/input/romanpolynomials.input create POLY(ROMAN)
20130323 tpd src/axiom-website/patches.html 20130323.01.tpd.patch
20130323 tpd books/bookvolbib add references
20130321 tpd src/axiom-website/patches.html 20130321.01.tpd.patch
20130321 tpd books/ps/v104finitefieldfactorization.eps add FFFACTOR
20130321 tpd src/algebra/Makefile compile FiniteFieldFactorization
20130321 tpd books/bookvol5 expose FiniteFieldFactorization
20130321 tpd books/bookvol10.4 add FiniteFieldFactorization
20130320 tpd src/axiom-website/patches.html 20130320.01.tpd.patch
20130320 tpd src/input/richhyper200-299.input cleanup
20130320 tpd src/input/richhyper000-099.input cleanup
20130320 tpd books/bookvol10.4 cleanup
20130320 tpd books/bookvol10.3 cleanup
20130319 tpd src/axiom-website/patches.html 20130319.02.tpd.patch
20130319 tpd buglist fix 7236
20130319 tpd books/bookvol10.2 cleanup
20130319 tpd books/bookvol10.3 cleanup
20130319 tpd books/bookvol10.4 cleanup
20130319 tpd src/input/classtalk.input cleanup
20130319 tpd src/input/cmds.input cleanup
20130319 tpd src/input/dop.input cleanup
20130319 tpd src/input/en.input cleanup
20130319 tpd src/input/nonlinhomodiffeq.input cleanup
20130319 tpd src/input/paff.input cleanup
20130319 tpd src/input/paffexample.input cleanup
20130319 tpd src/input/r20bugs.input cleanup
20130319 tpd src/input/richhyper000-099.input cleanup
20130319 tpd src/input/richhyper100-199.input cleanup
20130319 tpd src/input/richhyper1000-1098.input cleanup
20130319 tpd src/input/richhyper200-299.input cleanup
20130319 tpd src/input/richhyper300-399.input cleanup
20130319 tpd src/input/richhyper400-499.input cleanup
20130319 tpd src/input/richhyper900-999.input cleanup
20130319 tpd src/input/richinvhyper000-099.input cleanup
20130319 tpd src/input/richinvhyper100-199.input cleanup
20130319 tpd src/input/richtrig000-099.input cleanup
20130319 tpd src/input/richtrig100-199.input cleanup
20130319 tpd src/axiom-website/patches.html 20130319.01.tpd.patch
20130319 tpd src/input/unittest2.input fix broken tests
20130319 tpd src/input/test.input fix broken tests
20130319 tpd src/input/schaum33.input fix broken tests
20130319 tpd src/input/schaum17.input fix broken tests
20130319 tpd src/input/schaum1.input fix broken tests
20130319 tpd src/input/richexponential.input fix broken tests
20130319 tpd src/input/richalgebraic200-299.input fix broken tests
20130319 tpd src/input/richalgebraic000-099.input fix broken tests
20130318 tpd src/axiom-website/patches.html 20130318.02.tpd.patch
20130318 tpd buglist fix typos
20130318 tpd books/bookvol10.3 fix typos
20130318 tpd books/bookvol10.2 fix typos
20130318 rxb src/axiom-website/patches.html 20130318.01.rxb.patch
20130318 rxb src/algebra/Makefile add MatrixManipulation
20130318 rxb books/bookvol5 expose MatrixManipulation, add Raoul Bourquin
20130318 rxb books/bookvol10.4 add MatrixManipulation, add Raoul Bourquin
20130318 rxb readme add Raoul Bourquin
20130318 rxb Raoul Bourquin
20130317 tpd src/axiom-website/patches.html 20130317.07.tpd.patch
20130317 tpd buglist fix multiple typos
20130317 tpd books/bookvol10.2 fix multiple typos
20130317 tpd src/axiom-website/patches.html 20130317.06.tpd.patch
20130317 tpd buglist REAL fix 40345
20130317 tpd books/bookvol10.2 REAL fix 40345
20130317 tpd src/axiom-website/patches.html 20130317.05.tpd.patch
20130317 tpd buglist ORDSET fix 40346
20130317 tpd books/bookvol10.2 ORDSET fix 40346
20130317 tpd src/axiom-website/patches.html 20130317.04.tpd.patch
20130317 tpd buglist OPTPROB fix 40347
20130317 tpd books/bookvol10.3 OPTPROB fix 40347
20130317 tpd src/axiom-website/patches.html 20130317.03.tpd.patch
20130317 tpd buglist MONAD fix 40350, add 7236
20130317 tpd books/bookvol10.2 MONAD fix 40350, add 7236
20130317 tpd src/axiom-website/patches.html 20130317.02.tpd.patch
20130317 tpd buglist MAPPKG1 fix 40351
20130317 tpd books/bookvol10.4 MAPPKG1 fix 40351
20130317 tpd src/axiom-website/patches.html 20130317.01.tpd.patch
20130317 tpd buglist AGG fixed 40355
20130317 tpd books/bookvol10.2 AGG fixed 40355
20130316 tpd src/axiom-website/patches.html 20130316.08.tpd.patch
20130316 tpd buglist PTRANFN fixed 40357
20130316 tpd books/bookvol10.2 PTRANFN fixed 40357
20130316 tpd src/axiom-website/patches.html 20130316.07.tpd.patch
20130316 tpd buglist MSYSCMD fix 40359
20130316 tpd books/bookvol10.4 MSYSCMD fix 40359
20130316 tpd src/axiom-website/patches.html 20130316.06.tpd.patch
20130316 tpd buglist ELTAB fix 40360
20130316 tpd books/bookvol10.4 ELTAB fix 40360
20130316 tpd src/axiom-website/patches.html 20130316.05.tpd.patch
20130316 tpd buglist SREGSET fix 50001
20130316 tpd books/bookvol10.4 SREGSET fix 50001
20130316 tpd src/axiom-website/patches.html 20130316.04.tpd.patch
20130316 tpd buglist ATTREG fix 40362
20130316 tpd books/bookvol10.4 ATTREG fix 40362
20130316 tpd src/axiom-website/patches.html 20130316.03.tpd.patch
20130316 tpd books/bookvol2 category theory notes
20130316 tpd src/axiom-website/patches.html 20130316.02.tpd.patch
20130316 tpd buglist SOLVERAD fix 40043
20130316 tpd books/bookvol10.4 SOLVERAD fix 40043
20130316 tpd src/axiom-website/patches.html 20130316.01.tpd.patch
20130316 tpd buglist CHAR fix 40022
20130316 tpd books/bookvol10.3 CHAR fix 40022
20130315 tpd src/axiom-website/patches.html 20130315.09.tpd.patch
20130315 tpd buglist CLAGG fixed 40021
20130315 tpd books/bookvol10.2 CLAGG fixed 40021
20130315 tpd src/axiom-website/patches.html 20130315.08.tpd.patch
20130315 tpd buglist DFLOAT fixed 40019
20130315 tpd books/bookvol10.3 DFLOAT fixed 40019
20130315 jzc src/axiom-website/patches.html 20130315.07.jzc.patch
20130315 jzc books/bookvol0 add linebreak on p988
20130315 tpd src/axiom-website/patches.html 20130315.06.tpd.patch
20130315 tpd changlog. fix jzc email address
20130315 tpd src/axiom-website/patches.html 20130315.05.tpd.patch
20130315 tpd buglist FPS fixed 40013
20130315 tpd books/bookvol10.3 FPS fixed 40013
20130315 tpd src/axiom-website/patches.html 20130315.04.tpd.patch
20130315 tpd buglist BLAS1 fixed 40304
20130315 tpd books/bookvol10.3 BLAS1 fixed 40304
20130315 tpd src/axiom-website/patches.html 20130315.03.tpd.patch
20130315 tpd buglist INBFF fixed 20465, add 20571
20130315 tpd books/bookvol10.3 INBFF fixed 20465, add 20571
20130315 tpd src/axiom-website/patches.html 20130315.02.tpd.patch
20130315 tpd buglist DFLOAT fix 20073, add 20570
20130315 tpd books/bookvol10.3 DFLOAT fix 20073, add 20570
20130315 tpd src/axiom-website/patches.html 20130315.01.tpd.patch
20130315 tpd buglist LIST fix 20063, add, add 20569
20130315 tpd books/bookvol10.3 LIST fix 20063, add, add 20569
20130314 tpd src/axiom-website/patches.html 20130314.11.tpd.patch
20130314 tpd books/bookvol2 Axiom and Category Theory chapter
20130314 tpd src/axiom-website/patches.html 20130314.10.tpd.patch
20130314 tpd buglist MLIFT fix 20001, add 20568
20130314 tpd books/bookvol10.3 MLIFT fix 20001, add 20568
20130314 tpd src/axiom-website/patches.html 20130314.09.tpd.patch
20130314 tpd buglist SMTS fix 20383, 50005, add 20567
20130314 tpd books/bookvol10.3 SMTS fix 20383, 50005, add 20567
20130314 tpd src/axiom-website/patches.html 20130314.08.tpd.patch
20130314 tpd buglist SINT fix 20057 pretend
20130314 tpd books/bookvol10.3 SINT fix 20057 pretend
20130314 tpd src/axiom-website/patches.html 20130314.07.tpd.patch
20130314 tpd buglist SYMBOL fix 20056 pretend
20130314 tpd books/bookvol10.3 SYMBOL fix 20056 pretend
20130314 tpd src/axiom-website/patches.html 20130314.06.tpd.patch
20130314 tpd buglist ITAYLOR fix 20542 pretend
20130314 tpd books/bookvol10.3 ITAYLOR fix 20542 pretend
20130314 tpd src/axiom-website/patches.html 20130314.05.tpd.patch
20130314 tpd src/interp/i-funsel.lisp remove functions
20130314 tpd src/interp/g-util.lisp remove functions
20130314 tpd books/bookvol5 treeshake interpreter code
20130314 tpd src/axiom-website/patches.html 20130314.04.jzc.patch
20130314 jzc books/bookvol1 fix typo
20130314 jzc books/bookvol0 fix typo
20130314 tpd src/axiom-website/patches.html 20130314.03.tpd.patch
20130314 tpd changlog. fix jzc email address
20130314 tpd src/axiom-website/patches.html 20130314.02.tpd.patch
20130314 jzc books/bookvol5.pamphlet add Jia Zhao Cong
20130314 jzc books/bookvol10.4.pamphlet add Jia Zhao Cong
20130314 jzc readme add Jia Zhao Cong
20130314 jzc Jia Zhao Cong <[email protected]>
20130314 tpd src/axiom-website/patches.html 20130314.01.tpd.patch
20130314 tpd buglist GRAY fixed 20467
20130314 tpd books/bookvol10.4 GRAY fixed 20467
20130313 tpd src/axiom-website/patches.html 20130313.07.tpd.patch
20130313 tpd buglist FSPECF fix 7235, 40077
20130313 tpd books/bookvol10.4 FSPECF fix 7235, 40077
20130313 tpd src/axiom-website/patches.html 20130313.06.tpd.patch
20130313 tpd buglist fix 20501, SEXOF pretend, 30047 RNUMP
20130313 tpd books/bookvol10.3 fix 20501, SEXOF pretend
20130313 tpd src/axiom-website/patches.html 20130313.05.tpd.patch
20130313 tpd src/interp/vmlisp.lisp RNUMP removed
20130313 tpd src/interp/sys-pkg.lisp RNUMP removed
20130313 tpd src/interp/g-timer.lisp RNUMP removed
20130313 tpd books/bookvol10.3 RNUMP removed fix 30047
20130313 tpd src/axiom-website/patches.html 20130313.04.tpd.patch
20130313 tpd books/bookvol10.3 INTRVL fix 20480, 30143
20130313 tpd buglist INTRVL fix 20480, 30143
20130313 tpd src/axiom-website/patches.html 20130313.03.tpd.patch
20130313 tpd books/bookvol10.3 AFFSP fix 30230, 20495; introduce 60076
20130313 tpd buglist fix 30230, 20495; introduce 60076
20130313 tpd src/axiom-website/patches.html 20130313.02.tpd.patch
20130313 tpd books/bookvol5 fix references
20130313 tpd src/axiom-website/patches.html 20130313.01.tpd.patch
20130313 tpd buglist complete console review and classify
20130307 tpd src/axiom-website/patches.html 20130307.02.tpd.patch
20130307 tpd books/bookvol4 clean up latex, document makeHelpFiles
20130307 tpd src/axiom-website/patches.html 20130307.01.tpd.patch
20130307 tpd src/algebra/Makefile set up regression tests
20130307 tpd books/bookvol10.4 fix help documentation and regression tests
20130307 tpd books/bookvol10.3 fix help documentation and regression tests
20130307 tpd books/bookvol10.2 fix help documentation and regression tests
20130306 tpd src/axiom-website/patches.html 20130306.02.tpd.patch
20130306 tpd books/bookvol4 replace " with ``
20130306 tpd src/axiom-website/patches.html 20130306.01.tpd.patch
20130306 tpd books/bookvol4 fix mixing end verbatim
20130305 tpd src/axiom-website/patches.html 20130305.02.tpd.patch
20120305 tpd books/bookvol10.4 write help documentation
20130305 tpd src/axiom-website/patches.html 20130305.01.tpd.patch
20120305 tpd books/bookvolbib add references
20130301 tpd src/axiom-website/patches.html 20130301.01.tpd.patch
20130301 tpd books/bookvol10.3 write help documentation for all domains
20130229 tpd src/axiom-website/patches.html 20130229.01.tpd.patch
20130229 tpd books/bookvolbib add references
20130228 tpd src/axiom-website/patches.html 20130228.02.tpd.patch
20130228 tpd books/bookvol10.2 write help documentation for all categories
20130228 tpd src/axiom-website/patches.html 20130228.01.tpd.patch
20130228 tpd books/bookvolbib add references
20130227 tpd src/axiom-website/patches.html 20130227.02.tpd.patch
20130227 tpd src/algebra/Makefile add U32VectorPolynomialOperations
20130227 tpd books/bookvol5 add support for U32VectorPolynomialOperations
20130227 tpd books/bookvol10.4 add U32VectorPolynomialOperations
20130227 tpd books/ps/v104u32vectorpolynomialoperations.eps added
20130227 tpd src/axiom-website/patches.html 20130227.01.tpd.patch
20130227 tpd src/input/machinearithmetic.input unit test U8Matrix
20130227 tpd src/algebra/Makefile add U8Matrix
20130227 tpd books/bookvol5 add support code for U8Matrix
20130227 tpd books/bookvol10.3 add U8Matrix
20130227 tpd books/ps/v103u8matrix.eps added
20130226 tpd src/axiom-website/patches.html 20130226.02.tpd.patch
20130226 tpd books/ps/v103u16matrix.eps added