Updated to reflect 1.1 release.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@358039 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c911b5aaf8
commit
3d70c862db
15
project.xml
15
project.xml
|
@ -90,6 +90,21 @@
|
||||||
<name>1.1</name>
|
<name>1.1</name>
|
||||||
<tag>MATH_1_1_RC3</tag>
|
<tag>MATH_1_1_RC3</tag>
|
||||||
</version>
|
</version>
|
||||||
|
<version>
|
||||||
|
<id>1.1-RC4</id>
|
||||||
|
<name>1.1</name>
|
||||||
|
<tag>MATH_1_1_RC4</tag>
|
||||||
|
</version>
|
||||||
|
<version>
|
||||||
|
<id>1.1-RC5</id>
|
||||||
|
<name>1.1</name>
|
||||||
|
<tag>MATH_1_1_RC5</tag>
|
||||||
|
</version>
|
||||||
|
<version>
|
||||||
|
<id>1.1</id>
|
||||||
|
<name>1.1</name>
|
||||||
|
<tag>MATH_1_1</tag>
|
||||||
|
</version>
|
||||||
</versions>
|
</versions>
|
||||||
<developers>
|
<developers>
|
||||||
<developer>
|
<developer>
|
||||||
|
|
|
@ -39,17 +39,33 @@ Commons Math Release Notes</title>
|
||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
<release version="1.2" date="TBD">
|
<release version="1.2" date="TBD">
|
||||||
<action dev="psteitz" type="add" due-to="Xiaogang Zhang">
|
|
||||||
Added Trapeziod, Simpson, Romberg numerical integration.
|
|
||||||
</action>
|
|
||||||
</release>
|
</release>
|
||||||
<release version="1.1" date="TBD"
|
<release version="1.1" date="2005-12-17"
|
||||||
description="This is a maintenance release containing bug fixes and enhancements.
|
description="This is a maintenance release containing bug fixes and enhancements.
|
||||||
All API changes are binary compatible with version 1.0. The enhancements
|
All API changes are binary compatible with version 1.0. The enhancements
|
||||||
include some new probability distributions, a Fraction class, new matrix
|
include some new probability distributions, a Fraction class, new matrix
|
||||||
and numerical utilities, and a PRNG pluggability framework making it
|
and numerical utilities, and a PRNG pluggability framework making it
|
||||||
possible to replace the JDK-supplied random number generator in
|
possible to replace the JDK-supplied random number generator in
|
||||||
commons-math (and elsewhere) with alternative PRNG implementations.">
|
commons-math (and elsewhere) with alternative PRNG implementations.">
|
||||||
|
<action dev="psteitz" type="fix" issue="36491">
|
||||||
|
Made NewtonSolver derivative field transient and implemented readObject to
|
||||||
|
initialize.
|
||||||
|
</action>
|
||||||
|
<action dev="psteitz" type="fix" issue="36491">
|
||||||
|
Made sampleStats field private and changed getUpperBounds to return a fresh
|
||||||
|
copy in EmpiricalDistributionImpl.
|
||||||
|
</action>
|
||||||
|
<action dev="psteitz" type="update">
|
||||||
|
Added polar2Complex method to ComplexUtils to create Complex numbers
|
||||||
|
from polar representations.
|
||||||
|
</action>
|
||||||
|
<action dev="psteitz" type="fix" issue="37162" due-to="Elliotte Harold">
|
||||||
|
Made all serialVersionUIDs private.
|
||||||
|
</action>
|
||||||
|
<action dev="psteitz" type="fix" issue="37086">
|
||||||
|
Improved documentation and test cases related to handling of infinite
|
||||||
|
and NaN values in Complex, ComplexUtils classes.
|
||||||
|
</action>
|
||||||
<action dev="psteitz" type="fix" issue="37019" due-to="Mauro Talevi">
|
<action dev="psteitz" type="fix" issue="37019" due-to="Mauro Talevi">
|
||||||
Fixed incorrect NaN handling in o.a.m.s.d.rank.Min, Max
|
Fixed incorrect NaN handling in o.a.m.s.d.rank.Min, Max
|
||||||
</action>
|
</action>
|
||||||
|
@ -78,7 +94,7 @@ Commons Math Release Notes</title>
|
||||||
<action dev="psteitz" type="fix" issue="36450" due-to="Keith McDonald">
|
<action dev="psteitz" type="fix" issue="36450" due-to="Keith McDonald">
|
||||||
Fixed bin index overflow problem in EmpiricalDistributionImpl.
|
Fixed bin index overflow problem in EmpiricalDistributionImpl.
|
||||||
</action>
|
</action>
|
||||||
<action dev="brentworden" type="fix" issue="36232" due-to="Xiaogang Zhang">
|
<action dev="brentworden" type="fix" issue="36232" due-to="Xiaogang Zhang">
|
||||||
Added protection against numerical overflow and underflow in the
|
Added protection against numerical overflow and underflow in the
|
||||||
isBracketing method.
|
isBracketing method.
|
||||||
</action>
|
</action>
|
||||||
|
@ -136,7 +152,6 @@ Commons Math Release Notes</title>
|
||||||
1.0 classes should be backward compatible (including serialization).
|
1.0 classes should be backward compatible (including serialization).
|
||||||
</action>
|
</action>
|
||||||
<action dev="psteitz" type="update" due-to="C. Scott Ananian">
|
<action dev="psteitz" type="update" due-to="C. Scott Ananian">
|
||||||
Ported numerics improvements in commons lang Fraction implementation.
|
|
||||||
Added utility methods for overflow-checked integer arithmetic and
|
Added utility methods for overflow-checked integer arithmetic and
|
||||||
improved gcd method in MathUtils.
|
improved gcd method in MathUtils.
|
||||||
</action>
|
</action>
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
<item name="Developers Guide" href="/developers.html"/>
|
<item name="Developers Guide" href="/developers.html"/>
|
||||||
<item name="Javadoc (1.0 release)" href="http://jakarta.apache.org/commons/math/api-1.0/index.html"/>
|
<item name="Javadoc (1.0 release)" href="http://jakarta.apache.org/commons/math/api-1.0/index.html"/>
|
||||||
<item name="Javadoc (1.1 release)" href="http://jakarta.apache.org/commons/math/api-1.1/index.html"/>
|
<item name="Javadoc (1.1 release)" href="http://jakarta.apache.org/commons/math/api-1.1/index.html"/>
|
||||||
<item name="Javadoc (1.2-dev)" href="apidocs/index.html"/>
|
<item name="Javadoc (1.2-SNAPSHOT)" href="apidocs/index.html"/>
|
||||||
<item name="Source Repository (current)"
|
<item name="Source Repository (current)"
|
||||||
href="http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/math/trunk"/>
|
href="http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/math/trunk"/>
|
||||||
<item name="Wiki (Wish List)"
|
<item name="Wiki (Wish List)"
|
||||||
|
|
Loading…
Reference in New Issue