svn commit: r908083 - /commons/proper/compress/trunk/doap_compress.rdf

2010-02-09 Thread bodewig
Author: bodewig
Date: Tue Feb  9 15:48:10 2010
New Revision: 908083

URL: http://svn.apache.org/viewvc?rev=908083view=rev
Log:
compress does tar as well

Modified:
commons/proper/compress/trunk/doap_compress.rdf

Modified: commons/proper/compress/trunk/doap_compress.rdf
URL: 
http://svn.apache.org/viewvc/commons/proper/compress/trunk/doap_compress.rdf?rev=908083r1=908082r2=908083view=diff
==
--- commons/proper/compress/trunk/doap_compress.rdf (original)
+++ commons/proper/compress/trunk/doap_compress.rdf Tue Feb  9 15:48:10 2010
@@ -26,7 +26,7 @@
 download-page 
rdf:resource=http://commons.apache.org/downloads/download_compress.cgi/
 asfext:pmc rdf:resource=http://commons.apache.org//
 shortdesc xml:lang=enCommons Compress/shortdesc
-description xml:lang=enCommons Compress: working with zip, ar, jar, 
bz2, cpio and gz files./description
+description xml:lang=enCommons Compress: working with zip, ar, jar, 
bz2, cpio, tar and gz files./description
 repository
   SVNRepository
 browse 
rdf:resource=http://svn.apache.org/repos/asf/commons/proper/compress/trunk/




svn commit: r908190 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math/analysis/polynomials/PolynomialFunctionLagrangeForm.java site/xdoc/changes.xml

2010-02-09 Thread luc
Author: luc
Date: Tue Feb  9 20:07:36 2010
New Revision: 908190

URL: http://svn.apache.org/viewvc?rev=908190view=rev
Log:
Added a warning in the getCoefficients method documentation for
PolynomialFunctionLagrangeForm. Computation may be ill-conditioned
so this method should be used with care.
JIRA: MATH-341

Modified:

commons/proper/math/trunk/src/main/java/org/apache/commons/math/analysis/polynomials/PolynomialFunctionLagrangeForm.java
commons/proper/math/trunk/src/site/xdoc/changes.xml

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/analysis/polynomials/PolynomialFunctionLagrangeForm.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/analysis/polynomials/PolynomialFunctionLagrangeForm.java?rev=908190r1=908189r2=908190view=diff
==
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/analysis/polynomials/PolynomialFunctionLagrangeForm.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/analysis/polynomials/PolynomialFunctionLagrangeForm.java
 Tue Feb  9 20:07:36 2010
@@ -133,6 +133,9 @@
  * Returns a copy of the coefficients array.
  * p
  * Changes made to the returned copy will not affect the polynomial./p
+ * p
+ * Note that coefficients computation can be ill-conditioned. Use with 
caution
+ * and only when it is necessary./p
  *
  * @return a fresh copy of the coefficients array
  */

Modified: commons/proper/math/trunk/src/site/xdoc/changes.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/changes.xml?rev=908190r1=908189r2=908190view=diff
==
--- commons/proper/math/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/changes.xml Tue Feb  9 20:07:36 2010
@@ -39,6 +39,11 @@
   /properties
   body
 release version=2.1 date=TBD description=TBD
+  action dev=luc type=add issue=MATH-341 
+Added a warning in the getCoefficients method documentation for
+PolynomialFunctionLagrangeForm. Computation may be ill-conditioned
+so this method should be used with care.
+  /action
   action dev=luc type=add issue=MATH-340 
 Fixed an error in BigFraction multiplication for large numerators that 
don't
 fit in a primitive int.