| Version 1 (modified by mforbes, 6 years ago) |
|---|
Modular Optimization and Root Finding
This page contains discussions about a modularized optimization and root finding package.
Contents
Interface
Calling Conventions
It would be nice if the calling conventions for each method were as compatible as possible so that it is easy to swap different methods in an out.
Arguments
f or func::
Every driver routine will need to specify a function. Should this argument be called f or func. In SciPy?, both are used about the same amount. (P.S. Why does the definition list Wiki syntax work here?)
x0::
When an initial argument is supplied, the convention seems to be to use x0.
ftol, xtol, etc.::
These seem to be the convention for specifying tolerances. The only problem I have with this is that I would like the option of specifying both absolute and relative tolerances. Perhaps something like xtol and xtol_rel could be used (absolute tolerances are usually easier to deal with in general).
