Re: [fricas-devel] btscan2.boot query (is there a possible error in the code)

2021-10-11 Thread Ralf Hemmecke
Hi, > I was looking at reimplementing the boot code in another language, If BOOT goes away that would be good. We aim rather into the direction of rewriting it into SPAD than LISP. But it is not a priority. > I think I'll stick with my first plan of just dealing with the Aldor > compiler. Oh.

Re: [fricas-devel] btscan2.boot query (is there a possible error in the code)

2021-10-11 Thread oldk1331
Hi, The arguments (x,y) to dqAppend are "double ended queue", implemented as "head-tail linked list", note that the car and cdr of x/y have shared cons cell, for example: (setq l1 '(a b c d e)) (setq x (cons l1 (last l1))) (setq l2 '(k l m n o)) (setq y (cons l2 (last l2))) (rplacd (cdr x) (car