-
Notifications
You must be signed in to change notification settings - Fork 189
Builder foundation work #182
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
Open
rsned
wants to merge
24
commits into
golang:master
Choose a base branch
from
rsned:builder-foundations
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
bcd6c35
Update builder_snapper files.
rsned 3ab23c5
Define the builder options type and its two helper methods.
rsned 1d63448
add header text
rsned 09f7532
Add builders layer interface.
rsned 51ac9e3
Add the base builder type with its extensive comment block.
rsned a95103b
Add builder graph options and related enums.
rsned 0b2af37
Add initial builder graph type and related enums.
rsned af0ce50
Add more types to graph options.
rsned 6084658
Add another batch of builder internal variables and update init.
rsned 0b5e252
change polylinetype to package private like the other builder enums.
rsned 6435633
Add remaining builder datastructure elements and finish init().
rsned 45220f6
update comments and move edge_type to graph_options next to the other…
rsned 38bd88b
minor enum shuffling
rsned 03f216d
Add S2Builder Graph's EdgeProcessor class to Go with unit tests.
rsned 4269fec
fix some staticcheck lint errors.
rsned d5f81d3
Update edgeProcessor and add a few more test cases to cover more bran…
rsned 2ce78ad
simplify test merge input ids setup.
rsned e2d1225
Merge branch 'master' into builder-foundations
rsned c295223
Rename edge->graphEdge throughout, fix error exit case.
rsned 463a9e0
Merge branch 'builder-foundations' of ssh://github.com/rsned/geo into…
rsned 7b462a4
Add all of the test cases for graphEdgeProcessor's Run from C++
rsned a2bb0fe
Roll options back into the file of the same name.
rsned d817c66
Move graphEdgeProcessor and tests into builder_graph.go and tests.
rsned b68663f
Add comments to remaining member variables in Builder and Graph.
rsned File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add more types to graph options.
- Loading branch information
commit af0ce5088af0551a4b3f1b37c51d141ffd442e10
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In C++ this is S2Builder::Graph and in Java it's S2BuilderGraph. Does this function as a general-purpose graph, or should this be s2.BuilderGraph?