summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java
diff options
context:
space:
mode:
authorBen Culkin <scorpress@gmail.com>2020-04-13 18:43:13 -0400
committerBen Culkin <scorpress@gmail.com>2020-04-13 18:43:13 -0400
commitf51f6da7319787348c38b875652b5c0e9f88c8aa (patch)
tree943888fc724da2d2dedd89abec99dcbfcc089fd0 /src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java
parent9052ed6da37af23ea82588d248f409e60a33c6cb (diff)
Cleanup pass
Pass to do some cleanups
Diffstat (limited to 'src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java')
-rw-r--r--src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java b/src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java
index 35b116b..65c013b 100644
--- a/src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java
+++ b/src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java
@@ -7,18 +7,18 @@ package bjc.funcdata.bst;
*/
public enum TreeLinearizationMethod {
/**
- * Visit the left side of this tree part, the tree part itself, and then
- * the right part.
+ * Visit the left side of this tree part, the tree part itself, and then the
+ * right part.
*/
INORDER,
/**
- * Visit the left side of this tree part, the right side, and then the
- * tree part itself.
+ * Visit the left side of this tree part, the right side, and then the tree part
+ * itself.
*/
POSTORDER,
/**
- * Visit the tree part itself, then the left side of tthis tree part and
- * then the right part.
+ * Visit the tree part itself, then the left side of tthis tree part and then
+ * the right part.
*/
PREORDER
}