The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

22 lines
723 B

4 weeks ago
  1. Dependencies {#dependencies}
  2. ==========
  3. To build and use CArL, you need the following other software:
  4. - `git` to checkout the git repository.
  5. - `cmake` to generate the make files.
  6. - `g++` or `clang` to compile.
  7. Optional dependencies
  8. - `ccmake` to set cmake flags.
  9. - `doxygen` to build the documentation.
  10. - `gtest` to build the test cases.
  11. Additionally, CArL requires a few external libraries:
  12. - `gmp` for calculations with large numbers.
  13. - `Eigen3` for numerical computations.
  14. - `boost` for several additional libraries.
  15. To simplify the installation process, all these libraries can be built by CArL automatically if it is not available on your system. You can do this manually by running
  16. @code
  17. make resources
  18. @endcode