~ubuntu-branches/ubuntu/maverick/commons-math/maverick

« back to all changes in this revision

Viewing changes to src/site/xdoc/userguide/overview.xml

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2009-08-22 01:13:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090822011325-hi4peq1ua5weguwn
Tags: 2.0-1
* New upstream release.
* Set Maintainer field to Debian Java Team
* Add myself as Uploaders
* Switch to Quilt patch system:
  - Refresh all patchs
  - Remove B-D on dpatch, Add B-D on quilt
  - Include patchsys-quilt.mk in debian/rules
* Bump Standards-Version to 3.8.3:
  - Add a README.source to describe patch system
* Maven POMs:
  - Add a Build-Depends-Indep dependency on maven-repo-helper
  - Use mh_installpom and mh_installjar to install the POM and the jar to the
    Maven repository
* Use default-jdk/jre:
  - Depends on java5-runtime-headless
  - Build-Depends on default-jdk
  - Use /usr/lib/jvm/default-java as JAVA_HOME
* Move api documentation to /usr/share/doc/libcommons-math-java/api
* Build-Depends on junit4 instead of junit

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
  -->
19
19
  
20
20
<?xml-stylesheet type="text/xsl" href="./xdoc.xsl"?>
21
 
<!-- $Revision: 619641 $ $Date: 2008-02-07 14:17:35 -0700 (Thu, 07 Feb 2008) $ -->
 
21
<!-- $Revision: 799924 $ $Date: 2009-08-01 16:57:47 -0400 (Sat, 01 Aug 2009) $ -->
22
22
<document>
23
23
  <properties>
24
24
    <title>User Guide - Overview</title>
71
71
 
72
72
<subsection name="0.3 How commons-math is organized" href="organization">
73
73
    <p>
74
 
    Commons Math is divided into fourteen subpackages, based on functionality provided.
 
74
    Commons Math is divided into fifteen subpackages, based on functionality provided.
75
75
    <ol>
76
76
      <li><a href="stat.html">org.apache.commons.math.stat</a> - statistics, statistical tests</li>
77
 
      <li><a href="analysis.html">org.apache.commons.math.analysis</a> - rootfinding and interpolation</li>
 
77
      <li><a href="analysis.html">org.apache.commons.math.analysis</a> - rootfinding, integration, interpolation, polynomials</li>
78
78
      <li><a href="random.html">org.apache.commons.math.random</a> - random numbers, strings and data generation</li>
79
79
      <li><a href="special.html">org.apache.commons.math.special</a> - special functions (Gamma, Beta) </li>
80
80
      <li><a href="linear.html">org.apache.commons.math.linear</a> - matrices, solving linear systems </li>
85
85
      <li><a href="transform.html">org.apache.commons.math.transform</a> - transform methods (Fast Fourier)</li>
86
86
      <li><a href="geometry.html">org.apache.commons.math.geometry</a> - 3D geometry (vectors and rotations)</li>
87
87
      <li><a href="estimation.html">org.apache.commons.math.estimation</a> - parametric estimation problems</li>
88
 
      <li><a href="optimization.html">org.apache.commons.math.optimization</a> - multi-dimensional functions minimization</li>
 
88
      <li><a href="optimization.html">org.apache.commons.math.optimization</a> - functions minimization</li>
89
89
      <li><a href="ode.html">org.apache.commons.math.ode</a> - Ordinary Differential Equations integration</li>
 
90
      <li><a href="genetics.html">org.apache.commons.math.genetics</a> - Genetic Algorithms</li>
90
91
    </ol>
91
92
    Package javadocs are <a href="../apidocs/index.html">here</a>
92
93
    </p>
115
116
 
116
117
<subsection name="0.5 Dependencies" href="dependencies">
117
118
    <p>
118
 
    Commons Math requires JDK 1.3+ and has no runtime dependencies.  Commons
119
 
    Discovery is used to enable pluggable implementations in the 
120
 
    <code>distributions, analysis</code> and <code>stat</code> packages; but
121
 
    default implementations are used if the commons-discovery and 
122
 
    commons-logging (a dependency of commons-discovery) jars are not present in
123
 
    the classpath.  To compile the sources, the following versions of these
124
 
    components are required:
125
 
    <ul>
126
 
    <li>commons-discovery 0.2 </li>
127
 
    <li>commons-logging 1.0.3 </li>
128
 
    </ul>
129
 
    </p>
 
119
    Commons Math requires JDK 1.5+ and has no runtime dependencies.
 
120
    </p>
 
121
</subsection>
 
122
 
 
123
<subsection name="0.6 License" href="license">
 
124
    <p>
 
125
    Commons Math is distributed under the terms of the Apache License, Version 2.0:
 
126
    <a href="http://www.apache.org/licenses/LICENSE-2.0"/>.
 
127
    </p>
 
128
 
 
129
    <p>
 
130
    This product includes software developed by the University of Chicago, as Operator
 
131
    of Argonne National Laboratory. This corresponds to software translated from the lmder,
 
132
    lmpar and qrsolv Fortran routines from the Minpack package and distributed under the
 
133
    following disclaimer: <a href="http://www.netlib.org/minpack/disclaimer"/>.
 
134
    </p>
 
135
 
 
136
    <p>
 
137
    This product includes software translated from the odex Fortran routine developed by
 
138
    E. Hairer and G. Wanner and distributed under the following license:
 
139
    <a href="http://www.unige.ch/~hairer/prog/licence.txt"/>.
 
140
    </p>
 
141
 
 
142
    <p>
 
143
    This product includes software translated from some LAPACK Fortran routines and
 
144
    distributed under the following license: <a href="http://www.netlib.org/lapack/LICENSE"/>.
 
145
    </p>
 
146
 
130
147
</subsection>
131
148
 
132
149
</section>