We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This may solve #5 as well as simplify much of the rest of the code related to topologies. Biggest challenge: how to express open edges?
Some graph libraries are listed here.
networkx
Topology
networkx.freeze()
dict
StateTransitionGraph
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This may solve #5 as well as simplify much of the rest of the code related to topologies. Biggest challenge: how to express open edges?
Some graph libraries are listed here.
networkx
networkx
are (afaik) mutable, whileTopology
is not. Butnetworkx.freeze()
may offer a way out.networkx
can also carry edge and node properties in the form of adict
. SoStateTransitionGraph
might also become redundantnetworkx
might allow joining topologies, which would be useful when forming a decay chain.The text was updated successfully, but these errors were encountered: