2003-11-14 16:50:39 -05:00
<?xml version="1.0"?>
2004-02-28 12:47:37 -05:00
<!--
Copyright 2003-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
2003-11-15 13:38:16 -05:00
<?xml-stylesheet type="text/xsl" href="xdoc.xsl"?>
2004-06-23 12:26:18 -04:00
<!-- $Revision: 1.23 $ $Date: 2004/06/23 16:26:17 $ -->
2003-11-14 16:50:39 -05:00
<document >
<properties >
<title > Tasks: Done And To Do</title>
</properties>
<body >
<section name= "Aim" >
2004-04-05 01:22:00 -04:00
<p > This page aims to be a handy reference not only of the work done but also of work pending for the next planned release.
Users who want new features should submit patches to this page in the unclassified section of this document.
Developers who want to lend a hand can grab tasks from this page. Everyone can see the progress which is being made.</p>
2003-11-14 16:50:39 -05:00
</section>
<section name= "TODO list" >
<p > The following is a list of items still <code > TODO</code> for Math. Contributions are welcome!</p>
<subsection name= "Documentation and Code Conformance Tasks" >
2004-04-05 01:22:00 -04:00
<p > Many of these will always be a required. Please focus on applying format standards and provide as many
test cases as possible for your code.</p>
2003-11-14 16:50:39 -05:00
<dl >
<dt > Develop user's guide following the package structure.</dt>
2004-06-23 12:26:18 -04:00
<dd > Incomplete Sections: 6.2 Double Array Utilities, 6.4 Binomial Coefficients</dd>
2003-11-14 16:50:39 -05:00
<dt > Performance and accuracy testing.</dt>
2004-04-05 01:22:00 -04:00
<dd > If anyone is interested in helping out here, what we could really use is a wider selection of test cases for the core
numerical functions and validation against either other packages (e.g. R for the statistical stuff), verified datasets,
or experiments comparing implementions using floats to doubles.</dd>
2003-11-14 16:50:39 -05:00
<dt > Test Coverage.</dt>
2004-04-05 01:22:00 -04:00
<dd > Clover tests show gaps in test path coverage. Get all tests to 100% coverage. Also improve test data and
boundary conditions coverage.</dd>
2003-11-14 16:50:39 -05:00
<dt > Code review.</dt>
<dd >
2004-01-15 00:18:51 -05:00
<p > Code review is a continuous process that all Contributors and Developers should practice while working on the code base.</p>
2003-11-14 16:50:39 -05:00
<ul >
<li > Javadoc generation is still throwing warnings. Bring the Javadoc into compliance (i.e. reach zero warnings).</li>
<li > Verify that the code matches the documentation and identify obvious inefficiencies or numerical problems. All feedback/suggestions for improvement/patches are welcome.</li>
2004-06-23 12:26:18 -04:00
<li > Checkstyle with modified properties still shows many errors. Try to clean these up.</li>
2003-11-14 16:50:39 -05:00
</ul>
</dd>
2004-04-05 01:22:00 -04:00
<dt > Javadoc</dt>
<dd > Bring all javadoc up to requirements in the <a href= "developers.html" > Developer's Guide</a> </dd>
<dd > Run linkcheck and fix all broken links in Javadoc</dd>
2003-11-14 16:50:39 -05:00
</dl>
</subsection>
<subsection name= "Algorithm Development Tasks" >
2004-04-05 01:22:00 -04:00
<p > These current tasks are planned and need completion for the inital release</p>
2003-11-14 16:50:39 -05:00
<dl >
2004-04-05 01:22:00 -04:00
<dt > Root Finding</dt>
2003-11-14 16:50:39 -05:00
<dd >
<ul >
2004-04-05 01:22:00 -04:00
<li > Rework unit tests for root finding</li>
2004-06-23 12:26:18 -04:00
<li > Checkstyle with modified properties still shows many errors. Try to clean these up.</li>
2004-04-05 01:22:00 -04:00
<li > Finalize API (maybe move to stateless implementation)</li>
2003-11-14 16:50:39 -05:00
</ul>
</dd>
2004-04-05 01:22:00 -04:00
<dt > Complex Number Library</dt>
2003-11-14 16:50:39 -05:00
<dd >
An initial <a href= "http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24241" > submission</a>
of a complex number library has been donated by Brent Worden. It has been added
and is open to be reviewed/tested by others for feedback.
The implementation is based on the following source:
2004-04-05 01:22:00 -04:00
<a href= "http://myweb.lmu.edu/dmsmith/ZMLIB.pdf" > http://myweb.lmu.edu/dmsmith/ZMLIB.pdf</a> .
2003-11-14 16:50:39 -05:00
<ul >
<li > <a href= "http://nagoya.apache.org/eyebrowse/ReadMsg?listId=15&msgNo=28132" >
Thread Subject: [math] Complex dilemmas
</a> </li>
2003-11-15 13:38:16 -05:00
<li > <a href= "http://nagoya.apache.org/eyebrowse/ReadMsg?listName=commons-dev@jakarta.apache.org&msgNo=36293" >
2003-11-14 16:50:39 -05:00
Thread Subject: [math] Complex implementation
</a> </li>
</ul>
</dd>
2004-04-05 01:22:00 -04:00
<dt > RealMatrix</dt>
2004-01-14 02:36:35 -05:00
<dd >
<ul >
2004-04-05 01:22:00 -04:00
<li > Implement rank() method or drop from interface.</li>
</ul>
</dd>
<dt > BeanList Statistics</dt>
<dd >
<ul >
<li > Refactor BeanList statistics, find appropriate package placement</li>
2004-01-14 02:36:35 -05:00
</ul>
</dd>
2003-11-14 16:50:39 -05:00
</dl>
</subsection>
</section>
2004-01-15 00:18:51 -05:00
<section name= "Future Goals" >
2003-11-14 16:50:39 -05:00
<subsection name= "Delayed Tasks slated for the next release of the Math library" >
2004-01-15 00:18:51 -05:00
<dl >
2004-04-05 01:22:00 -04:00
<dt > Statistics</dt>
<dd >
<ul >
<li > More inference methods</li>
<li > Multiple regression</li>
</ul>
</dd>
<dt > Linear Algebra</dt>
2004-01-15 00:18:51 -05:00
<dd >
<ul >
2004-04-05 01:22:00 -04:00
<li > More matrix decompositions (Cholesky, QR, SVD) and framework to support.</li>
<li > Sparse matrices</li>
2004-01-15 00:18:51 -05:00
</ul>
</dd>
</dl>
2003-11-14 16:50:39 -05:00
</subsection>
</section>
</body>
</document>