Ivan Carvalho

Results 185 comments of Ivan Carvalho

We could suggest a pattern of using a deterministic stream to generate seeds, and then passing those seeds to our functions. Something along those lines: ```python import retworkx as rx...

After #497, you can use the new generator to make some test cases. Table 2 of https://www.sciencedirect.com/science/article/pii/S0166218X08000371 has the crossing numbers of the Petersen graphs, zeros in the table are...

This effort was concluded by #1061, now that we are enforcing that new changes will need to add type annotations.

Apparently there is a Rust-to-Rust FFI crate: https://github.com/rodrimati1992/abi_stable_crates/ I haven’t read the details yet but it could be interesting

The `argmin` crate implements interruption of computations, we could try getting some inspiration from their work: https://argmin-rs.org/blog/version-v0-8-0/

This crate could be interesting to handle this case: https://docs.rs/ctrlc/latest/ctrlc/

Alright, this is ready for review after so long. `mypy.stubtest` checks that the stubs in this PR are identical to the `text_signature` from our Rust code and that the return...

We could have a look into this but it boils down if the fork of Furo we use kept this functionality or disabled it. I am pretty sure we use...

Hi folks, just to give a little bit more of context to Chongyi's PR. From what I understood, many users use `checkov` in Docker containers with Alpine Linux, hence they...

As a temporary workaround, you might want to try [`rustworkx.visualization.graphviz_draw`](https://qiskit.org/documentation/retworkx/dev/apiref/rustworkx.visualization.graphviz_draw.html) which does support multigraphs. But indeed, we ported the visualization code from NetworkX. So we inherited the problems when drawing...