pierre-guillou
pierre-guillou
Thank you for answering me about this issue. For reference, here is the Python script I used to trigger this overflow (the `Cells.jpg` is from [here](https://ripser.scikit-tda.org/en/latest/_images/Cells.jpg)): ```python import numpy as...
> @julien-tierny The failed CI check seems to be unrelated to my commits, is there a way to restart the workflow? Or maybe I am missing something. A recent macOS...
These warnings are specific to GCC and appear only on Ubuntu 22.04 and newer. The CI prevents warnings that are found with Clang + `libstdc++`. Actually, other warnings are also...
I've been able to reproduce this issue. The infinite loop occurs when exchanging global edge identifiers between neighbors to label edges "belonging to" ghost cells. The `iterCond` (here the lambda...
Hello everyone, I made some quick tests by inlining the `get` methods of the `ImplicitTriangulation`. It is quite easy to do, you just have to copy-paste the methods from the...
@JonasLukasczyk your error is linked to the `const` `std::array` member variables. Removing the `const` keyword in front of these variables should do the trick. (edit: Using `static const` also works)....