Set up a tree container that allows for some certain traversals #79
No reviewers
Labels
No Label
hex-grid
maintenance
music-player
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: savanni/monorepo#79
Loading…
Reference in New Issue
No description provided.
Delete Branch "tree-traversals"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
My motivation for this is to have a way to represent an SGF game tree and convert it from raw SGF to a different representation.
Turns out that it is very difficult to do non-recursively. Ultimately I don't think this is possible without using RefCells, and that adds a lot of complication to the SGF nodes that I did not want to deal with. So the tree will allow me to externalize the SGF tree structure and create common algorithms for operating on that structure.