Etienne dg

Results 97 comments of Etienne dg

The error is [here](https://github.com/JuliaGraphs/LightGraphs.jl/blob/2a644c2b15b444e7f32f73021ec276aa9fc8ba30/src/biconnectivity/biconnect.jl#L53) : the edge is added only if `state.low[v] > state.depth[w]`, whereas it should be always added to the stack. I can make a PR, but I...

My response is mainly intended to contributors of LightGraphs, and does not actually gives you an easy workaround for the problem. It seems that at the moment, the committers are...

The internal structure of the `SimpleGraph` maintains the vertices to a compact range starting from 1. This is part of the API contract of a SimpleGraph, and some algorithms may...

I can do that when I will have the time. I don't think proposal is the more suitable term, a better term would be something like probability_of_acceptance, or just acceptance_function...

> Can you show me a description of your problem? I have two graphs G1 and G2 (with equal number of vertices) I want to find a mapping between vertices...

Sorry about this. I'm not sure how it fix #150. I think changing for triangles is good, but maybe it would be better in another issue. ![Capture d’écran du 2022-09-21...

I think #150 is mostly an issue when saving to a non-square picture, because there is an inconsistency between absolute coordinates and relative coordinates which give strange distortions. IMO, the...

Another issue I see is when there is two arcs in opposite directions, it looks weird. Maybe we can fix this by starting the edge at the midway point between...

I don't know what is the policy on this package for testing, maybe we need some kind of tests, but I don't see many tests here. Otherwise, I think we...

Indeed, my circles are clipped in svg, this is due to conversion to png. Ok, I didn't see that there were absolute and relative coordinates, I should have read the...