Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Deprecated AVLTree and OrderedTuple.
These two classes were dirty hacks used only for the extraction of boundary from 2D Euclidean BSP trees. They were not really efficient and produces some problems as topology was not preserved. A completely new implementation of boundary extraction has been set up as of 3.4, that preserves more topological information and therefore should be more robust. This new implementation does not use these classes anymore. As AVLTree is not really a math concept, this class is not considered to belong to [math] scope. OrderedTuple is more a grey zone, but it is really something inefficient and no need for it is foreseen.
- Loading branch information
Luc Maisonobe
committed
Dec 2, 2014
1 parent
e6aae3a
commit d21d3a94abdbcf5a890fb1b5de28f1060e9e584d
Showing
3 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -20,6 +20,7 @@ | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
@Deprecated | ||
public class AVLTreeTest { | ||
|
||
@Test | ||