Skip to content

zeroset/jpscore

 
 

Repository files navigation

JPScore

Build Status GitHub license DOI

The core module for performing simulations. See the online documentation

Building from source

Linux / macOS

The build is tested on Ubuntu 18.04 with gcc-9.1 / clang-8 and on macOS Mojave 10.14.5 with dependencies from Homebrew and Apple LLVM 10.

Requirements

On Linux you will need a C++17 capable compiler and a standard library that supports <filesystem>. On macOS you will need the system compiler with C++17 and filesystem from boost.

Required:

  • boost (>= 1.65)
  • libomp (if you want to use OpenMP with Apple LLVm or Clang on Linux)
  • spdlog (libspdlog-dev on Ubuntu, spdlog on brew)
  • fmtlib (libfmt-dev on Ubuntu, fmt on brew)
  • cmake (>= 3.1)

Recommended:

  • ninja-build

How to build

Once you have installed all dependencies and cloned the repository continue with a ninja based build:

mkdir build
cd build
cmake -GNinja -DCMAKE_BUILD_TYPE=Debug <path-to-cmakelists>
ninja

Alternatively you can generate a make based build with:

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug <path-to-cmakelists>
make -j$(nproc)

Note: If you do not want to use OpenMP you have to pass -DUSE_OPENMP=OFF to cmake on generation.

cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_OPENMP=OFF <path-to-cmakelists>

The following configuration flags are available:

USE_OPENMP defaults to ON

Build jpscore with OpenMP support, generation will fail if OpenMP cannot be found.

JPSFIRE defaults to OFF

Build jpscore with jpsfire features

BUILD_DOC defaults to OFF

Build internal Doxygen based documentation

BUILD_CPPUNIT_TEST defaults to OFF

Build unit tests and add them to ctest

BUILD_TESTING defaults to OFF

Build full system tests and add them to ctest

BUILD_WITH_ASAN defaults to OFF (Does not support Windows)

Build an additional target jpscore_asan with address and undefined behavior sanitizer enabled. Note there is an approx. 2x slowdown when using jpscore_asan over jpscore

Quick start

See installation and configuration

Showcase and tutorials

To highlight some features of JuPedSim we have uploaded some videos on our YouTube channel.

Support

We are heavily working on this project which means that:

  • It’s not done. We will be releasing new enhancements, bug fixes etc.
  • We love your support. If you find any errors or have suggestions, please write an issue in our issue-tracker. We will try hard to fix it.
  • Be patient. We are scientists and PhD/master students. Therefore, we primarily care about our research and theses.

Enjoy!

Packages

No packages published

Languages

  • C++ 84.2%
  • Python 12.7%
  • CMake 2.2%
  • TeX 0.4%
  • Jupyter Notebook 0.3%
  • Shell 0.1%
  • Other 0.1%