Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 725 Bytes

File metadata and controls

34 lines (23 loc) · 725 Bytes

Graph_lib

A library for directed and undirected networks and related graph algorithms. WIP.

Compilation and Running

If you want to use micromamba as the package manager, create and activate the environment.

micromamba create -f environment.yml
micromamba activate seldonenv

We use meson to compile and build Seldon.

meson setup build
meson compile -C build

To install seldon to your conda environment, run the following:

meson setup build --prefix $CONDA_PREFIX
meson install -C build

Running Tests

To run the tests, go into the build directory and run the following:

meson test