Several utilities and common algorithms used in my remaining projects and libraries. It includes Basic Linear Algebra (bla) library, which provides multiple Vector and Matrix operations. A simple JSON parser, several structures and generic utilities.
Currently, it requires Java 8.
The whole project was done in Maven, as such to install this library just run:
mvn install
In order to generate the documentation for the project just run:
mvn javadoc:javadoc
To use this library just add the following code to your Maven project:
<dependency>
<groupId>pt.it.av.atnog</groupId>
<artifactId>utils</artifactId>
<version>1.2</version>
</dependency>
This project is licensed under the MIT License - see the LICENSE.md file for details