~ubuntu-branches/ubuntu/oneiric/commons-math/oneiric

« back to all changes in this revision

Viewing changes to src/site/xdoc/userguide/utilities.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: 726459 $ $Date: 2008-12-14 09:56:50 -0500 (Sun, 14 Dec 2008) $ -->
22
22
<document url="utilities.html">
23
23
 
24
24
<properties>
72
72
    </p>
73
73
</subsection>
74
74
 
75
 
<subsection name="6.3 Continued Fractions" href="continued_fractions">
 
75
<subsection name="6.3 int/double hash map" href="int_double_hash_map">
 
76
    <p>
 
77
    The <a href="../apidocs/org/apache/commons/math/util/OpenIntToDoubleHashMap.html">
 
78
    org.apache.commons.math.util.OpenIntToDoubleHashMap</a> class provides a specialized
 
79
    hash map implementation for int/double. This implementation has a much smaller memory
 
80
    overhead than standard <code>java.util.HashMap</code> class. It uses open addressing
 
81
    and primitive arrays, which greatly reduces the number of intermediate objects and
 
82
    improve data locality.
 
83
    </p>
 
84
</subsection>
 
85
 
 
86
<subsection name="6.4 Continued Fractions" href="continued_fractions">
76
87
  <p>
77
88
    The <a href="../apidocs/org/apache/commons/math/util/ContinuedFraction.html">
78
89
    org.apache.commons.math.util.ContinuedFraction</a> class provides a generic
140
151
  </p>
141
152
</subsection>
142
153
 
143
 
<subsection name="6.4 binomial coefficients, factorials and other common math functions" href="math_utils">
 
154
<subsection name="6.5 binomial coefficients, factorials and other common math functions" href="math_utils">
144
155
    <p>
145
156
    A collection of reusable math functions is provided in the
146
157
    <a href="../apidocs/org/apache/commons/math/util/MathUtils.html">MathUtils</a>