Added estimate for the release date in "changes.xml".
Copied "findbugs" exclude filters for package "optim". Updated link to "apidocs" (for release 3.1) in "site.xml". git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1422581 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
32e7890edb
commit
d39c4595b9
|
@ -43,6 +43,11 @@
|
|||
<Method name="localMin" params="boolean,double,double,double,double,double" returns="double" />
|
||||
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optim.univariate.BrentOptimizer" />
|
||||
<Method name="localMin" params="boolean,double,double,double,double,double" returns="double" />
|
||||
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.analysis.solvers.BrentSolver" />
|
||||
<Method name="brent" params="double,double,double,double" returns="double" />
|
||||
|
@ -133,11 +138,21 @@
|
|||
<Method name="getPointRef" params="" returns="double[]" />
|
||||
<Bug pattern="EI_EXPOSE_REP" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optim.PointValuePair"/>
|
||||
<Method name="getPointRef" params="" returns="double[]" />
|
||||
<Bug pattern="EI_EXPOSE_REP" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optimization.PointValuePair"/>
|
||||
<Method name="<init>" params="double[],double,boolean" returns="void" />
|
||||
<Bug pattern="EI_EXPOSE_REP2" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optim.PointValuePair"/>
|
||||
<Method name="<init>" params="double[],double,boolean" returns="void" />
|
||||
<Bug pattern="EI_EXPOSE_REP2" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optimization.PointVectorValuePair"/>
|
||||
<Or>
|
||||
|
@ -146,11 +161,24 @@
|
|||
</Or>
|
||||
<Bug pattern="EI_EXPOSE_REP" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optim.PointVectorValuePair"/>
|
||||
<Or>
|
||||
<Method name="getPointRef" params="" returns="double[]" />
|
||||
<Method name="getValueRef" params="" returns="double[]" />
|
||||
</Or>
|
||||
<Bug pattern="EI_EXPOSE_REP" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optimization.PointVectorValuePair"/>
|
||||
<Method name="<init>" params="double[],double[][],boolean" returns="void" />
|
||||
<Bug pattern="EI_EXPOSE_REP2" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optim.PointVectorValuePair"/>
|
||||
<Method name="<init>" params="double[],double[][],boolean" returns="void" />
|
||||
<Bug pattern="EI_EXPOSE_REP2" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.ode.sampling.DummyStepInterpolator"/>
|
||||
<Method name="<init>" params="double[],double[],boolean" returns="void" />
|
||||
|
|
|
@ -50,7 +50,7 @@ If the output is not quite correct, check for invisible trailing spaces!
|
|||
<title>Commons Math Release Notes</title>
|
||||
</properties>
|
||||
<body>
|
||||
<release version="3.1" date="TBD" description="
|
||||
<release version="3.1" date="2012-12-21" description="
|
||||
This is a minor release: It combines bug fixes and new features.
|
||||
Changes to existing features were made in a backwards-compatible
|
||||
way such as to allow drop-in replacement of the v3.0 JAR file.
|
||||
|
|
|
@ -26,7 +26,9 @@
|
|||
<menu name="Math">
|
||||
<item name="Overview" href="/index.html"/>
|
||||
<item name="Downloads" href="http://commons.apache.org/math/download_math.cgi"/>
|
||||
<item name="Javadoc (3.0 release)" href="apidocs/index.html"/>
|
||||
<item name="Javadoc (3.1 release)" href="apidocs/index.html"/>
|
||||
<item name="Javadoc (3.0 release)"
|
||||
href="http://commons.apache.org/math/api-3.0/index.html"/>
|
||||
<item name="Javadoc (2.2 release)"
|
||||
href="http://commons.apache.org/math/api-2.2/index.html"/>
|
||||
<item name="Issue Tracking" href="/issue-tracking.html"/>
|
||||
|
|
Loading…
Reference in New Issue