mirror of https://github.com/CGAL/cgal
cleanup
This commit is contained in:
parent
c18542317b
commit
7a096f8d8f
|
|
@ -27,7 +27,6 @@ create_single_source_cgal_program("nn3cgal.cpp")
|
|||
create_single_source_cgal_program("nn3nanoflan.cpp")
|
||||
create_single_source_cgal_program("sizeof.cpp")
|
||||
# create_single_source_cgal_program("deque.cpp") # does not compile, lots of errors
|
||||
create_single_source_cgal_program("bench_splitters.cpp")
|
||||
foreach(
|
||||
target
|
||||
# Compare_ANN_STANN_CGAL # see above
|
||||
|
|
@ -44,6 +43,6 @@ foreach(
|
|||
nn3nanoflan
|
||||
sizeof
|
||||
# deque # see above
|
||||
bench_splitters)
|
||||
)
|
||||
target_link_libraries(${target} PUBLIC CGAL::Eigen3_support)
|
||||
endforeach()
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@
|
|||
#include <CGAL/basic.h>
|
||||
#include <CGAL/assertions.h>
|
||||
#include <vector>
|
||||
#include <fstream>
|
||||
|
||||
#include <CGAL/algorithm.h>
|
||||
#include <CGAL/Kd_tree_node.h>
|
||||
|
|
@ -387,6 +388,7 @@ public:
|
|||
s << tree_root->name() << " ;";
|
||||
tree_root->print(s);
|
||||
s << std::endl << "}" << std::endl << std::endl;
|
||||
return s;
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
|
|||
Loading…
Reference in New Issue