forked from hemmecke/fricas-svn
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeLog
More file actions
5906 lines (4189 loc) · 192 KB
/
ChangeLog
File metadata and controls
5906 lines (4189 loc) · 192 KB
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
2011-01-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/bezout.spad.pamphlet,
src/algebra/fortran.spad.pamphlet,
src/algebra/poly.spad.pamphlet,
src/algebra/ffnb.spad.pamphlet,
src/interp/int-top.boot, src/interp/s-parser.boot,
src/interp/macros.lisp, src/interp/vmlisp.lisp:
Misc cleanups.
2011-01-15 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/msgdb.boot, src/interp/nruncomp.boot,
src/interp/debug.lisp, src/interp/functor.boot,
src/interp/i-output.boot, src/interp/c-util.boot,
src/interp/setq.lisp, src/interp/macros.lisp:
Misc cleanups.
2011-01-14 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Martin Rubey <martin.rubey@math.uni-hannover.de>
* src/algebra/mantepse.spad.pamphlet,
src/algebra/modhpsol.spad.pamphlet: Guessing of
algebraic dependencies.
2011-01-14 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/info.boot:knownInfo1(): Also consider
source when comparing signatures.
2011-01-11 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-funsel.boot: Avoid unwanted numeric
evaluation.
2011-01-08 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/naalgc.spad.pamphlet,
src/algebra/odealg.spad.pamphlet,
src/algebra/divisor.spad.pamphlet,
src/algebra/intclos.spad.pamphlet,
src/algebra/algcat.spad.pamphlet: Fix confusion
with regularRepresentation.
2011-01-08 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/naalgc.spad.pamphlet,
src/algebra/lie.spad.pamphlet: Fix leftRankPolynomial.
2011-01-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/macros.lisp: Add format specific output
functions.
src/algebra/html.spad.pamphlet: Use sayHtml.
2011-01-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/define.boot: Handle toplevel 'where'.
2010-12-15 Ralf Hemmecke <ralf@hemmecke.de>
* configure.ac, INSTALL: rename from --with-... to --enable-...
--with-algebra-optimization ==> --enable-algebra-optimization
--with-gmp ==> --enable-gmp
2010-12-08 Ralf Hemmecke <ralf@hemmecke.de>
* configure.ac: add test for libgmp.so and gmp.h
2010-12-03 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intrf.spad.pamphlet: Fix explimitedint.
2010-12-03 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/rdeef.spad.pamphlet,
src/algebra/rdesys.spad.pamphlet: Correct bounds for RDE.
2010-12-03 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/efstruc.spad.pamphlet: Fix normaliztion
of asec and acsc.
2010-11-28 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Avoid wrong log simplification.
* src/algebra/rdeef.spad.pamphlet:linearLog?(): Make
sure log does not appear in degree 0 term.
2010-11-28 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intrf.spad.pamphlet: Fail only when needed.
2010-11-28 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intaf.spad.pamphlet,
src/algebra/intalg.spad.pamphlet: Improve extended integration.
src/algebra/curve.spad.pamphlet : Comment fix.
2010-11-28 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/define.boot: A fix for conditional exports.
src/algebra/catdef.spad.pamphlet: Adjust.
2010-11-26 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intef.spad.pamphlet:alg__split__root0(): Fix
wrong root simplification introduced in rev. 903.
2010-11-25 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/mantepse.spad.pamphlet:qDiffDSV(): Avoid
unwanted truncation.
2010-11-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/primitives.lisp: Work around Closure CL compiler bug.
2010-11-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/Makefile.in: Fix build with GCL.
2010-11-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/kl.spad.pamphlet, src/interp/i-syscmd.boot,
src/interp/primitives.lisp: Correct saving of kernels.
2010-11-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/Makefile.in, src/lisp/Makefile.in: More
thorough cleaning.
2010-11-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/input/Makefile.in: Fix breakage due to r. 945.
2010-11-11 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-syscmd.boot: spadClosure?: Stricter
check for Spad closures.
2010-11-11 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/fspace.spad.pamphlet: Run not found case only
when needed.
2010-11-08 Martin Rubey <martin.rubey@math.uni-hannover.de>
* contrib/emacs/Makefile.in: allow arguments to efricas
2010-11-03 Martin Baker <ax87438@martinb.com>
Add new graphic framework.
* src/algebra/scene.spad.pamphlet: New file
src/algebra/Makefile.in, src/algebra/boo-cat.input,
src/algebra/boo-dom1.input, src/algebra/boo-pack2.input:
Adjust.
2010-11-03 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/combfunc.spad.pamphlet: Add special convertions
to input form.
2010-11-02 Elias Pipping
* Makefile.in: Separate install-contrib and install-src targets.
2010-10-30 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-toplev.boot: Try '.fricas.input' before
'.axiom.input'.
src/interp/int-top.boot, src/interp/util.lisp: Run
init file after initializing algebra output.
2010-10-29 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/gaussian.spad.pamphlet: Fix branches for
atan, asin and acos.
2010-10-29 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/util.lisp: Fix build with recent ECL.
2010-10-29 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* configure.ac, src/lib/gmp_wrap.c: Support GMP with sbcl
for 32-bit machines.
2010-10-29 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/weier.spad.pamphlet: Fix and clean up.
2010-10-29 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/mts.spad.pamphlet: Give 0 for coefficients
after end of stream.
2010-10-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/elfuts.spad.pamphlet: Better series expanders
for elliptic functions.
src/input/elfuts.input.pamphlet,
src/input/mantepse.input.pamphlet: Update.
2010-10-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/input/ellip.input.pamphlet: New test file.
src/input/Makefile.in: Adjust.
2010-10-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/fspace.spad.pamphlet: Fix 'belong?' in FS and ES.
src/algebra/combfunc.spad.pamphlet: Remove workaround.
2010-10-19 Martin Rubey <martin.rubey@math.uni-hannover.de>
* contrib/emacs/fricas.el: repair fricas-up-input
2010-10-18 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/combfunc.spad.pamphlet,
src/algebra/expr.spad.pamphlet,
src/algebra/op.spad.pamphlet,
src/algebra/trigcat.spad.pamphlet: Add a bunch of special
functions.
2010-10-18 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/fs2expxp.spad.pamphlet,
src/algebra/fs2ups.spad.pamphlet,
src/algebra/limitps.spad.pamphlet: Change strings to
symbols.
2010-10-18 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/elfuts.spad.pamphlet: Use parameter instead of
modulus as argument to elliptic functions.
2010-10-17 Martin Rubey <martin.rubey@math.uni-hannover.de>
* contrib/emacs/fricas.el: improve startup and handling of
multiline input
2010-10-13 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/info.boot: Fix a bug with conditional type info.
2010-10-13 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/manip.spad.pamphlet,
patching file src/interp/c-util.boot: Misc cleanups.
2010-10-13 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/clifford.spad.pamphlet,
src/algebra/combfunc.spad.pamphlet,
src/algebra/dirichlet.spad.pamphlet,
src/algebra/export3D.spad.pamphlet,
src/algebra/fspace.spad.pamphlet,
src/algebra/intef.spad.pamphlet,
src/algebra/integrat.spad.pamphlet,
src/algebra/numarr.spad.pamphlet,
src/algebra/rec.spad.pamphlet,
src/algebra/tensor.spad.pamphlet: Whitespace cleanup.
2010-10-12 Martin Rubey <martin.rubey@math.uni-hannover.de>
* contrib/emacs/fricas.el: add LaTeX error handling to
fricas-insert-TeX
2010-10-05 Martin Rubey <martin.rubey@math.uni-hannover.de>
* src/algebra/combfunc.spad.pamphlet,
src/algebra/op.spad.pamphlet: hypergometric -> hypergeometric
2010-10-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/combfunc.spad.pamphlet,
src/algebra/expr.spad.pamphlet,
src/algebra/fspace.spad.pamphlet,
src/algebra/op.spad.pamphlet,
src/algebra/trigcat.spad.pamphlet: Add hypergeometric and Meijer
functions.
2010-10-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/nruncomp.boot, src/interp/nrunfast.boot:
Handle functions conditioned on %.
2010-10-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/liouv.spad.pamphlet: Fix dilog(1).
2010-09-28 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Fixes SF 2536411.
* src/algebra/efstruc.spad.pamphlet,
src/algebra/integrat.spad.pamphlet,
src/algebra/liouv.spad.pamphlet,
src/algebra/op.spad.pamphlet: Better normaliztion of
Liouvillian functions.
2010-09-28 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/efstruc.spad.pamphlet,
src/algebra/integrat.spad.pamphlet: Normalize trigonometric
constants.
2010-09-23 Aleksej Saushev <asau@inbox.ru>
* src/hyper/Makefile.in, src/sman/Makefile.in,
src/graph/viewman/Makefile.in, src/lib/Makefile.in,
src/lisp/Makefile.in, src/clef/Makefile.in:
Don't spread textual substitutions all over the text.
2010-09-22 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Bignums via gmp in sbcl.
* num_sb.lisp, gmp_wrap.c: New files.
src/interp/util.lisp, src/lisp/fricas-lisp.lisp: Call
new functions.
configure.ac, src/lib/Makefile.in, src/lisp/Makefile.in: Adjust.
2010-09-22 Gabriel Dos Reis <gdr@cs.tamu.edu>
patch identified by
Alfredo Portes <doyenatccny@gmail.com>
* src/interp/int-top.boot: Eliminate double prompt at
startup.
2010-09-22 Aleksej Saushev <asau@inbox.ru>
* src/scripts/mkdist.sh: Simplify removal of ".svn"
subdirectories.
2010-09-12 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/defaults.spad.pamphlet,
src/algebra/sets.spad.pamphlet,
src/algebra/array1.spad.pamphlet: Improve sort and set
operations.
2010-09-11 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 Weierstrass elliptic
functions.
2010-09-11 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intaf.spad.pamphlet: Integration improvement.
2010-09-11 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/compiler.boot: Add '$tryRecompileArguments' flag.
src/algebra/mantepse.spad.pamphlet: Use it, adjust.
2010-09-09 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/intef.spad.pamphlet: Split integrals involving
multiple square roots (fixes SF 2928663).
2010-09-09 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 polylog.
2010-09-09 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/manip.spad.pamphlet: Replace strings by
symbols.
2010-07-20 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/nrunfast.boot, src/interp/nruncomp.boot,
src/interp/nrunopt.boot, src/interp/category.boot,
src/interp/wi2.boot, src/interp/nrungo.boot,
src/interp/Makefile.in, src/interp/primitives.lisp,
src/interp/interop.boot, src/interp/simpbool.boot,
src/interp/setq.lisp, src/interp/macros.lisp,
src/interp/define.boot, src/interp/spad.lisp: Misc
cleanups, merge ggreater.lisp into macros.lisp.
ggreater.lisp : remove.
2010-07-20 Ralf Hemmecke <ralf@hemmecke.de>
* src/algebra/exposed.lsp.pamphlet,
src/algebra/ideal.spad.pamphlet,src/algebra/idecomp.spad.pamphlet,
src/algebra/qalgset.spad.pamphlet, src/hyper/pages/ug08.ht,
src/share/algebra/command.list, src/share/algebra/topics.data:
Rename PolynomialIdeals to PolynomialIdeal
2010-07-19 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 derivatives of
Airy functions and Lambert W.
2010-07-09 Martin Rubey <martin.rubey@univie.ac.at>
* src/algebra/fs2expxp.spad.pamphlet,
src/algebra/fs2ups.spad.pamphlet: make ATANFLAG into a union type
and correct bugs (typos) in fs2expxp.
2010-07-08 Martin Rubey <martin.rubey@univie.ac.at>
* src/input/mantepse.input.pamphlet: Exhibit failure in RECOP.
2010-07-08 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/fspace.spad.pamphlet: Allow application
of operators to up to 9 arguments.
2010-07-08 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Fix problem in remove__denoms.
* src/algebra/vecrec.spad.pamphlet: remove__denoms(): Fix
initialization of result of division.
2010-07-07 Martin Rubey <martin.rubey@univie.ac.at>
* src/input/unittest.spad.pamphlet: remove wrong reference to
mantepse and exposure of RECOP.
2010-06-30 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/dirichlet.spad.pamphlet: Add count argument to
'additive?' and 'multiplicative?'.
Minor adjustments.
2010-06-29 Martin Rubey <martin.rubey@univie.ac.at>
* src/algebra/dirichlet.spad.pamphlet,
src/input/dirichlet.input.pamphlet: add domain for computing in
the Dirichlet ring.
* contrib/emacs/fricas.el: add < and > as punctuation to the
syntax table.
2010-06-25 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/ncomp.boot: walkForm(): Print error
message instead of invoking debugger.
2010-06-23 Martin Baker <ax87438@martinb.com>
Support graphic export in Wavefront .obj format.
* src/algebra/export3d.spad.pamphlet: New file.
src/algebra/Makefile.in, src/algebra/boo-dom1.input:
Adjust.
2010-06-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/c-util.boot, src/interp/compiler.boot
src/interp/define.boot, src/interp/format.boot,
src/interp/functor.boot, src/interp/g-opt.boot,
src/interp/i-eval.boot, src/interp/i-funsel.boot,
src/interp/i-intern.boot, src/interp/interop.boot,
src/interp/i-output.boot, src/interp/msgdb.boot,
src/interp/newfort.boot: Misc error corrections
and improvements for problems uncovered by Shoe.
2010-06-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/apply.boot, src/interp/buildom.boot,
src/interp/format.boot, src/interp/i-intern.boot,
src/interp/i-map.boot, src/interp/i-output.boot,
src/interp/i-spec2.boot, src/interp/pspad1.boot,
src/interp/wi1.boot, src/interp/wi2.boot:
Shoe keywords as symbols need "".
2010-06-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/*.boot: Add ')package' declarations.
2010-06-19 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/nrunfast.boot, src/interp/bootfuns.lisp
src/interp/nlib.lisp, src/interp/patches.lisp,
src/interp/slam.boot, src/interp/debug.lisp,
src/interp/br-saturn.boot, src/interp/i-syscmd.boot,
src/interp/comp.lisp, src/interp/pathname.boot,
src/interp/setq.lisp, src/interp/g-boot.boot,
src/interp/macros.lisp, src/interp/vmlisp.lisp:
Misc cleanups.
2010-06-19 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/g-timer.boot: Faster timing routine.
2010-06-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Add domains for machine precision numeric vectors and
matrices.
* src/algebra/numarr.spad.pamphlet: New file
src/algebra/boo-dom1.input, src/algebra/Makefile.in: Adjust.
src/interp/primitives.lisp: Add new primitives.
2010-06-17 Martin Baker <ax87438@martinb.com>
* src/algebra/html.spad.pamphlet: New file
src/algebra/boo-dom1.input, src/algebra/Makefile.in
src/interp/setvars.boot, src/interp/setvart.boot
src/interp/i-output.boot: Add HTML output format.
2010-06-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/scripts/document.in, src/interp/patches.lisp,
src/interp/setvars.boot, src/interp/msg.boot,
src/interp/i-output.boot, src/interp/g-boot.boot,
src/interp/vmlisp.lisp: Misc cleanups.
2010-06-16 Martin Rubey <martin.rubey@univie.ac.at>
* contrib/emacs/fricas.el: correct fricas-marker-format-function
so that startTypeTime is correctly recognized. (tested with sbcl
only)
* contrib/emacs/fricas.el: also set text-properties of final bit
when restoring history, add = as punctuation to the syntax table.
2010-06-11 Martin Rubey <martin.rubey@univie.ac.at>
* contrib/emacs/Makefile.in: add missing $ for auto-mode-alist.
It should actually be \\', but I was to lazy to look up how to
escape ' in bash.
2010-06-09 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/ore.spad.pamphlet: Faster multiplication
in Ore algebras.
2010-06-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/oct.spad.pamphlet,
src/hyper/htinp.c, src/interp/comp.lisp,
src/interp/macros.lisp, src/interp/define.boot: Minor cleanups.
2010-06-01 Martin Rubey <martin.rubey@univie.ac.at>
* src/input/lodof.input.pamphlet: convert to unittesting facility,
add another currently failing test
* src/input/mantepse.input.pamphlet: remove useless computation.
2010-05-31 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/efstruc.spad.pamphlet: Try to simplify
logarithms of algebraic constants.
2010-04-28 Martin Rubey <martin.rubey@univie.ac.at>
* contrib/emacs/fricas.el: correct syntax table.
2010-04-11 Martin Rubey <martin.rubey@univie.ac.at>
* src/input/bugs2010.input.pamphlet: exhibit failuire in coercion
code when types with constant parameters are involved.
2010-04-08 Martin Rubey <martin.rubey@math.uni-hannover.de>
* contrib/emacs/fricas.el: add requirements for tab completion of
file names.
2010-04-07 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/lib/sockio-c.c, src/include/sockio-c.H1,
src/sman/sman.c: Shorten startup/shutdown delays.
2010-04-07 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Fix problem with building graphic examples.
* src/algebra/view3D.spad.pamphlet: makeViewport3D(): Do
not trash old viewport.
src/algebra/view2D.spad.pamphlet: makeViewport2D(): Likewise.
src/hyper/pages/ug07.ht, src/input/mobius.input: Close
viewports.
2010-03-30 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Misc (mostly whitespace) cleanup.
* src/include/htadd.H1, src/include/session.H1,
src/include/sman.H1, src/include/spadbuf.H1,
src/include/spadclient.H1, src/include/useproto.h: Remove.
src/clef/edible.c, src/graph/*/*, src/hyper/*,
src/include/*, src/lib/*, src/sman/*,
src/interp/primitives.lisp, src/interp/clammed.boot:
Whitespace cleanup. Clean up header formatting. Move
static declarations form headers to corresponding files.
Makefile.in, src/algebra/Makefile.in, src/interp/Makefile.in:
Clean up.
src/sman/Makefile.in, src/graph/Gdraws/Makefile.in,
src/clef/Makefile.in: Adjust.
2010-03-30 Martin Rubey <martin.rubey@univie.ac.at>
* src/algebra/mantepse.spad.pamphlet,
src/input/mantepse.input.pamphlet: cleanup options for checking
solutions.
2010-03-27 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/modmonom.spad.pamphlet,
src/algebra/modhpsol.spad.pamphlet,
src/interp/i-util.boot, src/interp/parsing.lisp,
src/interp/patches.lisp, src/interp/ht-util.boot,
src/interp/server.boot, src/interp/util.lisp,
src/interp/i-spec2.boot, src/interp/g-opt.boot,
src/interp/setq.lisp, src/interp/format.boot,
src/interp/i-eval.boot, src/boot/typrops.boot: Misc cleanups.
src/interp/osyscmd.boot: Remove, move content to
src/interp/i-syscmd.boot.
src/interp/Makefile.in: Adjust.
2010-03-27 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Fix problem with passing interpreted functions to algebra.
* src/interp/i-toplev.boot: interpret1(): Always evaluate.
Remove '$eval' variable.
src/interp/i-map.boot: Likewise.
2010-03-23 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Ralf Hemmecke <ralf@hemmecke.de>
* Makefile.in: Remove support for bundling gcl.
configure.ac: Likewise, cleanup.
2010-03-22 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/catdef.spad.pamphlet,
src/algebra/tensor.spad.pamphlet,
src/algebra/unittest.spad.pamphlet,
src/algebra/clifford.spad.pamphlet,
src/algebra/rec.spad.pamphlet,
src/algebra/multpoly.spad.pamphlet,
src/algebra/float.spad.pamphlet,
src/algebra/permgrps.spad.pamphlet,
src/algebra/vector.spad.pamphlet: Whitespace cleanup.
2010-03-22 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/multsqfr.spad.pamphlet,
src/algebra/multfact.spad.pamphlet: Remove useless imports.
2010-03-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/draw.spad.pamphlet: draw(): Explicitely
turn "title" into symbol.
2010-03-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/liouv.spad.pamphlet,
src/algebra/op.spad.pamphlet,
src/algebra/trigcat.spad.pamphlet,
src/algebra/expr.spad.pamphlet,
src/algebra/limitps.spad.pamphlet: Add Fresnel integrals.
2010-03-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/draw.spad.pamphlet,
src/algebra/fs2expxp.spad.pamphlet,
src/algebra/quat.spad.pamphlet,
src/algebra/fs2ups.spad.pamphlet,
src/algebra/mantepse.spad.pamphlet,
src/algebra/fr.spad.pamphlet,
src/algebra/oct.spad.pamphlet,
src/algebra/limitps.spad.pamphlet: Replace strings
by symbols.
2010-03-21 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/clip.spad.pamphlet,
src/algebra/view2D.spad.pamphlet
src/graph/view2D/viewport2D.c: Plotting fixes.
2010-03-20 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/graph/view2D/header2.h, src/graph/view2D/viewport2D.c:
Misc cleanups.
2010-03-16 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/c-util.boot, src/interp/setq.lisp: Recognize
constructors as side effect free.
2010-03-14 Martin Rubey <martin.rubey@univie.ac.at>
* src/input/mantepse.input.pamphlet: more (failing) tests
concerning handling of options.
* src/algebra/mantepse.spad.pamphlet,
src/input/mantepse.input.pamphlet: fix problem with Somos==true
and rewrite option handling, more tests.
2010-03-13 Martin Rubey <martin.rubey@univie.ac.at>
* src/input/mantepse.input.pamphlet: Somos==true is not working
correctly, Somos and maxPower==1 should throw an error.
* src/algebra/unittest.spad.pamphlet: fix handling of unexpected
pass in xftestLibraryError.
* src/input/unittest.input.pamphlet, src/input/Makefile.in: test
unittesting facility. (1 failure!)
* src/input/mantepse.input.pamphlet: Somos==true is not working
correctly, Somos and maxPower==1 should throw an error.
2010-03-11 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/permgrps.spad.pamphlet: Restructure and
speed up.
2010-02-23 Waldek Hebisch <hebisch@math.uni.wroc.pl>
New parser for Spad compiler.
* src/interp/s-parser.lisp: New file.
src/interp/parsing.lisp, src/interp/postpar.boot,
src/interp/macros.lisp, src/interp/Makefile.in,
src/interp/util.lisp, src/interp/bootlex.lisp: Adjust.
src/interp/newaux.lisp, src/interp/fnewmeta.lisp,
src/interp/fnew.meta: Remove.
2010-02-20 Ralf Hemmecke <ralf@hemmecke.de>
* src/interp/g-error.boot, src/interp/setvart.boot,
src/interp/spaderror.lisp, src/lisp/fricas-package.lisp: introduce
new ')set breakmode quit' which quits on error with non-zero exit
code
2010-02-20 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/mfinfact.spad.pamphlet,
src/algebra/twofact.spad.pamphlet: Try to avoid field
extensions during factorization.
2010-02-20 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/vecrec.spad.pamphlet,
src/algebra/u32vec.spad.pamphlet: Spent less time in
rational reconstruction.
2010-02-20 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/listgcd.spad.pamphlet: localgcd(): Use
heuristic gcd also for high degree.
2010-02-18 Martin Rubey <martin.rubey@univie.ac.at>
* src/algebra/ssolve.spad.pamphlet: do not evaluate coefficients
too eagerly.
* src/algebra/mantepse.spad.pamphlet: delete unused line.
2010-02-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-coerfn.boot: Faster coercions for univariate
polynomials.
2010-02-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-coerce.boot, src/interp/setq.lisp
src/interp/clammed.boot: Cache function lookups
during coercions.
2010-02-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/poly.spad.pamphlet: Faster polynomial
multiplication in commutative case.
2010-02-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/multpoly.spad.pamphlet: Faster 'univariate'.
2010-02-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/polycat.spad.pamphlet: Faster 'map' for
univariate polynomials.
2010-02-17 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/indexedp.spad.pamphlet: Faster polynomial
addition.
2010-02-16 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Faster interpreter coercion.
* src/interp/i-coerce.boot: coerceRetract(): Remove useless
code.
findRetractMms1(): Separate from retractByFunction().
src/interp/setq.lisp, src/interp/clammed.boot: Memoize
findRetractMms() and getConstantFromDomain().
2010-02-16 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/poly.spad.pamphlet: Faster coefficient.
2010-02-15 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-coerfn.boot: Sy2OV(): Detect failing
coercion.
2010-02-15 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/buildom.boot, src/interp/i-coerce.boot:
Faster coercion for unions.
2010-02-14 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/multpoly.spad.pamphlet: Compute monomials
faster.
2010-02-14 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/u32vec.spad.pamphlet: Speed up gcd when
degrees of arguments differ a lot.
2010-02-10 Martin Rubey <martin.rubey@univie.ac.at>
* src/algebra/mantepse.spad.pamphlet,
src/input/mantepse.input.pamphlet: add Somos option, add
checkOption, clean up guessADE/guessRec/guessFE.
2010-02-08 Martin Rubey <martin.rubey@univie.ac.at>
* src/algebra/unittest.spad.pamphlet: add colon to warnings.
2010-02-08 Martin Rubey <martin.rubey@math.uni-hannover.de>
* src/algebra/mantepse.spad.pamphlet: beautify debugging messages,
fix documentation typos.
* src/algebra/mantepse.spad.pamphlet,
src/algebra/modhpsol.spad.pamphlet,
src/input/mantepse.input.pamphlet: check solutions also when
guessing over prime fields, allow polynomials over prime fields as
coefficients.
* src/algebra/intfact.spad.pamphlet: prime?(): do the right thing:
really ignore sign when deciding if number is prime.
2010-02-08 Martin Rubey <martin.rubey@univie.ac.at>
* src/input/mantepse.input.pamphlet: add test to see whether
checking is done for guessing over prime fields, and whether
guessing polynomials with algebraic coefficients works.
2010-02-08 Francois Maltey <fmaltey@nerim.fr>
Martin Rubey <martin.rubey@univie.ac.at>
Add VectorSpaceBasis domain.
* src/algebra/vsbasis.spad.pamphlet,
src/input/vsbasis.input.pamphlet: New files.
src/algebra/boo-dom2.input, src/algebra/Makefile.in,
src/input/Makefile.in: Adjust.
2010-02-08 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Fix for 'has' test.
* src/interp/nrunfast.boot: lazyMatch(): Test for another
form of LENGTH.
2010-02-08 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Martin Rubey <martin.rubey@univie.ac.at>
* src/algebra/intfact.spad.pamphlet: prime?(): Ignore sign
when deciding if number is prime.
src/algebra/numtheor.spad.pamphlet: Adjust.
2010-02-07 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/transsolve.spad.pamphlet: Use linear solver
for linear systems of expressions.
src/algebra/solvelin.spad.pamphlet: Export intoMatrix.
2010-02-07 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/ore.spad.pamphlet,
src/algebra/poly.spad.pamphlet: Remove wrong duplicate definitions
of '^'.
2010-02-07 Martin Rubey <martin.rubey@univie.ac.at>
* src/algebra/catdef.spad.pamphlet: add default implementation for
convert()@INFORM to Finite.
* src/input/mantepse.input.pamphlet: add package call to make
guessing over AN succeed. Add test demonstrating bad gcd in
GUESSP with four variables.
* src/algebra/aggcat.spad.pamphlet,
src/algebra/catdef.spad.pamphlet, src/algebra/lodof.spad.pamphlet,
src/algebra/mring.spad.pamphlet, src/algebra/vector.spad.pamphlet:
create default definition for random in Finite and use it.
* src/input/finite.input.pamphlet: new testsuite testing that
lookup and index are inverses in domains with Finite.
2010-02-05 Martin Rubey <martin.rubey@univie.ac.at>
* src/algebra/vector.spad.pamphlet: add missing operations for
DirectProductCategory when Finite.
2010-02-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/listgcd.spad.pamphlet,
src/algebra/pgcd.spad.pamphlet,
src/algebra/u32vec.spad.pamphlet,
src/algebra/poly.spad.pamphlet,
src/interp/primitives.lisp: Faster polynomial gcd.
2010-02-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/modhpsol.spad.pamphlet:
naiveBeckermannLabahnMultipoint(): Add sanity test.
2010-02-04 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* Makefile.in: Correct typo.
2010-02-03 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/i-funsel.boot: constructSubst(): Make more
efficient by using prebuild argument markers.
2010-01-31 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/float.spad.pamphlet: Compute e faster.
2010-01-30 Martin Rubey <martin.rubey@univie.ac.at>
* src/algebra/unittest.spad.pamphlet: cleanup, report unexpected
passes.
* src/input/mantepse.input.pamphlet: add another test exhibiting a
wrong simplification in RECOP.
2010-01-29 Martin Rubey <martin.rubey@univie.ac.at>
* src/input/mantepse.input.pamphlet: add tests for guessing over
prime field.
* src/algebra/ssolve.spad.pamphlet: correct types in testcases and
add another test.
2010-01-28 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/taylor.spad.pamphlet: revert(): Handle
series with coefficient of 'x' not equal to 1.
2010-01-28 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/algebra/catdef.spad.pamphlet,
src/algebra/naalgc.spad.pamphlet,
src/algebra/opalg.spad.pamphlet,
src/algebra/trigcat.spad.pamphlet: Remove commented out code.
2010-01-28 Waldek Hebisch <hebisch@math.uni.wroc.pl>
Avoid too long argument lists when concatenating strings.
* src/interp/macros.lisp: replaceString(): New function.
src/interp/g-util.boot: concatenateStringList(): New
function, use replaceString.
src/interp/bc-solve.boot, src/interp/ht-util.boot,
src/interp/pspad1.boot, src/interp/br-saturn.boot,
src/interp/i-output.boot, src/interp/i-toplev.boot:
Use concatenateStringList.
2010-01-27 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/hyper/lex.c: reset_connection(): Avoid crash
writing to constant string.
2010-01-27 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/nlib.lisp, src/interp/util.lisp,
src/interp/macros.lisp, src/interp/vmlisp.lisp,
src/lisp/fricas-lisp.lisp, src/lisp/fricas-package.lisp:
Partial support for Poplog.
2010-01-26 Martin Rubey <martin.rubey@math.uni-hannover.de>
* src/algebra/numtheor.spad.pamphlet: carmichaelLambda():
New function.
2010-01-25 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* src/interp/patches.lisp: eval(): Suppress compiler
warnings.
2010-01-23 Martin Baker <ax87438@martinb.com>