Skip to content

Getting Started

Yin Cheang Ng edited this page Dec 19, 2024 · 1 revision

Prerequisites

Before you can build and run the FASTSolver, you need to have the following software installed on your system:

  • GCC or any compatible C/C++ compiler
  • CMake
  • Make

Installation

Follow these steps to install and build the project:

  1. Clone the repository:

    git clone https://github.com/Yin169/FASTSolver.git
    cd FASTSolver
  2. Create a build directory and navigate to it:

    mkdir build
    cd build
  3. Run CMake to configure the project:

    cmake ..
  4. Build the project using Make:

    make

Running the Solver

Once the project is built, you can run the solver using the following command:

./build/solver_executable [options]
Clone this wiki locally