Skip to content
Snippets Groups Projects
Verified Commit f6c611f2 authored by David Procházka's avatar David Procházka
Browse files

ADD: insert type javadoc

parent 45350d07
No related branches found
No related tags found
No related merge requests found
package mhtree; package mhtree;
/**
* Specifies how should new objects be added to the MH-Tree.
*/
public enum InsertType { public enum InsertType {
/**
* When inserted object is not covered by node, all objects under such node are retrieved and a new hull is build,
* replacing the current one.
*/
GREEDY, GREEDY,
/**
* When inserted object is not overed by node, we iterate over hull objects beginning with the nearest hull object.
* We try to replace existing hull object by replacing current hull object by inserted object
* and checking if the replaced hull objects is covered by the new hull.
* This is repeated until such hull object is found or if not,
* the inserted object is simply added as a new hull object.
*/
INCREMENTAL, INCREMENTAL,
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment