You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A library for directed and undirected networks and related graph algorithms. WIP.
3
+
A library for directed and undirected networks and related graph algorithms. WIP.
4
+
5
+
# Compilation and Running
6
+
7
+
If you want to use [`micromamba`](https://mamba.readthedocs.io/en/latest/user_guide/micromamba.html) as the package manager, create and activate the environment.
8
+
9
+
```bash
10
+
micromamba create -f environment.yml
11
+
micromamba activate seldonenv
12
+
```
13
+
14
+
We use `meson` to compile and build Seldon.
15
+
16
+
```bash
17
+
meson setup build
18
+
meson compile -C build
19
+
```
20
+
21
+
To install `seldon` to your `conda` environment, run the following:
22
+
23
+
```bash
24
+
meson setup build --prefix $CONDA_PREFIX
25
+
meson install -C build
26
+
```
27
+
28
+
## Running Tests
29
+
30
+
To run the tests, go into the build directory and run the following:
0 commit comments