changeset 6812:da3d4bb32f35

[project @ 2007-08-10 20:14:19 by jwe]
author jwe
date Fri, 10 Aug 2007 20:14:19 +0000
parents 3fe394f8502b
children 75d99621f850
files ChangeLog ROADMAP
diffstat 2 files changed, 24 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-08-10  Søren Hauberg  <hauberg@gmail.com>
+
+	* ROADMAP: Update for current sources.
+
 2007-07-26  John W. Eaton  <jwe@octave.org>
 
 	* configure.in: Also look for glpk/glpk.h.
@@ -318,7 +322,7 @@
 	* Makeconf.in (simple-move-if-change-rule,
 	(builddir-move-if-change-rule): New macros.
 
-2006-11-11  Soren Hauberg  <soren@hauberg.org>
+2006-11-11  Søren Hauberg  <hauberg@gmail.com>
 
 	* examples/Makefile.in (uninstall): Add missing semicolon.
 
@@ -528,7 +532,7 @@
 2006-09-27  John W. Eaton  <jwe@octave.org>
 
 	* mkoctfile.in [--mex]: Include -I. in incflags.
-	From Soren Hauberg <soren@hauberg.org>.
+	From Søren Hauberg <hauberg@gmail.com>.
 
 2006-09-26  John W. Eaton  <jwe@octave.org>
 
@@ -910,7 +914,7 @@
 	* configure.in: Use it.
 	* Makeconf.in: Substitute DESKTOP_FILE_INSTALL.
 
-	* octave.desktop.in: New file.  From Soren Hauberg <soren@hauberg.org>.
+	* octave.desktop.in: New file.  From Søren Hauberg <hauberg@gmail.com>.
 	* examples/Makefile.in (SOURCES): Add it to the list.
 	(octave.desktop): New target.
 	(all): Depend on octave.desktop.
--- a/ROADMAP
+++ b/ROADMAP
@@ -1,58 +1,63 @@
 Here is an attempt at a simple explanation of the directory layout for
 Octave's source files.
 
+  dlfcn         -- dlopen, dlsym, dlerror, and dlclose for AIX
+
   doc           -- Texinfo documentation for Octave
 
   emacs         -- Emacs lisp stuff
 
   examples      -- some example files
 
-  glob          -- filename globbing functions
-
-  info          -- a modified version of the GNU Info reader
-
-  kpathsea      -- Karl Berry's path searching library
-
   libcruft      -- various numerical libraries (mostly Fortran)
+    amos           * bessel functions
     blas           * basic linear algebra subroutines
+    blas-xtra      * wrappers for blas functions used in Octave
+    daspk          * large scale differential algebraic equation solver
+    dasrt          * differential algebraic equation solver with root finding
     dassl          * differential-algebraic system solver
     fftpack        * subroutines for fast fourier transforms
     lapack         * linear algebra package
-    linpack        * linear algebra package
+    lapack-xtra    * wrappers for lapack functions used in Octave
     minpack        * nonlinear equation solver
     misc           * miscellaneous utilities
     odepack        * odinary differential equation solver
     ordered-qz     * code for ordering eigenvalues for QZ factorization
     quadpack       * subroutines for numerical integration
     ranlib         * random number generators
+    slatec-err     * slatec error handling library
     slatec-fn      * various special function subroutines
     villad         * subroutines for orthogonal collocation weights
 
   liboctave     -- the C++ interfaces to the numerical libraries and
-                   various OS facilities.
-
-  make          -- configuration and makefile stuff for kpathsea
-
-  readline      -- GNU readline library (from bash), slightly modified
+                   various OS facilities
 
   scripts       -- functions written in the Octave language
     audio          * play and record sound files (system dependent)
     control        * control theory
+    deprecated     * older deprecated functions
     elfun          * elementary mathematical functions
+    finance        * financial functions
     general        * utility functions
     image          * image processing
     io             * input/output functions
     linear-algebra * linear algebra stuff
     miscellaneous  * stuff that doesn't fit anywhere else
+    optimization   * optimizers
+    path           * functions for path handling
+    pkg            * the package manager
     plot           * plotting
     polynomial     * polynomial manipulation
+    quaternion     * quaternions
     set            * set manipulation
     signal         * signal processing
+    sparse         * sparse matrix support
     specfun        * special mathematical functions
     special-matrix * functions for generating special types of matrices
     startup        * initialization functions
     statistics     * statistical stuff
     strings        * character string manipulation
+    testfun        * unit testing
     time           * time and date functions
 
   src           -- the interpreter itself