diff --git a/.gitattributes b/.gitattributes index 2e8ee29743e..3160accb6a4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3917,8 +3917,8 @@ Triangulation/include/CGAL/Pure_complex_simplex.h -text Triangulation/include/CGAL/Pure_complex_vertex.h -text Triangulation/include/CGAL/Regular_complex.h -text Triangulation/include/CGAL/internal/Combination_enumerator.h -text -Triangulation/include/CGAL/internal/Pure_complex/Dummy_PCDS.h -text -Triangulation/include/CGAL/internal/Pure_complex/Pure_complex_ds_iterators.h -text +Triangulation/include/CGAL/internal/Pure_complex/Dummy_TDS.h -text +Triangulation/include/CGAL/internal/Pure_complex/Triangulation_ds_iterators.h -text Triangulation/include/CGAL/internal/Pure_complex/utilities.h -text Triangulation/include/CGAL/internal/Static_or_dynamic_array.h -text Triangulation/package_info/Pure_complex/description.txt -text diff --git a/Triangulation/include/CGAL/Pure_complex_data_structure.h b/Triangulation/include/CGAL/Pure_complex_data_structure.h index cbcda33fe55..5aa23bc0eb1 100644 --- a/Triangulation/include/CGAL/Pure_complex_data_structure.h +++ b/Triangulation/include/CGAL/Pure_complex_data_structure.h @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include #include diff --git a/Triangulation/include/CGAL/Pure_complex_ds_simplex.h b/Triangulation/include/CGAL/Pure_complex_ds_simplex.h index b07254f1ea4..1a332680750 100644 --- a/Triangulation/include/CGAL/Pure_complex_ds_simplex.h +++ b/Triangulation/include/CGAL/Pure_complex_ds_simplex.h @@ -20,7 +20,7 @@ #include #include -#include +#include #include #include #include diff --git a/Triangulation/include/CGAL/Pure_complex_ds_vertex.h b/Triangulation/include/CGAL/Pure_complex_ds_vertex.h index 68574915028..c3cd9abcece 100644 --- a/Triangulation/include/CGAL/Pure_complex_ds_vertex.h +++ b/Triangulation/include/CGAL/Pure_complex_ds_vertex.h @@ -21,7 +21,7 @@ //#include //#include #include -#include +#include namespace CGAL { diff --git a/Triangulation/include/CGAL/internal/Combination_enumerator.h b/Triangulation/include/CGAL/internal/Combination_enumerator.h index 5c6d25a47d8..16c83d18cf1 100644 --- a/Triangulation/include/CGAL/internal/Combination_enumerator.h +++ b/Triangulation/include/CGAL/internal/Combination_enumerator.h @@ -132,6 +132,6 @@ public: } // end of namespace internal -} //namespace CGAL +} // end of namespace CGAL -#endif // CGAL_INTERNAL_COMBINATION_ENUMERATOR_H \ No newline at end of file +#endif // CGAL_INTERNAL_COMBINATION_ENUMERATOR_H diff --git a/Triangulation/include/CGAL/internal/Pure_complex/Dummy_PCDS.h b/Triangulation/include/CGAL/internal/Pure_complex/Dummy_TDS.h similarity index 100% rename from Triangulation/include/CGAL/internal/Pure_complex/Dummy_PCDS.h rename to Triangulation/include/CGAL/internal/Pure_complex/Dummy_TDS.h diff --git a/Triangulation/include/CGAL/internal/Pure_complex/Pure_complex_ds_iterators.h b/Triangulation/include/CGAL/internal/Pure_complex/Triangulation_ds_iterators.h similarity index 100% rename from Triangulation/include/CGAL/internal/Pure_complex/Pure_complex_ds_iterators.h rename to Triangulation/include/CGAL/internal/Pure_complex/Triangulation_ds_iterators.h diff --git a/Triangulation/include/CGAL/internal/Static_or_dynamic_array.h b/Triangulation/include/CGAL/internal/Static_or_dynamic_array.h index 198bc6848c5..3b7cc1fcc80 100644 --- a/Triangulation/include/CGAL/internal/Static_or_dynamic_array.h +++ b/Triangulation/include/CGAL/internal/Static_or_dynamic_array.h @@ -109,6 +109,6 @@ struct S_or_D_array< Containee, Dynamic_dimension_tag, true > } // end of namespace internal -} //namespace CGAL +} // end of namespace CGAL #endif // CGAL_INTERNAL_STATIC_OR_DYNAMIC_ARRAY_H diff --git a/Triangulation/test/Triangulation/tds.cpp b/Triangulation/test/Triangulation/tds.cpp index 5ac22906b15..36053f83b4b 100644 --- a/Triangulation/test/Triangulation/tds.cpp +++ b/Triangulation/test/Triangulation/tds.cpp @@ -6,22 +6,22 @@ using namespace std; -template +template void test(const int d, const string & type) { // we must write 'typename' below, because we are in a template-function, - // so the parser has no way to know that PCDS contains sub-types, before + // so the parser has no way to know that TDS contains sub-types, before // instanciating the function. - typedef typename PCDS::Vertex Vertex; - typedef typename PCDS::Vertex_handle Vertex_handle; - typedef typename PCDS::Vertex_iterator Vertex_iterator; - typedef typename PCDS::Simplex Simplex; - typedef typename PCDS::Simplex_handle Simplex_handle; - typedef typename PCDS::Face Face; - typedef typename PCDS::Facet Facet; - typedef typename PCDS::Facet_iterator Facet_iterator; + typedef typename TDS::Vertex Vertex; + typedef typename TDS::Vertex_handle Vertex_handle; + typedef typename TDS::Vertex_iterator Vertex_iterator; + typedef typename TDS::Simplex Simplex; + typedef typename TDS::Simplex_handle Simplex_handle; + typedef typename TDS::Face Face; + typedef typename TDS::Facet Facet; + typedef typename TDS::Facet_iterator Facet_iterator; - PCDS pc(d); + TDS pc(d); cerr << "\nChecking Pure_cds of (" << type << ") dimension " << pc.ambient_dimension(); assert(pc.empty()); @@ -104,7 +104,7 @@ void test(const int d, const string & type) std::ifstream fi((string("output-pcds-")+type).c_str()); if( d % 2 ) CGAL::set_binary_mode(fi); - PCDS input_pcds(d); + TDS input_pcds(d); fi >> input_pcds; fi.close(); @@ -116,20 +116,20 @@ void test(const int d, const string & type) } #define test_static(DIM) { \ - typedef CGAL::Pure_complex_data_structure > PCDS; \ - test(DIM, string("static")+string(#DIM)); } + typedef CGAL::Pure_complex_data_structure > TDS; \ + test(DIM, string("static")+string(#DIM)); } #define test_dyn(DIM) { \ - typedef CGAL::Pure_complex_data_structure PCDS; \ - test(DIM, string("dynamic")+string(#DIM)) ;} + typedef CGAL::Pure_complex_data_structure TDS; \ + test(DIM, string("dynamic")+string(#DIM)) ;} #define test_mirror_static(DIM) { \ - typedef CGAL::Pure_complex_ds_simplex My_ds_simplex; \ + typedef CGAL::Pure_complex_ds_simplex My_ds_simplex; \ typedef CGAL::Pure_complex_data_structure, \ CGAL::Pure_complex_ds_vertex<>, \ My_ds_simplex> My_pcds; \ test(DIM, string("mirror&static")+string(#DIM)); } #define test_mirror_dyn(DIM) { \ - typedef CGAL::Pure_complex_ds_simplex My_ds_simplex; \ + typedef CGAL::Pure_complex_ds_simplex My_ds_simplex; \ typedef CGAL::Pure_complex_data_structure, \ My_ds_simplex> My_pcds; \