Wavetrace
Wavetrace
I've also opened https://github.com/boostorg/graph/issues/398 to track this.
> I only have one question: how does someone with almost no activity history in GitHub know so much about Boost.Graph? :) A great question! Well, I read the book...
For the record, this function was added in https://github.com/boostorg/graph/commit/86ef70716434ea1dabe2b6a25bb489e19793ebfe on `Feb 6, 2001` and not modified since then except for style.
> Interesting. Did you also work with him? I'm also a great admirer of his work and managed to visit him once for a chat; unfortunately, Palo Alto is a...
And one more question: I see `meta/libraries.json` specifies `"cxxstd": "14"`. Does this mean we are free to use all the C++14 features? I see most code is C++98, but maybe...
Hi I updated this FR with your suggestions, please have a look. One can now call the algorithm like this: ``` bool b = is_connected(g, is_connected_kind::strong); bool b = is_connected(g,...
> I'm in the midst of relocating to a different country I wish you very smooth relocation, definitely not an easy thing to do ;) > How I imagine it...
As of the other issues I mentioned, please see #403 and #404 (this is the reason some code is commented out in the test).
Hi Jeremy, I think (after some consideration), that I'd need to update this solution to relax the requirement for the graph to be VertexIndexGraph by allowing the client to pass...
As discussed in PR, it might be more reasonable to make the interface more explicit / less confusing rather than to preserve 100% backward compatibility. PR has been updated with...