BE Graphes repository of : LACAU Clément ALNET Paul Implements path findings algorithms through a GPS app.
Find a file
2024-04-05 10:51:13 +02:00
.vscode
be-graphes-algos feat(binheap): remove passes tests 2024-04-05 10:51:13 +02:00
be-graphes-gui fix(launch): use relative file paths 2024-04-05 08:28:58 +02:00
be-graphes-model chore(path): remove isValid deprecation flag 2024-03-25 10:44:04 +01:00
.gitignore
class_diagram.puml Diagram class 2024-03-25 10:15:26 +01:00
pom.xml
README.md

Graph & Algorithm project — INSA Toulouse

Building

The instructions below are an attempt at using java from the command line. These efforts were in vain (~3 man-hours + help from 2 teachers). The "solution" was to use VScode. The instructions are left below for posterity.

Prerequisites

This project makes use of Maven. On a debian-like system, install Maven :

sudo apt-get install maven

Compiling

In the project root directory :

mvn compile

Packaging

In the project root directory :

mvn package

Or skip tests :

mvn package -Dmaven.test.skip=true

The output jar files will be in the <project>/target/ directory of each project.

Testing

In the root directory, start all tests :

mvn test