-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adjacent vertices (edges) #71
Comments
Hi, We currently don't have a nice interface for that. Neither for incidence information: #21 |
Can you try #72 and let me know whether it works for you ? |
Hi, Ok for trying, but could you explain me how I install this version in Julia? (in the meantime, I managed to get the edges with the Python library pycddlib) |
Enter the Pkg mode of the REPL (by pressing (v1.7) pkg> add CDDLib#bl/adjacency |
Yes, that seems to work fine. Thank you! |
@stla @blegat dd_Matrix2Adjacency is to compute the adjacency of input without computing the second representation, see adjacency.c program in src. This is useful when the conversion to the second representation takes a long time. If the conversion is easy and in particular it has been computed by dd_DDMatrix2Poly then the adjacency and the incidence of both input and output are in the dd_PolyhedraPtr data structure. See, scdd.c to see how to write out all four information. |
Hello,
I see in the cddlib documentation that there is a function to get the list of adjacent vertices. I spent the afternoon to try to get it using Julia, I didn't manage. Can one get this list with CDDLib.jl?
The text was updated successfully, but these errors were encountered: