mirror of
https://github.com/apache/commons-math.git
synced 2025-02-07 18:49:40 +00:00
The attached patch includes the following improvements to Univariate and UnivariateImpl: * Improved efficiency of min, max and product maintenance when windowSize is limited by incorporating suggestion posted to commons-dev by Brend Worden (added author credit). Thanks, Brent! * Added javadoc specifying NaN contracts for all statistics, definitions for geometric and arithmetic means. * Made some slight modifications to UnivariateImpl to make it consistent with NaN contracts * All interface documentation moved to Univariate. The interface specification includes the NaN semantics and a first attempt at clealy defining exactly what "rolling" means and how this effects what statistics are defined when. * Added test cases to verify that min, max, product are correctly maintained when "rolling" and to verify that NaN contracts are satisfied. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@140857 13f79535-47bb-0310-9956-ffa450edef68
102 lines
3.6 KiB
XML
102 lines
3.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project>
|
|
<extend>../../jakarta-commons/project.xml</extend>
|
|
<name>Math</name>
|
|
<id>commons-math</id>
|
|
<currentVersion>0.1-dev</currentVersion>
|
|
<inceptionYear>2003</inceptionYear>
|
|
<logo/>
|
|
<shortDescription>
|
|
A library of lightweight, self-contained mathematics and statistics components.
|
|
</shortDescription>
|
|
<description>
|
|
The Math project is a library of lightweight, self-contained mathematics and statistics components addressing the most common practical problems not immediately available in the Java programming language or commons-lang.
|
|
</description>
|
|
<siteDirectory>/www/jakarta.apache.org/commons/sandbox/math/</siteDirectory>
|
|
<versions>
|
|
<version>
|
|
<id>0.1-dev</id>
|
|
<name>0.1-dev</name>
|
|
</version>
|
|
</versions>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Robert Burrell Donkin</name>
|
|
<id>rdonkin</id>
|
|
<email>rdonkin@apache.org</email>
|
|
</developer>
|
|
<developer>
|
|
<name>Tim OBrien</name>
|
|
<id>tobrien</id>
|
|
<email>tobrien@apache.org</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<contributors>
|
|
<contributor>
|
|
<name>Phil Steitz</name>
|
|
<email/>
|
|
<roles>proposal author, initial contributor</roles>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Mark R. Diggory</name>
|
|
<email>mdiggory@latte.harvard.edu</email>
|
|
<roles></roles>
|
|
</contributor>
|
|
</contributors>
|
|
|
|
<dependencies>
|
|
<!-- <dependency>
|
|
<id>junit</id>
|
|
<version>3.8</version>
|
|
</dependency> -->
|
|
</dependencies>
|
|
|
|
<issueTrackingUrl>http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Commons&component=Sandbox&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&order=%27Importance%27</issueTrackingUrl>
|
|
|
|
<repository>
|
|
<connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons-sandbox/${pom.artifactId.substring(8)}</connection>
|
|
<url>http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/${pom.artifactId.substring(8)}/</url>
|
|
</repository>
|
|
|
|
<build>
|
|
<unitTest>
|
|
<includes>
|
|
<include>**/*Test.java</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/*AbstractTest.java</exclude>
|
|
</excludes>
|
|
<resources>
|
|
<resource>
|
|
<directory>${pom.build.unitTestSourceDirectory}</directory>
|
|
<includes>
|
|
<include>**/*.xml</include>
|
|
<include>**/*.txt</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</unitTest>
|
|
</build>
|
|
|
|
<reports>
|
|
<report>maven-changelog-plugin</report>
|
|
<report>maven-changes-plugin</report>
|
|
<report>maven-checkstyle-plugin</report>
|
|
<!-- <report>maven-clover-plugin</report> -->
|
|
<!-- <report>maven-developer-activity-plugin</report>
|
|
<report>maven-file-activity-plugin</report> -->
|
|
<report>maven-javadoc-plugin</report>
|
|
<!-- <report>maven-jdepend-plugin</report> -->
|
|
<report>maven-junit-report-plugin</report>
|
|
<report>maven-jxr-plugin</report>
|
|
<!-- <report>maven-license-plugin</report> -->
|
|
<report>maven-linkcheck-plugin</report>
|
|
<!-- <report>maven-statcvs-plugin</report> -->
|
|
<report>maven-tasklist-plugin</report>
|
|
</reports>
|
|
|
|
</project>
|