From 3d49105c91b5d7f3b7b9400f25b59118abfb5cd1 Mon Sep 17 00:00:00 2001 From: albert-github Date: Thu, 7 Sep 2023 14:57:16 +0200 Subject: [PATCH] Incorrect closing HTML comment Newer versions of doxygen are more restrictive (and following the rules) in respect to the end comment of a HTML type of comment, i.e. ``, so parts of the paragraphs were missing (Triangulation/index.html and Triangulation/group___pkg_triangulations_ref.html) See also https://www.w3.org/TR/2006/REC-xml11-20060816/#sec-comments --- Triangulation/doc/Triangulation/PackageDescription.txt | 2 +- Triangulation/doc/Triangulation/Triangulation.txt | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Triangulation/doc/Triangulation/PackageDescription.txt b/Triangulation/doc/Triangulation/PackageDescription.txt index 0b5d4c7b5ed..2ef98bf9d84 100644 --- a/Triangulation/doc/Triangulation/PackageDescription.txt +++ b/Triangulation/doc/Triangulation/PackageDescription.txt @@ -67,7 +67,7 @@ of the underlying Euclidean space \f$ \mathbb{R}^d\f$. The neighbors of a full cell are also indexed in such a way that the neighbor indexed by \f$ i\f$ is opposite to the vertex with the same index. ----> +--> \cgalClassifedRefPages diff --git a/Triangulation/doc/Triangulation/Triangulation.txt b/Triangulation/doc/Triangulation/Triangulation.txt index 452891fa415..d45c8cd1ba8 100644 --- a/Triangulation/doc/Triangulation/Triangulation.txt +++ b/Triangulation/doc/Triangulation/Triangulation.txt @@ -41,7 +41,7 @@ that is pure, connected and without boundaries nor singularities. The dimension of the triangulation is the dimension of its maximal simplices. - + In the sequel, we will call these maximal simplices full cells. A face of a simplex is a subset of this simplex. A proper face of a simplex is a strict subset of this simplex. @@ -136,12 +136,12 @@ Possible values of \f$d\f$ (the current dimension of the triangulation) i triangulation data structure.
\f$d=-1\f$
This corresponds to an abstract simplicial complex reduced to a single vertex. - +
\f$d=0\f$
This corresponds to an abstract simplicial complex including two vertices, each corresponding to a full cell; the two full cells being neighbors of each other. This is the unique triangulation of the \f$ 0\f$-sphere. - +
\f$ 0< d \le D\f$
This corresponds to a triangulation of the sphere \f$ \mathbb{S}^d\f$. @@ -260,7 +260,7 @@ Therefore, the reader will make the best use of this example by reading it slowly, together with the reference manual documentation of the methods that are called (see here: `TriangulationDataStructure`) and by trying to understand the various -`assert(...)` statements.---> +`assert(...)` statements. --> \cgalExample{triangulation_data_structure_static.cpp}