This program finds the shortest path between two nodes, when given a list of edges between the nodes
- Download miniconda here: https://docs.conda.io/en/latest/miniconda.html DO NOT ADD CONDA TO WINDOWS PATH
- Once complete, open a miniconda terminal by searching for "miniconda" in the windows search bar
- In the miniconda terminal, navigate to the repo and execute
conda env create -f environment.yml
- In the miniconda terminal, execute
conda activate dijkstra
With the conda environment active, execute:
meson setup build
cd build
meson compile
The executable will be placed in build/src/dijkstra.exe