This commit is contained in:
Dmitry Anisimov 2021-10-11 13:54:43 +02:00
parent c18542317b
commit 7a096f8d8f
2 changed files with 3 additions and 2 deletions

View File

@ -27,7 +27,6 @@ create_single_source_cgal_program("nn3cgal.cpp")
create_single_source_cgal_program("nn3nanoflan.cpp") create_single_source_cgal_program("nn3nanoflan.cpp")
create_single_source_cgal_program("sizeof.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("deque.cpp") # does not compile, lots of errors
create_single_source_cgal_program("bench_splitters.cpp")
foreach( foreach(
target target
# Compare_ANN_STANN_CGAL # see above # Compare_ANN_STANN_CGAL # see above
@ -44,6 +43,6 @@ foreach(
nn3nanoflan nn3nanoflan
sizeof sizeof
# deque # see above # deque # see above
bench_splitters) )
target_link_libraries(${target} PUBLIC CGAL::Eigen3_support) target_link_libraries(${target} PUBLIC CGAL::Eigen3_support)
endforeach() endforeach()

View File

@ -21,6 +21,7 @@
#include <CGAL/basic.h> #include <CGAL/basic.h>
#include <CGAL/assertions.h> #include <CGAL/assertions.h>
#include <vector> #include <vector>
#include <fstream>
#include <CGAL/algorithm.h> #include <CGAL/algorithm.h>
#include <CGAL/Kd_tree_node.h> #include <CGAL/Kd_tree_node.h>
@ -387,6 +388,7 @@ public:
s << tree_root->name() << " ;"; s << tree_root->name() << " ;";
tree_root->print(s); tree_root->print(s);
s << std::endl << "}" << std::endl << std::endl; s << std::endl << "}" << std::endl << std::endl;
return s;
} }
private: private: