~peterpall/maxima/+git/maxima.code:rtoy-compute-share-subdirs

Last commit made on 2017-05-08
Get this branch:
git clone -b rtoy-compute-share-subdirs https://git.launchpad.net/~peterpall/maxima/+git/maxima.code

Branch merges

Branch information

Name:
rtoy-compute-share-subdirs
Repository:
lp:~peterpall/maxima/+git/maxima.code

Recent commits

60ad297... by Raymond Toy <email address hidden>

Compute share-subdirs at startup instead during configure.

Basically restores the code from commit 2627603 that computed the
share subdirs at start up instead of using a fixed set (which is now
derived by configure). Needs more testing, especially with gcl.

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

Update dependencies.

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

Compile the functions just once, in dlsode_init

Previously, dlsode_step would compile up the derivatives every time.
This is particularly bad for lisps with slow compilers like gcl. And
speeds up things for other lisps too since the the derivatives don't
change between calls.

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

Fix typo when converting the original maxima code to lisp.

Need to cons r[1] onto r[2] so that we get [t,y1,y2,...] instead of
[t,[y1,y2,...]]. This makes it compatible with the output from rk.

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

gcl doesn't like (in-package #:maxima)

Just use "MAXIMA" for gcl.

25ebeca... by Raymond Toy <email address hidden>

Fix typo: "::components"

0812f6b... by Raymond Toy <email address hidden>

Merge branch 'rtoy-odepack', adding ODEPACK's DLSODE

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

Move dlsode routine to dlsode-interface.lisp.

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

Check for error conditions.

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

Ignore some unused parameters to Jacobian evaluation routine.