Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.15 KB

File metadata and controls

26 lines (17 loc) · 1.15 KB

Path Finder - Algorithms

The PathFinder application is a C ++ app made on top of wxWidgets and Boost. It has been built and tested on Linux (Ubuntu 18.04) with cmake. A number of algorithms have been implemented in the system to find a path. These can be selected in the UI to get a visual picture of how the algorithm works.


Pre-conditions / Downloads

The following artifacts / tools are used by and included in the extension as-is:


Build

  • Clone the files from the repo to a folder on your OS.
  • Navigate in the folder where all files are cloned and execute: './autogen.sh' here.
  • run the command: "mkdir build".
  • Then navigate to the build directory using: 'cd build /'
  • Run the command: "../configure --with-cxx = 17".
  • Build the application using: "make -j4"
  • The program can be started using the command: './src/robotworld'