Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 769 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 769 Bytes

dijkstra-s-shortest-path

This program finds the shortest path between two nodes, when given a list of edges between the nodes

Conda environment

Downloading Conda

Creating environment from env

  • In the miniconda terminal, navigate to the repo and execute conda env create -f environment.yml

Activating the environment

  • In the miniconda terminal, execute conda activate dijkstra

Building

With the conda environment active, execute:

  • meson setup build
  • cd build
  • meson compile The executable will be placed in build/src/dijkstra.exe