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
With the introduction of try_add_constraint and add_constraint_and_split CDTs can finally be created without the risk of panic when built iteratively.
try_add_constraint
add_constraint_and_split
panic
However, the much more efficient bulk loading doesn't support this at the moment.
Spade should implement two new bulk load methods:
try_bulk_load
bulk_load_and_split
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With the introduction of
try_add_constraint
andadd_constraint_and_split
CDTs can finally be created without the risk ofpanic
when built iteratively.However, the much more efficient bulk loading doesn't support this at the moment.
Spade should implement two new bulk load methods:
try_bulk_load
(name is up for discussion) which skips all conflicting edges. the conflicting edges should be returned.bulk_load_and_split
(name is up for discussion) which inserts new vertices whenever a conflict arises.The text was updated successfully, but these errors were encountered: