forked from fricas/fricas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
10021 lines (6901 loc) · 313 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
2014-12-01 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/mts.spad: Add 'coefficients' and 'series'
2014-11-27 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Rework extended integration
* src/algebra/intpar.spad: New file
src/algebra/curve.spad, src/algebra/odealg.spad,
src/algebra/pseudolin.spad: Generalize
src/algebra/intaf.spad, src/algebra/intef.spad,
src/algebra/rdeefx.spad, src/algebra/Makefile.in: Adjust
src/algebra/oderf.spad: Fix a few problems
src/algebra/intalg.spad, src/algebra/intrf.spad: Remove
now unused code
2014-11-24 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/g-error.boot: Correct a typo
2014-11-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/array2.spad, src/algebra/mama.spad:
Allow empty matrices as result of spliting
2014-11-20 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/sups.spad: Fix bug in 'order'
2014-11-14 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* configure.ac, src/lib/cfuns-c.c: Try harder to use
host directory operations
2014-11-08 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/files.spad, src/interp/nlib.lisp,
src/interp/daase.lisp, src/interp/macros.lisp,
src/interp/ht-util.boot, src/interp/server.boot:
Avoid FINISH-OUTPUT
2014-11-07 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/vmlisp.lisp: Redirect IO when running programs
from Closure CL
2014-11-07 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/Makefile.in: Add FORMCAT to CATLIST
2014-11-06 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/plot.spad, src/algebra/plot3d.spad:
Simplify (works around Closure CL bug)
2014-10-16 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Misc cleanups
* Makefile.in, config/var-def.mk, config/setup-dep.mk,
src/interp/int-top.boot: Minor clenups
src/scripts/document.in: Remove
2014-10-16 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/exposed.lsp: Expose GnuDraw.
2014-10-16 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/g-boot.boot: Avoid overwriting loop limit
and increment.
2014-10-15 Ralf Hemmecke <ralf@hemmecke.org>
* src/aldor/README, src/doc/htex/ug15.htex: fix location of
git mirror of svn repository
2014-10-15 David Cyganski
Waldek Hebisch <hebisch@math.uni.wroc.pl>
Bill Page <bill.page@newsynthesis.org>
Add gnuDraw
* src/algebra/gnudraw.spad: New file
* src/algebra/draw.spad, src/algebra/viewpack.spad,
src/algebra/view2D.spad, src/algebra/Makefile.in
src/doc/htex/ug07.htex: Adjust
2014-10-13 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Eliminate few uses of $Lisp
* src/algebra/mantepse.spad, src/algebra/naalg.spad,
src/algebra/outform.spad, src/algebra/naalgc.spad,
src/algebra/generic.spad: Eliminate STRINGIMAGE$Lisp
src/algebra/aggcat2.spad: Elimnate wrong NIL$Lisp
2014-10-09 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intalg.spad: Fix a thinko
2014-10-06 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/special2.spad: Add DFSFUN2
2014-10-06 Kurt Pagani <nilqed@gmail.com>
* src/algebra/derham.spad: Fix signature of 'degree'
2014-10-01 Bill Page <bill.page@newsynthesis.org>,
Texmacs interface encodes scheme Cork symbols as unicode characters
* contrib/texmacs/fricas: New directory
* contrib/texmacs/fricas/doc: New directory
* contrib/texmacs/fricas/doc/FriCAS-TeXmacs-characters.tm: New file
* contrib/texmacs/fricas/doc/fricas-abstract.en.tm: New file
* contrib/texmacs/fricas/doc/fricas-demo.en.tm: New file
* contrib/texmacs/fricas/progs: New directory
* contrib/texmacs/fricas/progs/fricas-input.scm: New file
* contrib/texmacs/fricas/progs/fricas-kbd.scm: New file
* contrib/texmacs/fricas/progs/fricas-menus.scm: New file
* contrib/texmacs/fricas/progs/init-fricas.scm: Renamed file
* src/algebra/texmacs.spad: Modified for Cork<->unicode
2014-09-29 Waldek Hebisch <hebisch@math.uni.wroc.pl>,
Renaud Rioboo <Renaud.Rioboo@ensiie.fr>
Add R. Rioboo's cylindrical algebraic decomposition
* src/algebra/cyldec.spad: New file
src/input/cyldec.input: Add tests
src/algebra/Makefile.in: Adjust
2014-09-29 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/int-top.boot: Avoid crash when printing
error message from '-eval'
2014-09-10 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/scwrap2.boot: Better support for nopile
mode
2014-09-10 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* configure.ac, Makefile.in, config/var-def.mk,
src/scripts/mkdist.sh, contrib/macos/mk_app,
debian/control, debian/rules: Remove traces of
noweb from build machinery
2014-09-07 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/polycat.spad, src/algebra/integer.spad
src/algebra/poly.spad: Activate PolynomialFactorizationExplicit
for Integer
2014-09-03 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intden.spad: Move 'decompose' to separate
package
src/algebra/rdeefx.spad, src/algebra/Makefile.in: Adjust
2014-08-31 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/rdeefx.spad: Fix loss of solutions
in multiSPDE
2014-08-27 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/rdeefx.spad: Generalize RDEaux,
create FSRROOT
2014-08-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/rdeefx.spad: Change interface to
CLINDEP
2014-08-15 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intef.spad: Fix integration of
unevaluated derivatives
2014-08-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/rdeefx.spad: Fix handling of dummy
variables in CLINDEP
2014-08-09 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/expr.spad, src/algebra/intden.spad,
src/algebra/intef.spad, src/algebra/rdeefx.spad:
Generalize some constructors
2014-08-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Restructure modular evaluation
* src/algebra/evalut.spad: New file
src/algebra/amodgcd.spad, src/algebra/modhpsol.spad: Use it
src/algebra/Makefile.in: Adjust
2014-08-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/formula.spad, src/algebra/fortout.spad,
src/algebra/html.spad, src/algebra/mathml.spad,
src/algebra/tex.spad, src/algebra/texmacs.spad,
src/interp/i-output.boot, src/interp/property.lisp:
Remove INDEFINTEGRAL
2014-08-04 Ralf Hemmecke <ralf@hemmecke.org>
* Makefile.in, config/var-def.mk, src/aldor/Makefile.in,
src/aldor/Makefile2.in, src/aldor/Makefile3.in,
src/algebra/Makefile.in, src/doc/Makefile.in: use ${MKDIR_P}
instead of 'mkdir -p'
2014-07-13 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/mathml.spad, src/algebra/clifford.spad,
src/algebra/export3D.spad: Use 'sayBrightly' instead of
'sayTeX'
2014-07-03 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/interval.spad: Change difference of intervals
to agree with definition as interval operation
2014-06-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/outform2.spad, src/algebra/fortout.spad:
s/Formater/Formatter/
2014-06-14 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/tree.spad: Remove useless conditions
2014-06-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/c-doc.boot, src/interp/msgdb.boot,
src/interp/scwrap2.boot: Minor cleanups
2014-06-09 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/scwrap2.boot: Fix handling of '\/' and '/\'
2014-06-09 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/ncomp.boot: Fix toplevel multiparameter macros
2014-06-08 Ralf Hemmecke <ralf@hemmecke.org>
* src/algebra/aggcat.spad: bugfix subset?
2014-05-31 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/pgcd.spad: Fix failure due to bad reduction
2014-05-24 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/attribs.spad, src/algebra/clifford.spad,
src/algebra/combfunc.spad, src/algebra/computation.spad,
src/algebra/curve.spad, src/algebra/dirichlet.spad,
src/algebra/distro.spad, src/algebra/dhmatrix.spad,
src/algebra/efstruc.spad, src/algebra/fffg.spad,
src/algebra/generic.spad, src/algebra/graph.spad,
src/algebra/hashstate.spad, src/algebra/html.spad,
src/algebra/integer.spad, src/algebra/mantepse.spad,
src/algebra/matcat.spad, src/algebra/mathml.spad,
src/algebra/modhpsol.spad, src/algebra/newpoly.spad,
src/algebra/numtheor.spad, src/algebra/ore.spad:
Make sure .spad files are correct Spad
src/scripts/unpack_file: Adjust
2014-05-23 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/scripts/unpack_file: More portable version
2014-05-22 Ralf Hemmecke <ralf@hemmecke.org>
* src/algebra/sex.spad: add missing hashUpdate!
2014-05-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/*.spad: Clean up after commit 1774
2014-05-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/Makefile.in, src/doc/Makefile.in: Fix
in tree build
2014-05-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/*: Remove unneded literate boilerplate
2014-05-20 Ralf Hemmecke <ralf@hemmecke.org>
* src/algebra/xhash.spad: linearize literate documentation of
xhash.spad
2014-05-19 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/msgdb.boot: Fix 'throwKeyedMsgCannotCoerceWithValue'
2014-05-18 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/setvars.boot: Fix recent breakage
2014-05-18 Ralf Hemmecke <ralf@hemmecke.org>
* src/doc/ht/util.ht: remove obsolete \axiom* commands from
util.ht
2014-05-17 Ralf Hemmecke <ralf@hemmecke.org>
* src/algebra/*.spad, src/doc/ht/*.ht, src/doc/htex/*.htex:
\axiom* --> \spad*
2014-05-17 Ralf Hemmecke <ralf@hemmecke.org>
* contrib/emacs/fricas.el, src/interp/i-syscmd.boot,
src/interp/msgdb.boot,src/interp/setvars.boot: add ioHooks for
syscmd and error function
2014-05-17 Ralf Hemmecke <ralf@hemmecke.org>
* src/algebra/tex.spad: properly escape in TeXFormat
2014-05-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/Makefile.in: Fix in source 'make clean'.
2014-05-15 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/*.pamphlet: drop .pamphlet extension
src/algebra/Makefile.in, src/doc/Makefile.in: Adjust.
2014-05-15 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/scripts/unpack_file : New file.
src/scripts/find-algebra-files,
src/algebra/Makefile.in, configure.ac: Do not use
notangle during build.
2014-05-14 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-spec1.boot: Fix few problems with
interpreter closures.
2014-05-13 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/ssolve.spad.pamphlet,
src/algebra/dhmatrix.spad.pamphlet,
src/algebra/distro.spad.pamphlet,
src/algebra/tensor.spad.pamphlet,
src/algebra/xhash.spad.pamphlet,
src/algebra/acplot.spad.pamphlet,
src/algebra/expps.spad.pamphlet: De-hunkify last few
pamphlets. Clean up.
2014-05-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/exposed.lsp.pamphlet: unwrap, rename to
src/algebra/exposed.lsp
src/interp/Makefile.in: Adjust.
2014-05-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/gaussian.spad.pamphlet: Improve 0 to complex
power.
2014-05-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/card.spad.pamphlet: Allow 0^0.
2014-05-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/aggcat.spad.pamphlet,
src/algebra/string.spad.pamphlet,
src/interp/match.boot: Remove broken 'stringMatch'.
2014-05-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-spec2.boot: Fix intepreter assignment
to aggregates.
2014-05-11 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-code.boot: Disable incorrect optimization.
2014-05-11 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-coerce.boot: Fix interpreter coercion from
Equation to Boolean.
2014-05-07 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intaf.spad.pamphlet: Fix wrong unevaluated
algebraic integrals.
2014-05-07 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-output.boot: Fix problem with missing
parentheses around plexes.
2014-05-07 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/msgdb.boot: Fix printing of '%i' in types.
2014-05-02 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/expps.spad.pamphlet,
src/algebra/fffg.spad.pamphlet,
src/algebra/hashstate.spad.pamphlet,
src/algebra/jet.spad.pamphlet,
src/algebra/matcat.spad.pamphlet,
src/algebra/numtheor.spad.pamphlet: De-hunkify.
2014-05-02 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/patmatch1.spad.pamphlet
src/interp/g-opt.boot, src/interp/br-search.boot,
src/interp/g-boot.boot, src/interp/macros.lisp,
src/interp/br-con.boot, src/interp/modemap.boot,
src/interp/compiler.boot: Misc cleanups.
2014-05-02 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/buildom.boot, src/interp/g-error.boot,
src/interp/compiler.boot, src/lisp/primitives.lisp:
Nicer error messages.
2014-05-01 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/br-op1.boot, src/interp/format.boot: Fix build
with ecl and gcl.
2014-05-01 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/include/hterror.H1, src/hyper/hterror.c,
src/sman/sman.c, src/graph/view3D/stuff3d.c,
src/clef/edible.c, contrib/emacs/Makefile.in:
Silence some warnings.
2014-05-01 Raoul Bourquin <raoulb@bluewin.ch>
* src/algebra/array2.spad.pamphlet,
src/doc/htex/ug08.htex: More general array indexing.
2014-04-29 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/compiler.boot: Fix compilation of 'error'.
2014-04-27 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/rdeef.spad.pamphlet,
src/algebra/rderf.spad.pamphlet,
src/algebra/rdeefx.spad.pamphlet,
src/algebra/Makefile.in: Improve integration in terms
of 'Ei' and 'erf'.
src/input/integ.input: Add tests.
src/input/fixed.input, src/input/bugs2007.input: Adjust.
2014-04-26 Ralf Hemmecke <ralf@hemmecke.org>
* src/doc/htex/ARRAY2.htex, src/doc/htex/VECTOR.htex: fix double
!! via \spadfunFromX
2014-04-22 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/gaussian.spad.pamphlet: Fix ComplexPatternMatch.
2014-04-18 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-output.boot: Do not crash printing '%'.
2014-04-15 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-syscmd.boot: For ')read' create intermediate
files in current directory.
2014-04-14 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/s-parser.boot: Allow extra semcolon at end of block.
2014-04-14 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/tex.spad.pamphlet,
src/algebra/texmacs.spad.pamphlet,
src/algebra/mathml.spad.pamphlet,
src/algebra/html.spad.pamphlet: Minor cleanup.
2014-04-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/br-util.boot, src/interp/format.boot,
src/interp/br-op1.boot: Improve browsing of
constructors with parameters.
2014-04-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/format.boot: Fix ')display op coerce'.
2014-04-10 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/compiler.boot: Avoid creating strange
unions in 'resolve'.
2014-04-10 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/fortout.spad.pamphlet,
src/algebra/fortran.spad.pamphlet,
src/algebra/forttyp.spad.pamphlet,
src/algebra/outform2.spad.pamphlet,
src/interp/newfort.boot,
src/interp/i-output.boot
src/algebra/Makefile.in: Clean up fortran output.
2014-04-10 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Add helpers for traversing OutputForm.
* outform2.spad.pamphlet: New file with helpers.
src/algebra/tex.spad.pamphlet,
src/algebra/texmacs.spad.pamphlet,
src/algebra/mathml.spad.pamphlet,
src/algebra/formula.spad.pamphlet
src/algebra/html.spad.pamphlet: Use helpers.
src/algebra/Makefile.in: Adjust.
2014-04-09 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/br-saturn.boot, src/interp/util.lisp,
src/interp/i-syscmd.boot, src/interp/br-util.boot,
src/interp/daase.lisp: Misc cleanups.
2014-04-09 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/br-search.boot: Avoid incorrect parse in checkPmParse.
2014-04-06 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/compiler.boot: Do not treat 'OutputFrom'
in special way.
2014-04-06 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/string.spad.pamphlet
src/interp/vmlisp.lisp: Add 'uentries'.
2014-04-06 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/*.spad.pamphlet: s/import/import from/.
2014-04-06 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/combfunc.spad.pamphlet,
src/algebra/op.spad.pamphlet,
src/algebra/trigcat.spad.pamphlet,
src/algebra/expr.spad.pamphlet: Add classical orthogonal
polynomials to expressions.
2014-04-05 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/si.spad.pamphlet,
src/algebra/omcat.spad.pamphlet,
src/algebra/fraction.spad.pamphlet,
src/algebra/symbol.spad.pamphlet,
src/algebra/sf.spad.pamphlet,
src/algebra/integer.spad.pamphlet,
src/algebra/openmath.spad.pamphlet,
src/algebra/string.spad.pamphlet,
src/algebra/gaussian.spad.pamphlet,
src/algebra/list.spad.pamphlet,
src/algebra/float.spad.pamphlet,
src/algebra/Makefile.in: Simplify Open Math code.
2014-04-05 Ralf Hemmecke <ralf@hemmecke.org>
* src/algebra/stream.spad.pamphlet: replace "output" by
"showElements"
2014-04-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/hyper/initx.c, src/graph/view2D/write2d.c,
src/graph/view2D/main2d.c, src/graph/view3D/process3d.c,
src/graph/view3D/main3d.c, src/graph/view3D/write3d.c,
src/graph/Gdraws/psFiles.pamphlet: s/Axiom/FriCAS/
2014-04-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/aggcat.spad.pamphlet,
src/algebra/tree.spad.pamphlet,
src/algebra/naalg.spad.pamphlet,
src/algebra/intpm.spad.pamphlet,
src/algebra/string.spad.pamphlet,
src/algebra/fr.spad.pamphlet,
src/algebra/efstruc.spad.pamphlet,
src/algebra/mts.spad.pamphlet: De-hunkify.
2014-04-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/scene.spad.pamphlet,
src/doc/htex/ug15.htex, src/doc/htex/ug08.htex,
src/doc/htex/ARRAY1.htex, src/doc/ht/graphics.ht:
Fix examples.
2014-04-03 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/hyper/spadint.c: Fix buffer overflow.
2014-04-03 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/compiler.boot: Allow specifing return type
for nulary anonymous functions.
2014-04-03 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/mantepse.spad.pamphlet: De-hunkify.
2014-03-31 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/compiler.boot: Let overload resolution make
choice between variables and literals.
src/algebra/scene.spad.pamphlet,
src/algebra/tree.spad.pamphlet,
src/algebra/pattern.spad.pamphlet,
src/algebra/integer.spad.pamphlet,
src/algebra/view3D.spad.pamphlet,
src/algebra/view2D.spad.pamphlet,
src/algebra/graph.spad.pamphlet: Adjust.
2014-03-28 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/outform.spad.pamphlet: Remove useless exports.
2014-03-26 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/int-top.boot: Fix 'ncloopEscaped'.
2014-03-26 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/rep2.spad.pamphlet,
src/algebra/groebf.spad.pamphlet: Stop using 'autoCoerce'
in algebra.
2014-03-25 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/compiler.boot: Prefer String as argument
type of 'error', report type errors when compiling
to OutputForm.
src/algebra/color.spad.pamphlet,
src/algebra/outform.spad.pamphlet,
src/algebra/fortran.spad.pamphlet,
src/algebra/solvefor.spad.pamphlet,
src/algebra/openmath.spad.pamphlet,
src/algebra/jet.spad.pamphlet,
src/algebra/array2.spad.pamphlet: Adjust.
2014-03-25 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/fortran.spad.pamphlet,
src/algebra/forttyp.spad.pamphlet,
src/algebra/Makefile.in,
src/algebra/fortpak.spad.pamphlet,
src/interp/newfort.boot: Partial cleanup of Fortran
generating code.
2014-03-25 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/rinterp.spad.pamphlet,
src/algebra/rec.spad.pamphlet: De-hunkify.
2014-03-24 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/etc/Makefile.in, src/etc/gen-cpl.lisp: Generate
command.list.
configure.ac, src/Makefile.in: Adjust
src/share/Makefile.in, src/share/algebra/command.list: Remove.
2014-03-24 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/compiler.boot, src/interp/parse.boot:
Assign Boolean type to temporary variables for conditions.
2014-03-23 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/compiler.boot: Signal error on untyped
Lisp forms.
src/algebra/*: Adjust.
2014-03-23 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/nrunfast.boot: Fix 'isDefaultPackageForm?'
2014-03-22 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/scan.boot, src/interp/int-top.boot:
Respect continuation characters in comments.
2014-03-22 Ralf Hemmecke <ralf@hemmecke.org>
* src/doc/Makefile.in (xmpexp.ht): bugfix selection of examples
2014-03-22 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-output.boot, src/interp/i-syscmd.boot,
src/interp/format.boot, src/interp/nruncomp.boot,
src/interp/nrunopt.boot, rc/interp/br-con.boot,
src/interp/compiler.boot, src/doc/ht/man0.ht:
Misc cleanups.
2014-03-22 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/wtpol.spad.pamphlet: Implement missing
function.
2014-03-22 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/si.spad.pamphlet: Add convertion from
SingleInteger to String.
2014-03-22 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/s-parser.boot, src/interp/c-util.boot,
src/interp/modemap.boot, src/interp/postpar.boot,
src/interp/property.lisp, src/interp/parse.boot,
src/interp/compiler.boot: Use 'Sel' instead of
'elt' to represent '$' qualification.
2014-03-19 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/sex.spad.pamphlet,
src/algebra/genufact.spad.pamphlet,
src/algebra/fortran.spad.pamphlet: Decouple SExpression
and OutputForm.
2014-03-19 Ralf Hemmecke <ralf@hemmecke.org>
* src/aldor/aldor/axiom.as: bugfix: comma --> semicolon
2014-03-15 Ralf Hemmecke <ralf@hemmecke.org>
* src/interp/foam_l.lisp: do not change case of filename
2014-03-13 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-output.boot, src/interp/interop.boot,
src/interp/buildom.boot, src/interp/i-coerce.boot:
Consistently use string quotes in output form
of types like "failed".
2014-03-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/g-boot.boot, src/interp/define.boot,
src/interp/slam.boot: When compiling constructors ignore
previous information about constructor kind.
2014-03-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/ncomp.boot: Stop compilation on precompilation
errors.
2014-03-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/int-top.boot: Do not loose input lines with
empty continuation.
2014-03-08 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/scwrap2.boot: Restore support for "<<" and ">>".
2014-03-06 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/wtpol.spad.pamphlet: Implement missing function.
2014-03-06 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* compiler.boot: Fix multiple assignment from a list.
2014-03-01 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/format.boot: Avoid crash when showing
operations in SAE.
2014-02-28 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/perm.spad.pamphlet,
src/algebra/ssolve.spad.pamphlet,
src/algebra/dhmatrix.spad.pamphlet,
src/algebra/numtheor.spad.pamphlet: Dechunkify.
src/input/perm.input: Add test code from Spad file.
2014-02-06 Ralf Hemmecke <ralf@hemmecke.org>
* src/interp/ax.boot: fix rename 'setelt' to 'setelt!'
* src/aldor/aldor/axextend.as: sync with aldor version
2014-02-03 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/scan.boot: Treat page control char as
whitespace.
2014-01-23 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/fspace.spad.pamphlet: Make sure formal
derivatives are commutative.
2014-01-21 Ralf Hemmecke <ralf@hemmecke.org>
* src/input/Makefile.in, src/input/bugs2014.input,
src/algebra/fspace.spad.pamphlet: fix comparison of arguments
2014-01-21 Ralf Hemmecke <ralf@hemmecke.org>
* src/input/bugs2013.input: fix testcase
2013-11-24 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* *: Rename 'setelt' to 'setelt!'.
2013-11-24 Ralf Hemmecke <ralf@hemmecke.org>
* src/interp/setq.lisp: fix ")version" command
2013-11-23 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/compat.boot, src/interp/nlib.lisp,
src/interp/database.boot: Fix HyperDoc errors in
'Dependants' and 'Users'.
2013-11-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/aggcat.spad.pamphlet,
src/algebra/list.spad.pamphlet: Add 'qsetfirst!' and 'qsetrest!'.
src/lisp/primitives.lisp: Add 'qset_first' and 'qset_rest'.
2013-11-20 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/bags.spad.pamphlet,
src/algebra/aggcat.spad.pamphlet: Implement missing functions
in Dequeue.
src/algebra/mset.spad.pamphlet: Remove unused 'bag'.
2013-11-16 Ralf Hemmecke <ralf@hemmecke.org>
* src/etc/fricas: remove SPAD variable
2013-11-16 Ralf Hemmecke <ralf@hemmecke.org>
* Makefile.in, src/etc/fricas, src/interp/i-syscmd.boot: find
aldor at startup
2013-11-16 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/bags.spad.pamphlet,
src/algebra/aggcat.spad.pamphlet,
src/algebra/lmdict.spad.pamphlet,
src/algebra/array1.spad.pamphlet,
src/input/bags.input: Fix ArrayStack.
2013-11-15 Peter Broadbery <p.broadbery@gmail.com>
* src/interp/hashcode.boot, src/interp/foam_l.lisp: Sync with
aldor hash function. Note that this change makes older versions of
aldor incompatible with this code.
2013-11-15 Peter Broadbery <p.broadbery@gmail.com>
* src/interp/interop.boot: Don't try to evaluate conditions on
categories where the category is already unconditionally part of a
category's parents.
2013-11-09 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/g-opt.boot: Use different symbols for labels
and values.
2013-10-12 Ralf Hemmecke <ralf@hemmecke.org>
* src/aldor/Makefile.in: make clean now does not remove cliques.as
2013-09-30 Raoul Bourquin <raoulb@bluewin.ch>
* src/algebra/combfunc.spad.pamphlet: Evaluate the lambertW
function for the special value at -1/e.
2013-09-27 Ralf Hemmecke <ralf@hemmecke.org>
* src/aldor/Makefile.in, src/aldor/Makefile3.in,
configure.ac: Update for free Aldor.
src/aldor/aldor: Add needed files from Aldor distribution.
2013-09-27 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* Makefile.in, src/interp/Makefile.in,
src/doc/Makefile.in, src/etc/Makefile.in: Makefile fixes.
src/scripts/mkdist.sh: Update.
2013-09-25 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-syscmd.boot, src/interp/scwrap2.boot:
Restore pile mode after ')read' or ')compile'.
2013-09-25 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intaf.spad.pamphlet,
src/algebra/curve.spad.pamphlet: Fix wrong changes of variables.
2013-09-22 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intalg.spad.pamphlet,
src/algebra/funcpkgs.spad.pamphlet: Factor Trager
resultant in appropriate extension.
2013-09-22 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intaf.spad.pamphlet,
src/algebra/integrat.spad.pamphlet: Eliminate irrationals
introduced by Euler substitution.
2013-09-20 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* configure.ac: Update for future gcl-2.6.1x versions.
2013-09-19 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/incl.boot, src/share/doc/msgs/s2-us.msgs:
Fix error messages about included files.
2013-09-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/lisp/primitives.lisp: Allow floating point
optimizations for Clozure CL 1.8 and up.
2013-09-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/modhpsol.spad.pamphlet,
src/algebra/rec.spad.pamphlet: Minor cleanups.
2013-09-11 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/fs2ups.spad.pamphlet: Add expander
for undefined functions.
src/input/series3.input: New file.
src/input/Makefile.in: Adjust.
2013-09-11 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/fspace.spad.pamphlet: More efficient
equality for formal derivatives.
2013-09-11 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/lisp/primitives.lisp: Fix problem with gcl-2.6.9
and up.
2013-09-10 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/combfunc.spad.pamphlet: Fix derivatives
of Whittaker functions.
2013-09-10 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intrf.spad.pamphlet,
src/algebra/intef.spad.pamphlet: Preliminary support for
integrating lambertW.
src/input/integ.input, src/input/pmint.input: Update tests.
2013-09-10 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/serexp.spad.pamphlet,
src/algebra/combfunc.spad.pamphlet,
src/algebra/fs2ups.spad.pamphlet,
src/algebra/op.spad.pamphlet,
src/algebra/mrv_limit.spad.pamphlet: Handle a few tractable
functions.
src/algebra/limitps.spad.pamphlet: Use 'mrv_limit' more.
src/input/limit.input: New file.
src/input/Makefile.in: Adjust.
2013-09-09 Franz Lehner <lehner@math.tugraz.at>
* src/algebra/distro.spad.pamphlet: missing conditional
fixed.
2013-09-03 Franz Lehner <lehner@math.tugraz.at>
* src/algebra/distro.spad.pamphlet, src/algebra/distro.input:
cleanup of moment package and missing transformation from
monotone cumulants to moments added.
2013-08-26 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/divisor.spad.pamphlet: More efficient
modular rowEchelon.
2013-08-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/lisp/num_gmp.lisp: Compile Clozure CL GMP support
only on AMD64.
2013-08-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* configure.ac: Accept Clozure CL 1.1x as new enough.
2013-08-19 Waldek Hebisch <hebisch@math.uni.wroc.pl>