Apache Commons Math
Go to file
Gilles Sadowski 8ce3448354 Update guidelines for contributing.
Let "GitHub" users see the project's policy.
2020-04-11 16:16:16 +02:00
doc RAT check. 2017-08-16 16:04:34 +02:00
siteMods Replace SVN with GitBox URL. 2019-07-07 09:54:51 -04:00
src Avoid performance degradation of indexed access when using a linked list. 2020-04-11 13:42:03 +02:00
.gitignore Ignore Eclipse artifacts. 2016-01-18 14:32:27 -08:00
.travis.yml Drop Oracle JDK 8. 2019-08-14 13:28:42 -07:00
CONTRIBUTING.md Update guidelines for contributing. 2020-04-11 16:16:16 +02:00
LICENSE.txt Simplifying again repartition between LICENSE and NOTICE files. 2014-12-22 21:35:43 +01:00
NOTICE.txt Update "NOTICE.txt". 2020-01-05 11:58:53 +01:00
PROPOSAL.html Fixing the mailing list addresses 2007-07-29 20:14:22 +00:00
README.md Typo: 'JavaDoc' -> 'Javadoc'. 2018-05-15 12:58:59 -06:00
RELEASE-NOTES.txt Preparing release 3.4.1. 2015-01-08 17:47:33 +01:00
build.xml Typo: 'JavaDoc' -> 'Javadoc'. 2018-05-15 12:58:59 -06:00
checkstyle.xml reintroduced modifiers needed for serialization. 2015-11-02 16:20:54 +01:00
clirr-ignored.xml Reset clirr exceptions after package change. 2015-04-11 15:51:07 +02:00
findbugs-exclude-filter.xml MATH-1284: Replace uses of "Vector3D" in comments and supporting files with "Cartesian3D". 2017-04-30 08:26:36 -04:00
license-header.txt Fixed copyright header (committing in parts as the full commit timed out) 2006-11-29 07:06:35 +00:00
math-RC.sh Removed subversion keywords $Id$, $Revision$ and $Date$. 2014-09-22 14:02:52 +02:00
math-pre-RC.sh Removed subversion keywords $Id$, $Revision$ and $Date$. 2014-09-22 14:02:52 +02:00
pmd-ruleset.xml Set up a customized configuration for PMD. 2015-11-03 22:09:06 +01:00
pom.xml Update list of contributors. 2020-04-11 13:52:12 +02:00
test-jar.xml Fixed ant build. 2016-01-02 10:30:49 -07:00

README.md

Apache Commons Math

Build Status Coverage Status Maven Central License

The Apache Commons 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.

Documentation

More information can be found on the homepage. The Javadoc can be browsed. Questions related to the usage of Apache Commons Math should be posted to the user mailing list.

Where can I get the latest release?

You can download source and binaries from our download page.

Alternatively you can pull it from the central Maven repositories:

<dependency>
  <groupId>org.apache.commons</groupId>
  <artifactId>commons-math3</artifactId>
  <version>3.5</version>
</dependency>

Contributing

We accept PRs via github. The developer mailing list is the main channel of communication for contributors. There are some guidelines which will make applying PRs easier for us:

  • No tabs! Please use spaces for indentation.
  • Respect the code style.
  • Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
  • Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running mvn clean test.

If you plan to contribute on a regular basis, please consider filing a contributor license agreement. You can learn more about contributing via GitHub in our contribution guidelines.

License

Code is under the Apache Licence v2.

Donations

You like Apache Commons Math? Then donate back to the ASF to support the development.

Additional Resources