test(dijkstra): fix file paths
This commit is contained in:
parent
f289793c44
commit
bbd6fac17f
1 changed files with 3 additions and 2 deletions
|
@ -31,8 +31,9 @@ public class DijkstraAlgorithmTest {
|
||||||
public static void init() {
|
public static void init() {
|
||||||
// Visit these directory to see the list of available files on Commetud.
|
// Visit these directory to see the list of available files on Commetud.
|
||||||
// When running with VSC, paths are relative to the BE_Graphes directory.
|
// When running with VSC, paths are relative to the BE_Graphes directory.
|
||||||
final String mapName = "./Maps/insa.mapgr";
|
final String mapName = "../Maps/insa.mapgr";
|
||||||
final String pathName = "./Paths/path_fr31insa_rangueil_r2.path";
|
|
||||||
|
final String pathName = "../Paths/path_fr31insa_rangueil_r2.path";
|
||||||
System.out.println("Working Directory = " + System.getProperty("user.dir"));
|
System.out.println("Working Directory = " + System.getProperty("user.dir"));
|
||||||
// Create a graph reader.
|
// Create a graph reader.
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue