python-jgrapht
python-jgrapht copied to clipboard
The Python-JGraphT library
Here have some info ` Traceback (most recent call last): File "_ctypes/callbacks.c", line 234, in 'calling callback function' File "F:\python36\lib\site-packages\jgrapht\algorithms\drawing.py", line 67, in actual_vertex_comparator_cb return vertex_comparator_cb(v1, v2) TypeError: 'NoneType' object...
Since positions are extracted using vertex indices and not values, masked subgraphs are not drawn correctly. This is fixed in pull request #12.
To convert the output of the layout algorithm to the dictionary mapping vertices to their positions one must use the vertex number, not the vertex index. This is particularly evident...
I'm trying to import an edgelist file with no success. My input file is a single edge; the file is: ``` 0, 1 ``` My code is as follows (\...
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 4.1.7. Release notes Sourced from actions/download-artifact's releases. v4.1.7 What's Changed Update @actions/artifact dependency by @bethanyj28 in actions/download-artifact#325 Full Changelog: https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7 v4.1.6 What's Changed updating @actions/artifact...
Are the python bindings for the Lowest Common Ancestor (LCA) algorithms in JGraphT missing? If not, how can I access the `getLCASet` method in the [NaiveLCAFinder](https://github.com/jgrapht/jgrapht/blob/master/jgrapht-core/src/main/java/org/jgrapht/alg/lca/NaiveLCAFinder.java) class, for example?