lasote / causal-sets-explorer

Causal sets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

causal-sets-explorer

Build Status Build status

Causal set explorer performs graph-theoretic calculations on Causal sets.

Initial Set Up

This project uses the Conan C/C++ package manager. To get started on MacOS using Homebrew, for example, do:

brew install conan
git clone https://github.com/acgetchell/causal-sets-explorer.git
cd causal-sets-explorer
mkdir build && cd build
conan install .. -s compiler=apple-clang -s compiler.version=8.1 -s compiler.libcxx=libc++ --build=missing
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
cmake --build .

Replace the compiler, compiler.version, and compiler.libcxx options with the ones appropriate to your settings.

If you get a message like:

zlib/1.2.8@lasote/stable: WARN: Forced build from source
ERROR: Error while trying to get recipe sources for zlib/1.2.8@lasote/stable. No remote defined

Then you've already exported that recipe, and need to do, e.g.:

conan remove zlib/1.2.8@lasote/stable

Before re-running conan install.

About

Causal sets

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 65.1%Language:Shell 18.1%Language:CMake 16.8%