~peterpall/maxima/+git/maxima.code:rtoy-defmfunify-cobyla

Last commit made on 2020-04-14
Get this branch:
git clone -b rtoy-defmfunify-cobyla https://git.launchpad.net/~peterpall/maxima/+git/maxima.code

Branch merges

Branch information

Name:
rtoy-defmfunify-cobyla
Repository:
lp:~peterpall/maxima/+git/maxima.code

Recent commits

3353ade... by Raymond Toy <email address hidden>

Clean up cobyla interface

* Remove old implementation code
* Add docstring that was originally part of fmin_cobyla.mac
* Indent new code a bit better so the lines aren't so long

371be87... by Raymond Toy <email address hidden>

Convert fmin_coblya to use defmfun

This basically removes the maxima code that set up things, and the
wrapper to cobyla, simplifying lots of stuff.

rtest_cobyla.mac still produces the same results.

99e81ec... by Wolfgang Dautermann <email address hidden>

Fixed some typos in the german manpage.

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

Use defmfun to define dgemm

By using defmfun to define dgemm, we can get rid of the wrappers
without loss of functionality, and get better error messages.

5fa1a20... by Wolfgang Dautermann <email address hidden>

German manpage: Use links to the german translation of the Maxima homepage.

And use .UR .UE groff macros for URLs as recommended.

491d71e... by Raymond Toy <email address hidden>

Convert run_testsuite to use defmfun.

Straighforward change to rename run-testsuite as $run_testsuite using
defmfun. Get rid of the original $run_testsuite which basically just
called run-testsuite anyway.

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

Use defmfun instead of defun-checked

The dlsode functions don't do anything really special, so we can just
replace defun-checked with defmfun.

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

Merge branch 'master' into rtoy-defmfun-keyword-args

78ae6da... by Raymond Toy <email address hidden>

Remove old defun-checked code

We had already commented thme out, so let's remove them now.

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

Change how functions with keywords is printed

For

(defmfun $foobar7 (a b &key (c 42) d)
  (list '(mlist) a b c d))

we now print the function out like

foobar7(a, b, c = 42, d = false)