forked from fricas/fricas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
16015 lines (10685 loc) · 486 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
2025-01-10 Waldek Hebisch <[email protected]>
* src/algebra/vsbasis.spad: Fix 'isBasis?' and
'complementSpace'
2025-01-09 Waldek Hebisch <[email protected]>
* src/algebra/Makefile.in, src/algebra/fops.spad,
src/interp/bc-matrix.boot, src/interp/bc-misc.boot,
src/interp/bc-solve.boot, src/interp/br-con.boot,
src/interp/br-saturn.boot, src/interp/br-search.boot,
src/interp/ht-util.boot, src/interp/i-funsel.boot:
Minor cleanups
2025-01-08 Waldek Hebisch <[email protected]>
* src/interp/bc-solve.boot: Correct a typo
2025-01-05 Gregory Vanuxem <[email protected]>
* src/etc/SPADEDIT, src/hyper/spadint.c,
src/sman/sman.c: Allow choice of terminal emulator
2024-12-23 Waldek Hebisch <[email protected]>
* src/interp/htsetvar.boot: Fix recent change
2024-12-22 Ralf Hemmecke <[email protected]>
* src/algebra/xhash.spad, src/algebra/hashstate.spad: use rem
instead of positiveRemainder
2024-12-20 Waldek Hebisch <[email protected]>
* src/interp/br-con.boot, src/interp/br-op1.boot,
src/interp/br-op2.boot, src/interp/br-saturn.boot,
src/interp/br-search.boot, src/interp/br-util.boot,
src/interp/htsetvar.boot: Cleanup and simplify
HyperDoc
2024-12-20 Waldek Hebisch <[email protected]>
* src/interp/bc-solve.boot, src/interp/br-data.boot,
src/interp/htsetvar.boot: Improve style
2024-12-20 Waldek Hebisch <[email protected]>
* src/interp/br-util.boot, src/interp/database.boot:
Small HyperDoc fixes
2024-12-20 Waldek Hebisch <[email protected]>
* src/interp/m_util.boot, src/interp/nlib.lisp: Fix build
with ECL
2024-12-20 Waldek Hebisch <[email protected]>
* src/interp/i-syscmd.boot: Fix recent change
2024-12-07 Waldek Hebisch <[email protected]>
* src/algebra/fops.spad: New file, implement part of file
handling in Spad
src/algebra/files.spad: Use fops.spad
m_util.boot src/interp: New file, support for fops.spad
src/interp/s_supp.lisp: Add support for m_util.boot and
fops.spad
src/interp/i-syscmd.boot: Use new routines, remove old
src/input/files.input: New test file
src/input/Makefile.in, src/interp/database.boot,
src/interp/gdata.boot, src/interp/i-syscmd.boot,
src/interp/lisplib.boot, src/interp/nlib.lisp,
src/algebra/Makefile.in, src/input/Makefile.in,
src/interp/Makefile.in: Adjust
2024-12-07 Waldek Hebisch <[email protected]>
* src/interp/compat.boot, src/interp/define.boot,
src/interp/g-util.boot, src/interp/i-syscmd.boot,
src/interp/lisplib.boot, src/interp/pathname.boot:
Misc cleanups
2024-12-07 Waldek Hebisch <[email protected]>
* src/lisp/primitives.lisp, src/interp/g-error.boot,
src/interp/spaderror.lisp: Allow trapping Spad errors
in Boot
2024-12-03 Qian Yun <[email protected]>
* src/lib/sockio-c.c: Fix build with gcc-14 on musl
2024-11-28 Waldek Hebisch <[email protected]>
* config/config.sub: Skip meaningless vendor
part
2024-11-14 Waldek Hebisch <[email protected]>
* src/algebra/derham.spad: Minor cleanup
2024-11-03 Ralf Hemmecke <[email protected]>
* src/algebra/sttaylor.spad: division of streams with less memory
2024-10-21 Qian Yun <[email protected]>
* src/lisp/num_gmp.lisp: Save a few bytes for GMP-gcd in CCL
2024-10-21 Qian Yun <[email protected]>
* src/lisp/fricas-lisp.lisp: Workaround CLISP 'truename' bug
2024-10-18 Qian Yun <[email protected]>
* src/lib/gmp_wrap.c: Fix GMP for CCL on Windows
2024-10-16 Qian Yun <[email protected]>
* src/interp/util.lisp, src/interp/int-top.boot:
Fix ')fin' for ECL
2024-09-29 Qian Yun <[email protected]>
* src/include/sockio-c.H1, src/lib/sockio-c.c,
src/lisp/fricas-lisp.lisp: Fix build with GCL and gcc-14
2024-09-19 Qian Yun <[email protected]>
* src/interp/trace.boot: Use '$LINELENGTH' in ')trace )math'
2024-09-07 Qian Yun <[email protected]>
* config/var-def.mk, src/*/Makefile.in:
Respect user supplied CFLAGS/LDFLAGS
2024-08-29 Qian Yun <[email protected]>
Grégory Vanuxem <[email protected]>
* src/etc/fricas-readline: support more break-chars
2024-08-28 Waldek Hebisch <[email protected]>
* src/interp/ht-root.boot, src/interp/setvart.boot: Small
HyperDoc fixes
2024-08-28 Waldek Hebisch <[email protected]>
* src/interp/ht-root.boot: Remove unused code
2024-08-27 Waldek Hebisch <[email protected]>
New routines for converting floats to strings
* src/algebra/flopak.spad: New file
src/algebra/float.spad, src/algebra/sf.spad: Use
new routines
src/interp/Makefile.in: Adjust
2024-08-12 Waldek Hebisch <[email protected]>
* src/algebra/special2.spad: Implement more cases of
complex 'polygamma'
2024-07-23 Waldek Hebisch <[email protected]>
* src/algebra/*: Add more explicit imports
2024-07-21 Frederic Chapoton
* src/*: Spelling fixes
2024-07-09 Waldek Hebisch <[email protected]>
* src/algebra/special2.spad: Add complex 'polygamma'
src/algebra/special.spad: remove old version of polygamma'
2024-07-08 Waldek Hebisch <[email protected]>
* src/interp/showimp.boot: Remove
src/interp/Makefile.in: Adjust
2024-07-08 Waldek Hebisch <[email protected]>
* src/interp/lisplib.boot: Fix loading messages
2024-07-08 Waldek Hebisch <[email protected]>
* src/algebra/catdef.spad: Implement missing signature
2024-07-08 Waldek Hebisch <[email protected]>
* src/algebra/manip.spad: Handle nested roots in 'rootSplit'
and 'rootFactor'
2024-07-08 Waldek Hebisch <[email protected]>
* src/algebra/manip.spad, src/interp/i-funsel.boot:
Minor cleanups
2024-07-08 Waldek Hebisch <[email protected]>
* src/algebra/combfunc.spad, src/algebra/expr.spad,
src/algebra/op.spad, src/algebra/trigcat.spad:
Add more orthogonal polynomials
2024-07-04 Waldek Hebisch <[email protected]>
* src/interp/i-syscmd.boot: Fix show using editor
2024-07-03 Peter Broadbery <[email protected]>
* src/interp/ax.boot: Support self-referential constructors
in Aldor interface
2024-07-03 Waldek Hebisch <[email protected]>
* src/interp/i-output.boot: Put no space between function
name and arguments
2024-07-01 Waldek Hebisch <[email protected]>
* src/algebra/fspace.spad: Re-apply change from 05-26
src/algebra/Makefile.in, src/algebra/constant.spad,
src/algebra/exposed.lsp, src/algebra/expr.spad,
src/interp/i-funsel.boot: Adjust
2024-06-29 Waldek Hebisch <[email protected]>
* src/algebra/Makefile.in: Fix build from pregenerated
files
2024-06-29 Waldek Hebisch <[email protected]>
* src/algebra/view2D.spad: Correct off by 1 error
2024-06-26 Qian Yun <[email protected]>
Ralf Hemmecke <[email protected]>
* src/doc/*: Support building reference book with pdflatex,
update bitmap screenshots in src/doc/ps/ to src/doc/png/
2024-06-26 Qian Yun <[email protected]>
Ralf Hemmecke <[email protected]>
* src/doc/*: Use PS format image in reference book
2024-06-22 Waldek Hebisch <[email protected]>
* src/algebra/fspace.spad: Temporarily revert previous
change to allow building Aldor interface
src/algebra/Makefile.in, src/algebra/constant.spad,
src/algebra/exposed.lsp, src/algebra/expr.spad,
src/interp/i-funsel.boot: Adjust
2024-06-12 Qian Yun <[email protected]>
* src/hyper/event.c: Exit HyperDoc launched by ')hd' properly
when FriCAS quits
2024-06-02 Waldek Hebisch <[email protected]>
* src/algebra/special2.spad: Implement numeric 'riemannZeta'
2024-06-02 Waldek Hebisch <[email protected]>
* src/algebra/special2.spad: Misc cleanups
2024-05-31 Waldek Hebisch <[email protected]>
* src/algebra/rsimp.spad: Correct a typo
2024-05-27 Waldek Hebisch <[email protected]>
* src/interp/define.boot: Add missing initialization
2024-05-27 Qian Yun <[email protected]>
* src/lib/util.c, src/include/util.H1, src/graph/view3D/header.h,
src/graph/include/spadAction3d.H1, src/graph/viewman/fun3D.c,
src/graph/view3D/spadAction3d.c, src/graph/view3D/viewport3d.c,
src/graph/include/spadAction2d.H1, src/graph/viewman/fun2D.c,
src/graph/view2D/spadAction2d.c, src/graph/view2D/viewport2D.c:
Fix memory issues related with graph title.
Add new function 'readViewmanStr'.
2024-05-26 Waldek Hebisch <[email protected]>
suggested by LdBeth
* src/graph/viewAlone/spoon2D.c, src/graph/viewAlone/spoonComp.c:
Include declaration of 'fricas_sleep'
2024-05-26 Waldek Hebisch <[email protected]>
* src/interp/format.boot, src/interp/i-funsel.boot:
Print more info about function selection
2024-05-26 Waldek Hebisch <[email protected]>
* src/algebra/fspace.spad: Generalize ExpressionSpace and
FunctionSpace
src/algebra/Makefile.in, src/algebra/constant.spad,
src/algebra/exposed.lsp, src/algebra/expr.spad,
src/interp/i-funsel.boot: Adjust
2024-05-25 Grégory Vanuxem <[email protected]>
* src/lisp/fricas-lisp.lisp: Simplify creation of
Clozure CL image, do not use 'fricas-application'
2024-05-21 Waldek Hebisch <[email protected]>
* src/interp/g-cndata.boot, src/interp/i-analy.boot,
src/interp/i-coerce.boot, src/interp/i-eval.boot,
src/interp/i-funsel.boot, src/interp/i-intern.boot,
src/interp/i-map.boot, src/interp/i-output.boot,
src/interp/i-resolv.boot, src/interp/i-spec1.boot,
src/interp/i-spec2.boot, src/interp/i-syscmd.boot,
src/interp/slam.boot, src/interp/trace.boot:
Simplify interpreter environment access
2024-05-19 Waldek Hebisch <[email protected]>
* src/interp/define.boot, src/interp/info.boot:
Simplify modemap handling
2024-05-18 Waldek Hebisch <[email protected]>
* src/interp/apply.boot: Allow false condition
in signatures
2024-05-18 Waldek Hebisch <[email protected]>
* src/boot/typrops.boot, src/interp/i-funsel.boot,
src/interp/i-spec2.boot, src/interp/i-syscmd.boot:
Cleanup of Boot renamings
2024-05-16 Waldek Hebisch <[email protected]>
* src/algebra/rsimp.spad, src/algebra/solverad.spad:
Improve 'radicalSolve'
2024-05-14 Waldek Hebisch <[email protected]>
* src/algebra/fr.spad, src/interp/macros.lisp:
Do not use Lisp order in Factored
2024-05-14 Waldek Hebisch <[email protected]>
* src/algebra/ffdoms.spad, src/algebra/multpoly.spad,
src/algebra/poly.spad: Add Canonical to some domains
2024-05-14 Qian Yun <[email protected]>
* src/lisp/fricas-lisp.lisp, src/lisp/fricas-package.lisp:
Fixup Clozure CL build on Windows
2024-05-14 Qian Yun <[email protected]>
* src/interp/lisplib.boot, src/interp/pathname.boot:
Fix 'isSystemDirectory' on Windows
2024-05-12 Waldek Hebisch <[email protected]>
* src/interp/i-toplev.boot: Correct a typo
2024-05-10 Waldek Hebisch <[email protected]>
* src/interp/i-toplev.boot: Fix recent breakage
2024-05-09 Waldek Hebisch <[email protected]>
* src/algebra/symbol.spad, src/interp/g-util.boot,
src/interp/i-coerfn.boot, src/interp/i-resolv.boot,
src/interp/macros.lisp, src/interp/simpbool.boot,
src/interp/vmlisp.lisp: Simplify and fix ordering
predicate
2024-05-08 Waldek Hebisch <[email protected]>
* src/algebra/pfr.spad: Refactor PartialFraction
2024-05-07 Qian Yun <[email protected]>
* src/sman/sman.c, src/sman/spadclient.c:
Use workaround to reduce chance of missing output lines
when system load is high
2024-05-06 Waldek Hebisch <[email protected]>
Grégory Vanuxem <[email protected]>
* src/algebra/exposed.lsp: Small cleanup
2024-05-04 Waldek Hebisch <[email protected]>
* src/interp/br-con.boot: Silence time and storage
messages from HyperDoc
2024-05-04 Waldek Hebisch <[email protected]>
* src/algebra/solverad.spad: Fix regression in
'radicalSolve'
2024-05-04 Ralf Hemmecke <[email protected]>
* src/doc/htex/ug10.htex, src/doc/htex2input.awk,
src/doc/spool2tex.awk, rc/doc/ugepsf.awk:
fix \noOutputXtc to produce no output in the .tex file
2024-05-02 Qian Yun <[email protected]>
* src/algebra/view2D.spad:
Show units by default when 'unit' option is passed to 'draw'
2024-05-01 Waldek Hebisch <[email protected]>
* src/interp/br-search.boot, src/interp/ht-root.boot:
Fix HyperDoc logical search
2024-05-01 Qian Yun <[email protected]>
* src/graph/Gdraws/Gfun.c, src/graph/Gdraws/ps_files/header.ps,
src/graph/Gdraws/ps_files/drawIstr.ps:
Use bigger font in title for PS image output
2024-05-01 Qian Yun <[email protected]>
* src/graph/Gdraws/Gfun.c, src/interp/util.lisp:
Misc fix 'filecopy' and '|waitForViewport|'
2024-05-01 Waldek Hebisch <[email protected]>
* src/interp/compiler.boot: Silence some redundant warnings
2024-05-01 Waldek Hebisch <[email protected]>
* src/interp/parse.boot: Correct transformation of 'has'
2024-04-30 Waldek Hebisch <[email protected]>
* src/interp/br-con.boot, src/interp/br-data.boot,
src/interp/br-saturn.boot, src/interp/br-search.boot,
src/interp/br-util.boot, src/interp/c-doc.boot,
src/interp/c-util.boot, src/interp/compiler.boot,
src/interp/define.boot, src/interp/format.boot,
src/interp/g-cndata.boot, src/interp/g-timer.boot,
src/interp/ht-util.boot, src/interp/i-analy.boot,
src/interp/i-coerce.boot, src/interp/i-funsel.boot,
src/interp/i-intern.boot, src/interp/i-map.boot,
src/interp/i-output.boot, src/interp/i-spec2.boot,
src/interp/i-syscmd.boot, src/interp/i-toplev.boot,
src/interp/info.boot, src/interp/int-top.boot,
src/interp/interop.boot, src/interp/lisplib.boot,
src/interp/macros.lisp, src/interp/msgdb.boot,
src/interp/ncomp.boot, src/interp/nlib.lisp,
src/interp/nruncomp.boot, src/interp/postpar.boot,
src/interp/scan.boot, src/interp/setq.lisp,
src/interp/setvart.boot, src/interp/showimp.boot,
src/interp/trace.boot, src/interp/util.lisp,
src/lisp/Makefile.in, src/lisp/fricas-lisp.lisp,
src/lisp/fricas-package.lisp, src/scripts/build_helper:
Misc cleanups
2024-04-29 Waldek Hebisch <[email protected]>
* src/interp/c-util.boot: Downgrade two errors to warnings
2024-04-29 Waldek Hebisch <[email protected]>
Ralf Hemmecke <[email protected]>
* src/hyper/htinp.c, src/interp/br-search.boot: Replace
'\center' by '\centerline'
src/hyper/spadint.c, src/include/spadint.H1: Remove
unused code
2024-04-28 Waldek Hebisch <[email protected]>
* src/interp/nrunfast.boot: Fix 'has' with self-recursive
conditions
2024-04-28 Waldek Hebisch <[email protected]>
* src/algebra/float.spad: Improve control of output
format
2024-04-25 Qian Yun <[email protected]>
* src/graph/Gdraws/Gfun.c: Enable title in PS image output
2024-04-24 Qian Yun <[email protected]>
* src/graph/Gdraws/Gfun.c, src/graph/include/Gfun.H1:
Fix compiler warnings introduced by recent commits
2024-04-23 Qian Yun <[email protected]>
* src/graph/view2D/viewport2D.c:
Add support for colored PS output for 2D image
* src/graph/Gdraws/ps_files/drawline.ps,
src/graph/Gdraws/ps_files/fillarc.ps, src/graph/Gdraws/Gfun.c:
Add new function 'GColorLine', 'GColorFillArc'
2024-04-22 Qian Yun <[email protected]>
* src/graph/view2D/write2d.c, src/graph/view2D/write3d.c:
Change the filename of PS format image to 'image.ps' in viewport,
fix 3D PS image with 'smooth' style in viewport output
* src/graph/include/Gfun.H1, src/graph/Gdraws/Gfun.c:
Add a new function 'PSsetrgbcolor'
* src/graph/view3D/smoothShade3d.c,
src/graph/Gdraws/ps_files/drawpoint.ps:
Add support for colored PS output for 'smooth' style 3D image
2024-04-21 Waldek Hebisch <[email protected]>
* contrib/load-fricas.lisp: Load "num_gmpx.lisp" if
needed, update instructions
contrib/mk_shlib.lisp: Update instructions
2024-04-20 Qian Yun <[email protected]>
* src/etc/Makefile.in: Install fricas-readline to target directory
2024-04-20 Qian Yun <[email protected]>
* src/graph/viewman/fun2D.c, src/graph/viewman/fun3D.c,
src/graph/viewAlone/spoonComp.c:
Reduce time of 'sleep' in 'draw' function
src/graph/viewAlone/spoon2D.c: Fix accidental write to pipe
2024-04-18 Waldek Hebisch <[email protected]>
* src/interp/compiler.boot: Supress excessive
warnings
2024-04-17 Waldek Hebisch <[email protected]>
* src/interp/hypertex.boot: Remove
src/interp/br-saturn.boot: Move needed part here
src/interp/htsetvar.boot: Remove 'htsv'
2024-04-17 Waldek Hebisch <[email protected]>
* src/doc/ht/gloss.text, src/doc/ht/util.ht,
src/interp/br-search.boot: Use '\centerline'
instead of '\center'
2024-04-17 Waldek Hebisch <[email protected]>
* src/algebra/zerodim.spad: Minor cleanup
2024-04-16 Waldek Hebisch <[email protected]>
Avoid poluting interpreter namespace
* src/interp/i-toplev.boot, src/algebra/mkfunc.spad:
New function 'interpret_in_new_env'
src/algebra/rsimp.spad: use it
2024-04-15 Qian Yun <[email protected]>
* src/graph/Gdraws/ps_files/header.ps,
src/graph/Gdraws/Gfun.c: Put 'BoundingBox' into header
section of PS file, calculate scale factor correctly
2024-04-15 Qian Yun <[email protected]>
* configure.ac: Prevent SBCL compile error by adding
a larger dynamic-space-size option
configure: update by autoconf-2.71
2024-04-13 Waldek Hebisch <[email protected]>
* src/algebra/scene.spad: Remove deprecated functions
2024-04-12 Waldek Hebisch <[email protected]>
* src/interp/gdata.boot: Fix a typo
2024-04-12 Waldek Hebisch <[email protected]>
* src/interp/gdata.boot: Fix handling of .asy
2024-04-12 Qian Yun <[email protected]>
* src/algebra/manip.spad: Make 'simplifyExp' support
more kinds of expression
2024-04-11 Waldek Hebisch <[email protected]>
* src/share/algebra/compress.daase: Remove
Makefile.in, src/etc/Makefile.in: Remove traces of
compress.daase
2024-04-10 Waldek Hebisch <[email protected]>
* src/interp/interp-proclaims.lisp: Remove
src/interp/Makefile.in: Adjust
2024-04-10 Waldek Hebisch <[email protected]>
* src/interp/daase.lisp, src/interp/gdata.boot: Reimplement
database handling in Boot code
src/interp/as.boot, src/interp/cattable.boot,
src/interp/database.boot, src/interp/define.boot,
src/interp/g-cndata.boot, src/interp/lisplib.boot,
src/interp/setq.lisp, src/interp/setvars.boot,
src/interp/vmlisp.lisp: Adjust and clean up
src/algebra/Makefile.in, src/algebra/boo_db.input,
src/etc/Makefile.in, src/interp/Makefile.in,
src/interp/i-syscmd.boot, src/interp/i-toplev.boot,
src/interp/nrunopt.boot, src/interp/util.lisp,
src/lisp/primitives.lisp: Adjust
2024-04-10 Waldek Hebisch <[email protected]>
* src/interp/compiler.boot: Accept string as valid type
(avoids spurious error messages)
2024-04-10 Waldek Hebisch <[email protected]>
* src/algebra/ystream.spad: Do not use undefined type
2024-04-10 Qian Yun <[email protected]>
* src/hyper/extent2.c: Backport a typo fix from open-axiom
2024-04-08 Waldek Hebisch <[email protected]>
* src/interp/define.boot: Do not set NILADIC property
on symbols
2024-04-08 Waldek Hebisch <[email protected]>
* src/doc/ht/enum.ht: New file
src/doc/Makefile.in: Adjust
src/interp/br-con.boot: Fix and simplify previous commit
2024-04-08 Qian Yun <[email protected]>
* src/interp/i-toplev.boot, src/doc/htex/ug16.htex:
Fix ')edit' and ')help edit'
2024-04-08 Waldek Hebisch <[email protected]>
* src/interp/br-con.boot, src/interp/msgdb.boot: Do not leave
junk global variables
2024-04-06 Qian Yun <[email protected]>
* src/interp/as.boot: Remove unused function 'asList'
2024-04-05 Qian Yun <[email protected]>
* src/interp/i-syscmd.boot: Fix line breaking in 'writeInputLines'
2024-04-04 Waldek Hebisch <[email protected]>
* src/algebra/puiseux.spad: Implement inverse
trigonometric and hyperbolic functions at branch points
2024-04-03 Qian Yun <[email protected]>
* src/interp/i-syscmd.boot: Fix ')history )write'
2024-04-03 Qian Yun <[email protected]>
* src/etc/SPADEDIT: Use 'less' instead of 'more',
prevent exits when content is less than one page
2024-03-29 Waldek Hebisch <[email protected]>
* src/algebra/tex.spad, src/algebra/texmacs.spad:
Improve code style
2024-03-26 Waldek Hebisch <[email protected]>
* src/interp/i-toplev.boot: Initialize more variables
2024-03-03 Waldek Hebisch <[email protected]>
* src/interp/daase.lisp, src/interp/gdata.boot: Work around
ECL problem uncovered by recent change
2024-03-02 Waldek Hebisch <[email protected]>
* src/interp/format.boot: Add workaround for
')display op groebner'
2024-03-02 Waldek Hebisch <[email protected]>
Implement part of database handling in Boot
* src/interp/gdata.boot: New file
src/interp/daase.lisp: remove functions replaced by Boot
code in gdata.boot, add functions callable from Boot
src/interp/lisplib.boot, src/interp/i-syscmd.boot,
src/interp/Makefile.in: Adjust
2024-02-11 Qian Yun <[email protected]>
* src/interp/define.boot, src/interp/i-map.boot:
Add '$ClearBodyToken' to replace invisible symbol,
improve compatibility with Allegro CL
2024-02-08 Ralf Hemmecke <[email protected]>
* src/doc/api.spad: fix broken build of api rst files
2024-02-07 Qian Yun <[email protected]>
* src/interp/daase.lisp: Change 'directory-namestring' to
'pathname-directory', improve compatibility with Allegro CL
2024-02-07 Waldek Hebisch <[email protected]>
Qian Yun <[email protected]>
* src/interp/i-syscmd.boot: Minor cleanup
2024-02-07 Waldek Hebisch <[email protected]>
* src/algebra/Makefile.in, src/interp/daase.lisp,
src/interp/i-toplev.boot: Remove database compression code
2024-02-07 Grégory Vanuxem <[email protected]>
* Makefile.in: Do not use doc (it does not exist)
2024-02-05 Grégory Vanuxem <[email protected]>
* src/lisp/Makefile.in: Correct 'clean'
2024-02-05 Hill Strong <[email protected]>
* src/algebra/array1.spad: Remove redundant line
2024-01-28 Qian Yun <[email protected]>
* src/lisp/fricas-lisp.lisp: Add a new function '|run_program|'
src/interp/vmlisp.lisp: Rename 'OBEY' to '|run_shell_command|'
src/interp/as.boot, src/interp/br-data.boot,
src/interp/br-search.boot, src/interp/compat.boot,
src/interp/foam_l.lisp, src/interp/i-syscmd.boot,
src/interp/nlib.lisp, src/lisp/fricas-package.lisp:
Adjust
2024-01-28 Qian Yun <[email protected]>
* src/interp/i-syscmd.boot, src/interp/br-data.boot:
Misc cleanup
2024-01-28 Qian Yun <[email protected]>
* src/interp/i-syscmd.boot, src/interp/i-toplev.boot:
Misc cleanup, remove 'initializeSystemCommands'
2024-01-23 Waldek Hebisch <[email protected]>
* src/algebra/rsimp.spad: Handle higher order roots
in base field
2024-01-23 Qian Yun <[email protected]>
* src/interp/g-timer.boot, src/interp/i-toplev.boot:
Make recursive stats collection accurate
2024-01-23 Qian Yun <[email protected]>
* src/interp/g-timer.boot, src/interp/i-toplev.boot:
Store stats result in '$statsInfo' instead of plist of
'$interpreterTimedNames'
2024-01-23 Qian Yun <[email protected]>
* src/interp/i-syscmd.boot: Fix ')synonym' command
* src/interp/g-util.boot: Remove 'dropLeadingBlanks'
2024-01-15 Waldek Hebisch <[email protected]>
* src/algebra/solverad.spad: Small cleanup
2024-01-15 Waldek Hebisch <[email protected]>
Grégory Vanuxem <[email protected]>
* src/clef/fnct_key.c, src/graph/view3D/control3d.c,
src/hyper/ReadBitmap.c, src/hyper/dialog.c,
src/hyper/extent1.c, src/lib/sockio-c.c:
Eliminate some warnings
2024-01-15 Waldek Hebisch <[email protected]>
* src/boot/*, contrib/emacs/gen-cpl.lisp:
Downcase database related identifiers
2024-01-09 Waldek Hebisch <[email protected]>
* src/algebra/ddfact.spad, src/algebra/moddfact.spad:
Remove (use ffact.spad instead)
2024-01-09 Waldek Hebisch <[email protected]>
Qian Yun <[email protected]>
* src/interp/i-syscmd.boot, src/interp/i-toplev.boot:
Fix recursive calls to interpreter
2024-01-09 Ralf Hemmecke <[email protected]>
* src/doc/sphinx/source/install.rst, INSTALL: Update documentation
for building FriCAS Aldor interface
2024-01-07 Waldek Hebisch <[email protected]>
* src/algebra/rsimp.spad: Add package for root simplification
src/algebra/Makefile.in: Adjust
2024-01-06 Qian Yun <[email protected]>
* src/interp/i-toplev.boot: Separate 'printTime' from
'printTypeAndTime', print stats after printing of
value and type is done
2024-01-06 Qian Yun <[email protected]>
* src/lisp/fricas-lisp.lisp: Fix Clozure CL build on Windows
2024-01-04 Qian Yun <[email protected]>
* src/interp/util.lisp: Fix ECL build failure
caused by 9c5656ca
2024-01-02 Waldek Hebisch <[email protected]>
* src/algebra/algfact.spad: Call 'makeFactor' instead
of multiplication in Factored
2024-01-01 Waldek Hebisch <[email protected]>
* src/interp/i-syscmd.boot: Clean more variables
2023-12-29 Qian Yun <[email protected]>
* src/interp/htcheck.boot, src/interp/i-toplev.boot:
Fix loading of util.ht caused by 4d47c005,
util.ht is read at each startup instead of compile time
2023-12-28 Waldek Hebisch <[email protected]>
* src/algebra/reclos.spad, src/etc/Makefile.in: Adjust
for common copyright statement
src/etc/copyright: Remove
2023-12-28 Waldek Hebisch <[email protected]>
* src/algebra/rec.spad: Rename 'ADEseq' to 'FEseries'
2023-12-23 Waldek Hebisch <[email protected]>
* src/algebra/rec.spad: Rename 'rootOfADE' to 'ADEseq'
2023-12-22 Qian Yun <[email protected]>
* src/algebra/manip.spad: Fix 'simplifyExp': 'smpexp' may
return a fraction
2023-12-22 Qian Yun <[email protected]>
* src/algebra/manip.spad: Fix 'simplifyExp', recalculate
kernel height and recurse on first argument of '%power'
2023-12-21 Waldek Hebisch <[email protected]>
Qian Yun <[email protected]>
* src/algebra/irexpand.spad, src/algebra/rsimp.spad:
Improve handling of roots during integration
2023-12-19 Waldek Hebisch <[email protected]>
* src/algebra/algfunc.spad: Disable splitting of roots
2023-12-17 Waldek Hebisch <[email protected]>
* src/algebra/irexpand.spad: Do not use 'real' on
result of integration
2023-12-17 Waldek Hebisch <[email protected]>
Qian Yun <[email protected]>
Better integration result, avoid complicated 'rootOf'
* src/algebra/rsimp.spad: New files
src/algebra/irexpand.spad: Use new functions
src/algebra/Makefile.in: Adjust
2023-12-10 Qian Yun <[email protected]>
* src/interp/i-systemd.boot: Add Boot function 'print_text_file',
fix the problem of missing 'cat' utility on Windows
2023-12-09 Qian Yun <[email protected]>
* src/interp/setq.lisp, src/interp/g-timer.boot:
Add ')storage' as synonym for ')set message storage',
prevent printing empty entries in ')storage' output
2023-12-08 Ralf Hemmecke <[email protected]>
* src/algebra/sups.spad: fix wrong creation of sparse power series
2023-12-08 Qian Yun <[email protected]>
* configure.ac, INSTALL, src/lisp/fricas-lisp.lisp:
Remove support for GCL older than 2.6.14
2023-12-04 Waldek Hebisch <[email protected]>
* src/algebra/manip.spad: Improve 'froot'
2023-12-02 Waldek Hebisch <[email protected]>
* src/algebra/equation1.spad: Add convertion to InputForm
2023-12-02 Qian Yun <[email protected]>
* src/interp/g-timer.boot:
Make number of printed digits of ')time' configurable
2023-12-02 Qian Yun <[email protected]>
* configure, configure.ac:
Simplify case insensitive file system check logic
2023-12-02 Waldek Hebisch <[email protected]>
* src/algebra/xpfact.spad, src/interp/database.boot,
src/interp/i-coerce.boot: Minor cleanups
2023-11-30 Waldek Hebisch <[email protected]>
* src/algebra/exposed.lsp, src/algebra/expr.spad,
src/interp/i-funsel.boot, src/interp/i-resolv.boot:
Rename domain Pi to PiDomain
2023-11-29 Waldek Hebisch <[email protected]>
* src/algebra/fortran.spad: Remove defunct Nag support
2023-11-28 Johannes Grabmeier <[email protected]>
Waldek Hebisch <[email protected]>
Add a bunch of math symbols
* src/algebra/math_sym.spad: New file
src/algebra/Makefile.in: Adjust
2023-11-25 Waldek Hebisch <[email protected]>
* src/interp/Makefile.in, src/interp/msgdb.boot,
src/share/doc/msgs/s2-us.msgs: Add Lisp version to
FriCAS banner
2023-11-21 Qian Yun <[email protected]>
* src/lisp/fricas-lisp.lisp, src/interp/macros.lisp:
src/interp/vmlisp.lisp: Implement missing functions for Lispworks
2023-11-18 Qian Yun <[email protected]>
* src/interp/util.lisp, src/interp/pathname.boot:
Rename '$spadroot' to '|$spadroot|'
src/interp/br-data.boot, src/interp/br-search.boot,
src/interp/ht-root.boot, src/interp/htcheck.boot,
src/interp/i-syscmd.boot, src/interp/daase.lisp:
use '|$spadroot|' instead of '(|getEnv| "FRICAS")'
2023-11-17 Qian Yun <[email protected]>
* src/lisp/fricas-lisp.lisp, src/boot/ptyout.boot,
src/interp/foam_l.lisp: Silence 'EVAL-WHEN' warnings
2023-11-16 Qian Yun <[email protected]>
* src/lisp/fricas-lisp.lisp: Simplify 'ecl-foreign-call',
use 'with-cstrings' instead of 'with-cstring'
2023-11-15 Qian Yun <[email protected]>
* src/interp/g-timer.boot: Simplify the stats printing functions,
prevent duplication when calculating 'total' and 'str'
2023-11-14 Qian Yun <[email protected]>
* src/lisp/fricas-lisp.lisp, src/interp/util.lisp,
src/lisp/Makefile.in, src/interp/Makefile.in:
Simplify CMUCL build logic:
do not load foreign library before 'save-core',
delay the initialization of FFI functions like CLISP
2023-11-14 Qian Yun <[email protected]>
* src/lisp/fricas-lisp.lisp:
Simplify FFI function 'sock_get_string_buf' further:
introduce a new FFI type 'char-*',
use 'fricas-foreign-call' to define 'sock_get_string_buf',
variable rename and indentation