Simplified json file format for graphs #281
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This fixes #243, #193 and means #123 can be closed as now all core features for multigraphs should just work.
The original json format was inherited from Quantomatic, which is no longer in development or used, so using this format has no added use. In this pull request I build a method to convert
Graph
s todict
s and back in a simple way. The format is as follows:The VertData is as follows:
Because the
version
is now remembered in the json, I interpret a lack of aversion
in the dict as meaning it was saved in the old format. The legacy code is still there and hence can still be loaded.