-
I attached my code and my platform information
```python
from time import sleep
import networkit as nk
import torch
from torch_geometric.data import Data
from torch_geometric.utils.convert i…
-
Writing an empty graph to file with `writeGraph` causes a segmentation fault.
Here's a minimal example for this bug:
```python
>>> import networkit
>>> g = networkit.graph.Graph()
>>> network…
-
I tried to install Networkit version 7.1 with pip install networkit==7.1 it give me this error:
Collecting networkit==7.1
Using cached networkit-7.1.tar.gz (3.1 MB)
Preparing metadata (setu…
-
In the still pending PR for NetworKit I decided to copy the code to modify it slightly. However, actually not many changes are necessary:
1.) I need to be able to pass a PRNG reference rather than…
-
Create arbitrary channels in a snapshot for testing hypothetical topologies
-
Hi,
I recently started using Networkit. I am working on an example in which I try to sparsify an undirected graph using the following code.
`G = nk.GraphFromCoo((edge_coo[0], edge_coo[1]), dire…
-
The `NETWORKIT_SANITY_CHECKS` flag seems to be only documented in `CMakeLists.txt`. It is not clear to me how this relates to `NDEBUG`. The only place where `NETWORKIT_SANITY_CHECKS` is used uses `ass…
-
Hi there,
It's come to my attention that while benchmarking against my own implementation of the Leiden community algorithm, which was merged into networkit a while ago, someone has found that it's a…
-
If compile NetworKit with OpenMP on MSVC by adding the /openmp -openmp:llvm compiler options, it will cause a **C1001: internal compiler error**.
The error occurs in the following code snippet in `…
-
I converted a large networkx graph to Networkit to compute commute time distances. Much of the other functionality I tried for sanity checks seems to be working. However, I am running into issues with…