You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe digraphs doesn't currently do subgraph isomorphism.
Probably the best open source subgraph isomorphism solver around is https://github.com/ciaranm/glasgow-subgraph-solver . I was wanting to use it from GAP, but I wondered if digraphs would be a good place for it to live.
One minor problem -- it does require C++20, is that more than digraphs currently requires / wants to require?
The text was updated successfully, but these errors were encountered:
I'd be happy to incorporate the solver you mention, the README says that it requires C++17. I'd also be happy to switch to C++17. I'd be reluctant to switch to C++20 after the experiences we had with using C++11 in 2014/15 (somewhat limited compiler support, false claims of having all the features of C++11 in some versions of some compilers, and/or people using old compilers). If C++17 will do it, then happy to update to that.
I will look at the other solver. It might be worth adding "subgraph isomorphism" to the index in the help, I was looking in GAP packages for subgraph isomorphism, and didn't spot DigraphEmbedding
We have now been using DigraphEmbedding and it's good and fast, but there seems to be a limit of 512 vertices -- is this easy to get past?
I believe digraphs doesn't currently do subgraph isomorphism.
Probably the best open source subgraph isomorphism solver around is https://github.com/ciaranm/glasgow-subgraph-solver . I was wanting to use it from GAP, but I wondered if digraphs would be a good place for it to live.
One minor problem -- it does require C++20, is that more than digraphs currently requires / wants to require?
The text was updated successfully, but these errors were encountered: