Ivan Carvalho
Ivan Carvalho
Can you check if [`extend_from_edge_list`](https://www.rustworkx.org/apiref/rustworkx.PyGraph.extend_from_edge_list.html#rustworkx.PyGraph.extend_from_edge_list) and [`extend_from_weighted_edge_list`](https://www.rustworkx.org/apiref/rustworkx.PyGraph.extend_from_weighted_edge_list.html#rustworkx.PyGraph.extend_from_weighted_edge_list) cover your use case? If you pass a list with only one entry, you can create nodes and add an edge between them...
> > Off topic but somehow related: Why is it not possible to define the index of a node when creating it? Is it possible to create a graph with...
> Thank you for explaining @IvanIsCoding! > > This is where the questions come together with my original issue. I want to create a graph by adding edges from source...
I will review #1430 later, but my opinion for fuzzing is: * we shoud fuzz random generators to verify assumptions about random graphs * we should not fuzz deterministic graph...
Yes, we marked the PR as closing the issue. Reopening is fine, we should track the unwanted panics.
I need to check if this still applies to main with the latest commit after #1291. I believe the answer will be no. `None` is a valid return type for...
I have quite a few typing PRs open. Once Matthew has time to review them, I will work on the `@overload` and removing the `# type: ignore`. I think the...
I have revisited this with `pyright ` and overall the results do not seem very useful to me. For graphviz specifically: ``` /home/ivan/.venv/lib64/python3.13/site-packages/rustworkx/visualization/graphviz.pyi:17:23 - error: Type of parameter "graph" is...
I don't think we have anyone working on adding those specific generators now. But if you submitted them I'd me happy to review. For the special case of grid graphs,...
@barakatzir I just ran `pyright --verifytypes rustworkx` with the latest rustworkx distributed in PyPI and this is what I got: https://pastebin.com/TZjZDjYq There are lots of errors ranging from errors propagating...