maxima:rtoy-4158-li2-numer

Last commit made on 2023-07-19
Get this branch:
git clone -b rtoy-4158-li2-numer https://git.launchpad.net/maxima

Branch merges

Branch information

Name:
rtoy-4158-li2-numer
Repository:
lp:maxima

Recent commits

e4d755b... by Raymond Toy <email address hidden>

Add tests for Bug #4158

9c3e6b1... by Raymond Toy <email address hidden>

Fix #4158: Make float(%i) return 1.0*%i

float(li[2](%i)) was not resulting in a numerical value because
float(%i) is %i. The simplifier sees the arg as %i and doesn't
numerically evaluate.

To fix this, modify $float to convert %i to be 1.0*%i. Need to do the
same for bfloat.

This also fixes the issue where li[2](%i),numer was causing a lisp
error. This works because we call $float before calling
bigfloat::li2numer to compute the numerical result.

72bb039... by Raymond Toy <email address hidden>

Remove fftpack5.sse2f

Must of inadvertently added that when adding support for the fftpack5
package. This shouldn't be in the repo, so remove it.

fb7b2b5... by Raymond Toy <email address hidden>

Use compile-file-pathname to get extension.

Originally, only lispworks used `(pathname-type (compile-file-pathname
"foo.lisp"))` to get the fasl extension. However, I tested this with
gcl, cmucl, sbcl, clisp, openmcl, and ecl which all produced the
desired fasl name. I don't have allegro or abcl, but these probably
also work.

Hence, use compile-file-pathname to get the extension for all lisps.

c793082... by Robert Dodier <email address hidden>

Regularize file name extensions: linde1.mc --> linde1.mac, readfile.lsp --> readfile.lisp.
There do not appear to be any other .mc or .lsp files.

f6afd6f... by Robert Dodier <email address hidden>

Rename files named something.UTF-8.mac to something-UTF-8.mac in order to avoid
tickling bug in GCL implementation of DIRECTORY, which is apparently
confused by file names which contain two dots.

8ee6328... by Raymond Toy <email address hidden>

Add links for DLMF and A&S references

Replace the existing references to DLMF and A&S with actual clickable
links.

46d6eb5... by Jaime Villate

interfaces/xmaxima/Tkmaxima/Menu.tcl: Updates name of Xmaxima's HTML manual
from xmaxima.html to index.html

6d39478... by Raymond Toy <email address hidden>

Update value of htmlname

Since we don't rename the html files to be "maxima_<nnn>.html", the
value of `htmlname` can't be "maxima" anymore. It needs to be "*" to
allow for any html file.

Needed to install the html files.

df18272... by Raymond Toy <email address hidden>

Merge branch 'master' into rtoy-no-html-file-renaming