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() {
|
||||
// Visit these directory to see the list of available files on Commetud.
|
||||
// When running with VSC, paths are relative to the BE_Graphes directory.
|
||||
final String mapName = "./Maps/insa.mapgr";
|
||||
final String pathName = "./Paths/path_fr31insa_rangueil_r2.path";
|
||||
final String mapName = "../Maps/insa.mapgr";
|
||||
|
||||
final String pathName = "../Paths/path_fr31insa_rangueil_r2.path";
|
||||
System.out.println("Working Directory = " + System.getProperty("user.dir"));
|
||||
// Create a graph reader.
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue